-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
102 lines (102 loc) · 2.23 KB
/
Copy pathpackage.json
File metadata and controls
102 lines (102 loc) · 2.23 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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
{
"name": "@hitzhangjie/git-vis",
"publishConfig": {
"access": "public"
},
"version": "1.0.0",
"description": "Interactive tool to visualize Git commits, trees, merges, and conflict mechanics",
"type": "module",
"license": "MIT",
"author": "hitzhangjie",
"repository": {
"type": "git",
"url": "git+https://github.com/hitzhangjie/git-vis.git"
},
"homepage": "https://github.com/hitzhangjie/git-vis#readme",
"bugs": {
"url": "https://github.com/hitzhangjie/git-vis/issues"
},
"keywords": [
"git",
"visualization",
"commit-graph",
"merge",
"rebase",
"cherry-pick",
"cli"
],
"engines": {
"node": ">=18"
},
"main": "electron/main.mjs",
"bin": {
"git-vis": "./bin/git-vis.mjs"
},
"files": [
"bin",
"src",
"index.html",
"vite.config.ts",
"vite-plugin-api.ts",
"tsconfig.json",
"tsconfig.node.json",
"LICENSE",
"README.md"
],
"scripts": {
"dev": "vite",
"dev:electron": "concurrently -k \"vite --port 3000 --strictPort\" \"wait-on tcp:3000 && VITE_DEV_SERVER_URL=http://localhost:3000 electron .\"",
"build": "tsc && vite build",
"preview": "vite preview",
"git-vis": "node bin/git-vis.mjs",
"dist": "npm run build && electron-builder"
},
"dependencies": {
"@vitejs/plugin-react": "^4.2.1",
"d3": "^7.8.5",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"simple-git": "^3.20.0",
"vite": "^5.0.8"
},
"devDependencies": {
"@types/d3": "^7.4.3",
"@types/react": "^18.2.43",
"@types/react-dom": "^18.2.17",
"concurrently": "^9.2.1",
"electron": "^31.7.7",
"electron-builder": "^24.13.3",
"typescript": "^5.3.3",
"wait-on": "^8.0.1"
},
"build": {
"appId": "com.gitvis.app",
"productName": "Understanding How Git Works",
"files": [
"dist/**/*",
"electron/**/*",
"vite.config.ts",
"vite-plugin-api.ts",
"src/**/*",
"package.json"
],
"asar": true,
"mac": {
"target": [
"dmg"
],
"identity": null,
"category": "public.app-category.developer-tools"
},
"win": {
"target": [
"nsis"
]
},
"linux": {
"target": [
"AppImage"
]
}
}
}