platform/packages/vscode/angel_vscode/package.json

85 lines
2.1 KiB
JSON
Raw Normal View History

2018-11-12 07:48:46 +00:00
{
2018-11-14 07:03:56 +00:00
"name": "angel-dart-vscode",
"displayName": "Angel",
"description": "Snippets and IDE support for the Angel server framework within VSCode.",
"version": "0.2.0",
"repository": {
"type": "git",
"url": "https://github.com/angel-dart/vscode"
},
"icon": "media/logo.png",
"publisher": "thosakwe0541",
"engines": {
"vscode": "^1.28.0"
},
"categories": [
"Snippets"
2018-11-12 08:33:16 +00:00
],
2018-11-14 07:03:56 +00:00
"keywords": [
"angel",
"angel-dart",
"dart",
"jael",
"template",
"templating",
"flutter",
"fuchsia"
2018-11-12 09:38:33 +00:00
],
2018-11-14 07:03:56 +00:00
"activationEvents": [
"onLanguage:jael"
2018-11-12 09:38:33 +00:00
],
2018-11-14 07:03:56 +00:00
"main": "./out/extension",
"contributes": {
"_commands": [
{
"command": "extension.sayHello",
"title": "Hello World"
}
],
"languages": [
{
"id": "jael",
"aliases": [
"Jael"
],
"extensions": [
".jael"
],
"configuration": "./syntaxes/jael-language-configuration.json"
}
],
"grammars": [
{
"language": "jael",
"scopeName": "source.jael",
"path": "./syntaxes/jael.json"
}
],
"snippets": [
{
"language": "dart",
"path": "./snippets/angel.json"
},
{
"language": "jael",
"path": "./snippets/jael.json"
}
]
},
"scripts": {
"vscode:prepublish": "npm run compile",
"compile": "tsc -p ./",
"watch": "tsc -watch -p ./",
"postinstall": "node ./node_modules/vscode/bin/install",
"test": "npm run compile && node ./node_modules/vscode/bin/test"
},
"devDependencies": {
"@types/mocha": "^2.2.42",
"@types/node": "^7.0.43",
"typescript": "^2.6.1",
"vscode": "^1.1.6"
},
"dependencies": {
"vscode-languageclient": "^5.1.1"
}
}