vscode-ext1/package.json

81 lines
1.7 KiB
JSON

{
"name": "ext1",
"displayName": "apb1",
"description": "a test extension",
"version": "0.0.10",
"private": true,
"publisher": "quodatum",
"engines": {
"vscode": "^1.63.0"
},
"icon": "resources/ext1.png",
"homepage": "https://git.quodatum.duckdns.org/apb/ext1",
"repository": {
"type": "git",
"url": "https://git.quodatum.duckdns.org/apb/ext1.git"
},
"bugs": {
"url": "https://git.quodatum.duckdns.org/apb/ext1/issues"
},
"categories": [
"Other"
],
"activationEvents": [
"onCommand:ext1.helloWorld",
"onCommand:ext1.pick",
"onCommand:ext1.debug",
"onCommand:ext1.newDoc",
"onCommand:ext1.panel"
],
"main": "./out/extension.js",
"contributes": {
"commands": [
{
"command": "ext1.helloWorld",
"title": "apb: Hello World"
},
{
"command": "ext1.pick",
"title": "apb: pick option"
},
{
"command": "ext1.debug",
"title": "apb: debug"
},
{
"command": "ext1.newDoc",
"title": "apb: newdocument"
},
{
"command": "ext1.panel",
"title": "apb: show panel"
}
]
},
"scripts": {
"vscode:prepublish": "npm run compile",
"compile": "tsc -p ./",
"watch": "tsc -watch -p ./",
"pretest": "npm run compile && npm run lint",
"lint": "eslint src --ext ts",
"test": "node ./out/test/runTest.js"
},
"devDependencies": {
"@types/vscode": "^1.63.0",
"@types/glob": "^7.2.0",
"@types/mocha": "^9.0.0",
"@types/node": "14.x",
"@typescript-eslint/eslint-plugin": "^5.9.1",
"@typescript-eslint/parser": "^5.9.1",
"eslint": "^8.6.0",
"glob": "^7.2.0",
"mocha": "^9.1.3",
"typescript": "^4.5.4",
"@vscode/test-electron": "^2.0.3"
},
"dependencies": {
"@vscode/webview-ui-toolkit": "^0.9.0",
"react": "^16.9.0"
}
}