-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
58 lines (58 loc) · 1.2 KB
/
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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
{
"name": "gitjump",
"displayName": "GitJump",
"description": "quick open git repository by button",
"version": "1.7.0",
"engines": {
"vscode": "^1.66.6"
},
"categories": [
"Other"
],
"icon": "icon.png",
"activationEvents": [
"onStartupFinished",
"onCommand:gitbtn.initBtn"
],
"main": "./src/index.js",
"contributes": {
"commands": [
{
"command": "gitbtn.openRepository",
"title": "openRepository"
},
{
"command": "gitbtn.gitbtnInfo",
"title": "gitbtn"
},
{
"command": "gitbtn.initBtn",
"title": "openRepositoryBtn"
}
]
},
"scripts": {
"lint": "eslint .",
"pretest": "pnpm run lint",
"test": "node ./test/runTest.js"
},
"publisher": "larry",
"repository": {
"type": "git",
"url": "https://github.com/MrYZhou/gitbtn.git"
},
"devDependencies": {
"@types/glob": "^8.1.0",
"@types/mocha": "^10.0.1",
"@types/node": "16.x",
"@types/vscode": "^1.66.6",
"@vscode/test-electron": "^2.3.0",
"eslint": "^8.39.0",
"glob": "^8.1.0",
"mocha": "^10.2.0",
"typescript": "^5.0.4"
},
"dependencies": {
"simple-git": "^3.18.0"
}
}