-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
78 lines (78 loc) · 2.12 KB
/
Copy pathpackage.json
File metadata and controls
78 lines (78 loc) · 2.12 KB
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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
{
"name": "gitnav",
"displayName": "GitNav",
"description": "A VS Code extension for navigating Git commits easily.",
"icon": "./images/gitnav.png",
"version": "0.1.0",
"publisher": "czxvan",
"repository": {
"type": "git",
"url": "https://github.com/czxvan/gitnav.git"
},
"engines": {
"vscode": "^1.85.0"
},
"categories": [
"Other"
],
"main": "./src/extension.js",
"contributes": {
"commands": [
{
"command": "gitnav.showPanel",
"title": "Show Panel",
"category": "GitNav"
},
{
"command": "gitnav.prev",
"title": "Previous Commit",
"category": "GitNav"
},
{
"command": "gitnav.next",
"title": "Next Commit",
"category": "GitNav"
},
{
"command": "gitnav.init",
"title": "Init Commit",
"category": "GitNav"
},
{
"command": "gitnav.head",
"title": "Head Commit",
"category": "GitNav"
},
{
"command": "gitnav.custom",
"title": "Custom Commit",
"category": "GitNav"
}
],
"menus": {
"editor/title": [
{
"command": "gitnav.showPanel",
"group": "navigation",
"when": "resourceScheme == file"
}
]
}
},
"scripts": {
"lint": "eslint .",
"pretest": "pnpm run lint",
"test": "vscode-test",
"package": "pnpm vsce package --no-dependencies",
"publish": "pnpm vsce publish --no-dependencies"
},
"devDependencies": {
"@types/mocha": "^10.0.10",
"@types/node": "20.x",
"@types/vscode": "^1.85.0",
"@vscode/test-cli": "^0.0.10",
"@vscode/test-electron": "^2.4.1",
"@vscode/vsce": "^3.3.2",
"eslint": "^9.23.0"
}
}