webIDE/sample-plugins/sample-namespace/plugin-b/package.json

33 lines
654 B
JSON

{
"private": true,
"name": "plugin-b",
"version": "1.43.0",
"main": "extension.js",
"license": "EPL-2.0 OR GPL-2.0-only WITH Classpath-exception-2.0",
"repository": {
"type": "git",
"url": "https://github.com/eclipse-theia/theia.git"
},
"engines": {
"vscode": "^1.50.0"
},
"activationEvents": [
"onCommand:plugin-b.hello"
],
"devDependencies": {
"@types/vscode": "^1.50.0"
},
"scripts": {
"prepare": "yarn -s package",
"package": "vsce package --yarn"
},
"contributes": {
"commands": [
{
"command": "plugin-b.hello",
"title": "Hello from plugin-b"
}
]
}
}