-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
44 lines (44 loc) · 981 Bytes
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
{
"name": "vsc-commander",
"version": "1.0.0",
"description": "对vscode cli命令的封装",
"main": "index.js",
"bin": {
"vscc": "bin/index.js"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/avennn/vsc-commander.git"
},
"keywords": [
"vscode",
"nodejs",
"cli"
],
"author": "Thomas Leung <914301050@qq.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/avennn/vsc-commander/issues"
},
"homepage": "https://github.com/avennn/vsc-commander#readme",
"dependencies": {
"chalk": "^5.0.1",
"commander": "^9.3.0"
},
"devDependencies": {
"eslint": "^8.2.0",
"eslint-config-airbnb-base": "15.0.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-import": "^2.25.2",
"eslint-plugin-prettier": "^4.2.1",
"prettier": "2.7.1"
},
"files": [
"bin",
"src",
"index.js"
]
}