platform/angel_vscode/package.json

86 lines
1.8 KiB
JSON
Raw Normal View History

2018-11-12 07:48:46 +00:00
{
2018-11-12 08:22:54 +00:00
"name": "angel-dart-vscode",
2018-11-12 18:35:17 +00:00
"displayName": "Angel",
2018-11-12 08:22:54 +00:00
"description": "Snippets and IDE support for the Angel server framework within VSCode.",
"version": "0.0.1",
"repository": {
"type": "git",
"url": "https://github.com/angel-dart/vscode"
},
"icon": "media/logo.png",
2018-11-12 09:54:42 +00:00
"publisher": "thosakwe0541",
2018-11-12 08:22:54 +00:00
"engines": {
"vscode": "^1.28.0"
},
"categories": [
"Snippets"
],
"keywords": [
"angel",
"angel-dart",
"dart",
2018-11-12 18:35:17 +00:00
"jael",
"template",
"templating",
2018-11-12 08:22:54 +00:00
"flutter",
"fuchsia"
],
2018-11-12 18:20:39 +00:00
"activationEvents": [
"onLanguage:jael"
2018-11-12 08:22:54 +00:00
],
2018-11-12 18:20:39 +00:00
"main": "./out/extension",
2018-11-12 08:22:54 +00:00
"contributes": {
2018-11-12 08:33:16 +00:00
"_commands": [
2018-11-12 08:22:54 +00:00
{
"command": "extension.sayHello",
"title": "Hello World"
}
2018-11-12 08:33:16 +00:00
],
2018-11-12 09:38:33 +00:00
"languages": [
{
"id": "jael",
"aliases": [
"Jael"
],
"extensions": [
".jael"
],
"configuration": "./syntaxes/jael-language-configuration.json"
}
],
"grammars": [
{
"language": "jael",
"scopeName": "source.jael",
"path": "./syntaxes/jael.json"
}
],
2018-11-12 08:33:16 +00:00
"snippets": [
{
"language": "dart",
"path": "./snippets/angel.json"
2018-11-12 18:35:17 +00:00
},
{
"language": "jael",
"path": "./snippets/jael.json"
2018-11-12 08:33:16 +00:00
}
2018-11-12 08:22:54 +00:00
]
},
"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": {
2018-11-12 18:20:39 +00:00
"@types/mocha": "^2.2.42",
2018-11-12 08:22:54 +00:00
"@types/node": "^7.0.43",
2018-11-12 18:20:39 +00:00
"typescript": "^2.6.1",
"vscode": "^1.1.6"
},
"dependencies": {
"vscode-languageclient": "^5.1.1"
2018-11-12 08:22:54 +00:00
}
2018-11-12 07:48:46 +00:00
}