mirror of
https://github.com/openharmony/drivers_framework.git
synced 2026-08-27 10:51:15 -04:00
16ca8cf2b2
update: build.py and NodeTools.py add: hcsPlugin Signed-off-by: zhaojunxia <zhaojunxia@kaihongdigi.com>
48 lines
829 B
JSON
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"
|
|
}
|
|
} |