-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
72 lines (72 loc) · 1.82 KB
/
Copy pathpackage.json
File metadata and controls
72 lines (72 loc) · 1.82 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
{
"name": "@udit_v/progit",
"version": "0.1.5",
"description": "Modern web-based git visualization tool — an ungit successor",
"type": "module",
"bin": {
"progit": "bin/progit.js"
},
"files": [
"dist",
"bin",
"README.md",
"LICENSE"
],
"engines": {
"node": ">=18"
},
"scripts": {
"dev": "concurrently -k -n server,client \"tsx watch src/server/cli.ts --port 3411 --no-open\" \"vite\"",
"dev:server": "tsx watch src/server/cli.ts --port 3411 --no-open",
"dev:client": "vite",
"build": "vite build && tsup && cp src/server/askpass.cjs dist/server/",
"test": "vitest run",
"typecheck": "tsc --noEmit",
"release": "node scripts/release.mjs",
"prepublishOnly": "pnpm run typecheck && pnpm test && pnpm build"
},
"keywords": [
"git",
"gui",
"ungit",
"visualization"
],
"author": "Udit",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/uditdc/progit.git"
},
"bugs": {
"url": "https://github.com/uditdc/progit/issues"
},
"homepage": "https://github.com/uditdc/progit#readme",
"publishConfig": {
"access": "public"
},
"packageManager": "pnpm@10.33.0",
"dependencies": {
"@hono/node-server": "^1.14.0",
"chokidar": "^4.0.3",
"hono": "^4.7.0",
"ignore": "^7.0.3"
},
"devDependencies": {
"@fontsource/inter": "^5.2.8",
"@fontsource/jetbrains-mono": "^5.2.0",
"@tanstack/react-query": "^5.66.0",
"@types/node": "^22.13.0",
"@types/react": "^19.0.0",
"@types/react-dom": "^19.0.0",
"@vitejs/plugin-react": "^4.3.4",
"concurrently": "^9.1.2",
"playwright-core": "^1.60.0",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"tsup": "^8.3.6",
"tsx": "^4.19.2",
"typescript": "^5.7.3",
"vite": "^6.1.0",
"vitest": "^3.0.5"
}
}