{
"name": "hcsView",
"displayName": "hcsView",
"description": "",
"version": "0.0.1",
"engines": {
"vscode": "^1.65.0"
},
"categories": [
"Other"
],
"activationEvents": [
"*"
],
"main": "./extension.js",
"contributes": {
"commands": [
{
"command": "hcs_editor",
"title": "hcsView"
}
],
"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"
},
"dependencies": {
"vsce": "^2.9.0"
}
}