1{ 2 "name": "HDFConfigurationSourceView", 3 "displayName": "HDF Configuration Source View", 4 "description": "Configure the hcs file visually", 5 "version": "0.0.2", 6 "keywords": [ 7 "HDF", 8 "HCS", 9 "hcs", 10 "hdf" 11 ], 12 "icon": "images/hcs.png", 13 "engines": { 14 "vscode": "^1.65.0" 15 }, 16 "categories": [ 17 "Other" 18 ], 19 "activationEvents": [ 20 "onStartupFinished" 21 ], 22 "main": "./extension.js", 23 "publisher": "Kaihong", 24 "contributes": { 25 "commands": [ 26 { 27 "command": "hcs_editor", 28 "title": "HCS Configuration Source View" 29 } 30 ], 31 "menus": { 32 "explorer/context": [ 33 { 34 "command": "hcs_editor", 35 "when": "resourceExtname==.hcs" 36 } 37 ] 38 } 39 }, 40 "scripts": { 41 "lint": "eslint .", 42 "pretest": "npm run lint", 43 "test": "node ./test/runTest.js" 44 }, 45 "devDependencies": { 46 "@types/glob": "^7.2.0", 47 "@types/mocha": "^9.1.0", 48 "@types/node": "14.x", 49 "@types/vscode": "^1.65.0", 50 "@vscode/test-electron": "^2.1.2", 51 "eslint": "^8.9.0", 52 "glob": "^7.2.0", 53 "mocha": "^9.2.1", 54 "typescript": "^4.5.5" 55 }, 56 "dependencies": { 57 "vsce": "^2.14.0" 58 }, 59 "repository": { 60 "type": "gitee", 61 "url": "https://gitee.com/openharmony/drivers_hdf_core/tree/master/framework/tools/hcs-view" 62 } 63} 64