{ "name": "HDFConfigurationSourceView", "displayName": "HDF Configuration Source View", "description": "Configure the hcs file visually", "version": "0.0.2", "keywords": [ "HDF", "HCS", "hcs", "hdf" ], "icon": "images/hcs.png", "engines": { "vscode": "^1.65.0" }, "categories": [ "Other" ], "activationEvents": [ "onStartupFinished" ], "main": "./extension.js", "publisher": "Kaihong", "contributes": { "commands": [ { "command": "hcs_editor", "title": "HCS Configuration Source View" } ], "menus": { "explorer/context": [ { "command": "hcs_editor", "when": "resourceExtname==.hcs" } ] } }, "scripts": { "lint": "eslint .", "pretest": "npm run lint", "test": "node ./test/runTest.js" }, "devDependencies": { "@types/glob": "^7.2.0", "@types/mocha": "^9.1.0", "@types/node": "14.x", "@types/vscode": "^1.65.0", "@vscode/test-electron": "^2.1.2", "eslint": "^8.9.0", "glob": "^7.2.0", "mocha": "^9.2.1", "typescript": "^4.5.5" }, "dependencies": { "vsce": "^2.14.0" }, "repository": { "type": "gitee", "url": "https://gitee.com/openharmony/drivers_hdf_core/tree/master/framework/tools/hcs-view" } }