33 lines
652 B
JSON
33 lines
652 B
JSON
{
|
|
"private": true,
|
|
"name": "plugin-b",
|
|
"version": "1.68.0",
|
|
"main": "extension.js",
|
|
"license": "EPL-2.0 OR GPL-2.0-only WITH Classpath-exception-2.0",
|
|
"publisher": "sample-publisher",
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/eclipse-theia/theia.git"
|
|
},
|
|
"engines": {
|
|
"vscode": "^1.51.0"
|
|
},
|
|
"activationEvents": [
|
|
"onCommand:plugin-b.hello"
|
|
],
|
|
"devDependencies": {
|
|
"@types/vscode": "^1.50.0"
|
|
},
|
|
"scripts": {
|
|
"build": "vsce package --npm"
|
|
},
|
|
"contributes": {
|
|
"commands": [
|
|
{
|
|
"command": "plugin-b.hello",
|
|
"title": "Hello from plugin-b"
|
|
}
|
|
]
|
|
}
|
|
}
|