vscode_dwm-git-simpleuse/package.json

48 lines
997 B
JSON

{
"name": "dwm-git-simpleuse",
"displayName": "DWM_git_simpleUse",
"icon": "img/icon.png",
"description": "",
"publisher": "nyncral",
"version": "0.0.1",
"engines": {
"vscode": "^1.85.0"
},
"categories": [
"Other"
],
"activationEvents": [],
"main": "./extension.js",
"contributes": {
"commands": [
{
"command": "dwm-git-simpleuse.helloWorld",
"title": "HelloWorld23"
}
],
"keybindings": [
{
"command": "dwm-git-simpleuse.helloWorld",
"key": "ctrl+alt+r",
"mac": "cmd+alt+r"
}
]
},
"scripts": {
"lint": "eslint .",
"pretest": "npm run lint",
"test": "vscode-test"
},
"devDependencies": {
"@types/mocha": "^10.0.6",
"@types/node": "18.x",
"@types/vscode": "^1.85.0",
"@vscode/test-cli": "^0.0.4",
"@vscode/test-electron": "^2.3.8",
"eslint": "^8.56.0",
"typescript": "^5.3.3"
},
"dependencies": {
"child_process": "^1.0.2"
}
}