Files
zhaojunxia 16ca8cf2b2 refactor: refactor files directory
update: build.py and NodeTools.py
add: hcsPlugin
Signed-off-by: zhaojunxia <zhaojunxia@kaihongdigi.com>
2022-05-24 03:14:20 -07:00

48 lines
829 B
JSON

{
"name": "hcseditor",
"displayName": "HcsEditor",
"description": "",
"version": "0.0.1",
"engines": {
"vscode": "^1.64.2"
},
"categories": [
"Other"
],
"activationEvents": [
"*"
],
"main": "./extension.js",
"contributes": {
"commands": [
{
"command": "hcs_editor",
"title": "编辑hcs文件"
}
],
"menus": {
"explorer/context": [
{
"command": "hcs_editor",
"when": "resourceExtname==.hcs"
}
]
}
},
"scripts": {
"lint": "eslint .",
"pretest": "npm run lint",
"test": "node ./test/runTest.js"
},
"devDependencies": {
"@types/vscode": "^1.65.0",
"@types/glob": "^7.2.0",
"@types/mocha": "^9.1.0",
"@types/node": "14.x",
"eslint": "^8.9.0",
"glob": "^7.2.0",
"mocha": "^9.2.1",
"typescript": "^4.5.5",
"@vscode/test-electron": "^2.1.2"
}
}