-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 2.13 KB
/
Copy pathpackage.json
File metadata and controls
57 lines (57 loc) · 2.13 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
{
"name": "gitgrove",
"productName": "GitGrove",
"version": "1.5.3",
"description": "A fast, beautiful git client built on @pierre/trees and @pierre/diffs",
"author": "Daniel Peñalba",
"homepage": "https://github.com/danipen/gitgrove",
"repository": {
"type": "git",
"url": "https://github.com/danipen/gitgrove.git"
},
"license": "MIT",
"type": "module",
"private": true,
"main": "./out/main/index.js",
"scripts": {
"postinstall": "node scripts/ensure-electron.mjs",
"dev": "electron-vite dev",
"dev:debug": "GITGROVE_DEBUG_PORT=9222 electron-vite dev",
"build": "electron-vite build",
"preview": "electron-vite preview",
"typecheck": "tsc --noEmit -p tsconfig.json",
"lint": "biome check .",
"lint:fix": "biome check --write .",
"format": "biome format --write .",
"test": "bun test --timeout 30000",
"e2e": "node scripts/verify-ui.mjs",
"make:icon": "node scripts/make-icon.mjs",
"licenses": "node scripts/generate-third-party-licenses.mjs",
"dist": "electron-vite build && node scripts/generate-third-party-licenses.mjs && electron-builder",
"dist:mac": "electron-vite build && node scripts/generate-third-party-licenses.mjs && electron-builder --mac",
"dist:win": "electron-vite build && node scripts/generate-third-party-licenses.mjs && electron-builder --win",
"dist:linux": "electron-vite build && node scripts/generate-third-party-licenses.mjs && electron-builder --linux",
"release": "electron-vite build && node scripts/generate-third-party-licenses.mjs && electron-builder --publish always"
},
"devDependencies": {
"@biomejs/biome": "^2.4.16",
"@types/bun": "^1.3.14",
"@types/node": "^25.9.1",
"@types/react": "^19.2.16",
"@types/react-dom": "^19.2.3",
"@vitejs/plugin-react": "^6.0.2",
"electron": "^42.3.2",
"electron-builder": "^26.8.1",
"electron-vite": "^5.0.0",
"playwright": "^1.60.0",
"typescript": "^5.6.0",
"vite": "^8.0.16"
},
"dependencies": {
"@pierre/diffs": "^1.2.7",
"electron-updater": "^6.8.3",
"react": "^19.2.7",
"react-dom": "^19.2.7",
"shiki": "^4.1.0"
}
}