1{ 2 "name": "hcsView", 3 "displayName": "hcsView", 4 "description": "", 5 "version": "0.0.1", 6 "engines": { 7 "vscode": "^1.65.0" 8 }, 9 "categories": [ 10 "Other" 11 ], 12 "activationEvents": [ 13 "*" 14 ], 15 "main": "./extension.js", 16 "contributes": { 17 "commands": [ 18 { 19 "command": "hcs_editor", 20 "title": "hcsView" 21 } 22 ], 23 "menus": { 24 "explorer/context": [ 25 { 26 "command": "hcs_editor", 27 "when": "resourceExtname==.hcs" 28 } 29 ] 30 } 31 }, 32 "scripts": { 33 "lint": "eslint .", 34 "pretest": "npm run lint", 35 "test": "node ./test/runTest.js" 36 }, 37 "devDependencies": { 38 "@types/vscode": "^1.65.0", 39 "@types/glob": "^7.2.0", 40 "@types/mocha": "^9.1.0", 41 "@types/node": "14.x", 42 "eslint": "^8.9.0", 43 "glob": "^7.2.0", 44 "mocha": "^9.2.1", 45 "typescript": "^4.5.5", 46 "@vscode/test-electron": "^2.1.2" 47 }, 48 "dependencies": { 49 "vsce": "^2.9.0" 50 } 51} 52