2018-10-28 22:29:18 +01:00
|
|
|
{
|
|
|
|
|
"name": "decorator-sample",
|
|
|
|
|
"description": "Sample for the decorator API",
|
|
|
|
|
"version": "0.0.1",
|
|
|
|
|
"publisher": "vscode-samples",
|
|
|
|
|
"license": "MIT",
|
|
|
|
|
"engines": {
|
|
|
|
|
"vscode": "^1.15.0"
|
|
|
|
|
},
|
|
|
|
|
"repository": {
|
|
|
|
|
"url": "https://github.com/Microsoft/vscode-extension-samples"
|
|
|
|
|
},
|
|
|
|
|
"categories": [
|
|
|
|
|
"Other"
|
|
|
|
|
],
|
|
|
|
|
"activationEvents": [
|
|
|
|
|
"*"
|
|
|
|
|
],
|
|
|
|
|
"main": "./out/extension",
|
|
|
|
|
"contributes": {
|
|
|
|
|
"colors": [
|
|
|
|
|
{
|
|
|
|
|
"id": "myextension.largeNumberBackground",
|
|
|
|
|
"description": "Background decoration color for large numbers",
|
|
|
|
|
"defaults": {
|
|
|
|
|
"dark": "#FF000055",
|
|
|
|
|
"light": "#FF000055",
|
|
|
|
|
"highContrast": "#FF000055"
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
]
|
|
|
|
|
},
|
|
|
|
|
"scripts": {
|
|
|
|
|
"vscode:prepublish": "npm run compile",
|
|
|
|
|
"compile": "tsc -p ./",
|
|
|
|
|
"watch": "tsc -watch -p ./",
|
|
|
|
|
"postinstall": "node ./node_modules/vscode/bin/install"
|
|
|
|
|
},
|
|
|
|
|
"devDependencies": {
|
2018-11-08 10:39:34 -08:00
|
|
|
"@types/node": "^8.9.1",
|
2018-10-28 22:29:18 +01:00
|
|
|
"tslint": "^5.11.0",
|
2018-11-08 10:39:34 -08:00
|
|
|
"typescript": "^3.1.3",
|
2018-11-27 16:56:50 +01:00
|
|
|
"vscode": "^1.1.22"
|
2018-10-28 22:29:18 +01:00
|
|
|
}
|
|
|
|
|
}
|