-
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.35 KB
/
package.json
File metadata and controls
78 lines (78 loc) · 2.35 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": "git-grove",
"displayName": "Git Grove — Visual Git Graph",
"description": "A colorful, local-first git graph visualizer with branch compare, working tree overlay, and AI-ready context export.",
"version": "0.1.0",
"publisher": "git-grove",
"license": "MIT",
"engines": {
"vscode": "^1.85.0"
},
"categories": [
"SCM Providers",
"Visualization"
],
"activationEvents": [
"onCommand:gitGrove.showGraph",
"onCommand:gitGrove.compareBranches",
"onCommand:gitGrove.exportContext"
],
"main": "./out/extension.js",
"contributes": {
"commands": [
{
"command": "gitGrove.showGraph",
"title": "Git Grove: Show Graph"
},
{
"command": "gitGrove.compareBranches",
"title": "Git Grove: Compare Branches"
},
{
"command": "gitGrove.exportContext",
"title": "Git Grove: Export AI Context"
}
],
"configuration": {
"title": "Git Grove",
"properties": {
"gitGrove.graph.maxCommits": {
"type": "number",
"default": 150,
"minimum": 1,
"maximum": 10000,
"description": "Maximum number of commits to display in the graph."
}
}
}
},
"scripts": {
"compile": "tsc -p ./tsconfig.json && node scripts/build-webview.mjs",
"compile:extension": "tsc -p ./tsconfig.json",
"compile:webview": "node scripts/build-webview.mjs",
"watch": "node scripts/watch-all.mjs",
"watch:extension": "tsc -watch -p ./tsconfig.json",
"watch:webview": "node scripts/build-webview.mjs --watch",
"lint": "eslint src test --ext .ts",
"test": "vitest run",
"test:watch": "vitest",
"typecheck": "tsc --noEmit && tsc --noEmit -p tsconfig.webview.json",
"typecheck:extension": "tsc --noEmit",
"typecheck:webview": "tsc --noEmit -p tsconfig.webview.json",
"build": "npm run typecheck && npm run compile",
"validate": "bash scripts/validate.sh",
"vscode:prepublish": "npm run build",
"package": "npx @vscode/vsce package --no-dependencies"
},
"devDependencies": {
"@types/node": "^20.11.0",
"@types/vscode": "^1.85.0",
"@typescript-eslint/eslint-plugin": "^7.0.0",
"@typescript-eslint/parser": "^7.0.0",
"esbuild": "^0.27.4",
"eslint": "^8.56.0",
"jsdom": "^28.1.0",
"typescript": "^5.3.0",
"vitest": "^1.2.0"
}
}