platform/angel_vscode/package.json

57 lines
1.2 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",
"displayName": "Angel Dart Support",
"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",
"publisher": "thosakwe",
"engines": {
"vscode": "^1.28.0"
},
"categories": [
"Snippets"
],
"keywords": [
"angel",
"angel-dart",
"dart",
"flutter",
"fuchsia"
],
2018-11-12 08:33:16 +00:00
"_activationEvents": [
2018-11-12 08:22:54 +00:00
"onCommand:extension.sayHello"
],
2018-11-12 08:33:16 +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
],
"snippets": [
{
"language": "dart",
"path": "./snippets/angel.json"
}
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": {
"typescript": "^2.6.1",
"vscode": "^1.1.6",
"@types/node": "^7.0.43",
"@types/mocha": "^2.2.42"
}
2018-11-12 07:48:46 +00:00
}