Files
vscode-extension-samples/i18n-sample/package.json
Nick Chen ff96d2a669 Initial version of i18n-sample
To keep things simple, this doesn't use the nls-dev package. I think this demystifies a lot of things when you see what is actually going on behind the scenes.
2017-11-06 14:36:22 +01:00

52 lines
1.0 KiB
JSON

{
"name": "i18n-sample",
"displayName": "i18n-sample",
"description": "Sample that shows how to localize an extension",
"version": "0.1.0",
"publisher": "vazexqi",
"engines": {
"vscode": "^1.13.0"
},
"categories": [
"Other"
],
"activationEvents": [
"onCommand:extension.sayHello",
"onCommand:extension.sayBye"
],
"main": "./out/extension",
"contributes": {
"commands": [
{
"command": "extension.sayHello",
"title": "%extension.sayHello.title%"
},
{
"command": "extension.sayBye",
"title": "%extension.sayBye.title%"
}
]
},
"scripts": {
"watch": "tsc -watch -p ./",
"clean": "gulp clean",
"postinstall": "node ./node_modules/vscode/bin/install"
},
"devDependencies": {
"@types/node": "^6.0.40",
"del": "^3.0.0",
"event-stream": "^3.3.4",
"gulp": "^3.9.1",
"gulp-filter": "^5.0.1",
"run-sequence": "^2.2.0",
"typescript": "2.5.3",
"gulp-typescript": "3.2.2",
"vsce": "^1.32.0",
"vscode": "^1.1.2",
"vscode-nls-dev": "^2.1.3"
},
"dependencies": {
"vscode-nls": "^2.0.2"
}
}