-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
122 lines (122 loc) · 3.23 KB
/
Copy pathpackage.json
File metadata and controls
122 lines (122 loc) · 3.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
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
{
"name": "visigit",
"version": "1.0.5",
"description": "Git repository visualizer with AI-powered commit summaries",
"main": "./out/main/index.js",
"bin": {
"visigit": "bin/visigit.js"
},
"files": [
"out/**/*",
"bin/**/*",
"logo.png"
],
"author": {
"name": "shayderrr",
"email": "darknessshayder@gmail.com"
},
"license": "MIT",
"homepage": "https://github.com/shayderrr/visigit",
"repository": {
"type": "git",
"url": "git+https://github.com/shayderrr/visigit.git"
},
"scripts": {
"dev": "electron-vite dev",
"build": "electron-vite build",
"preview": "electron-vite preview",
"prepublishOnly": "electron-vite build",
"package": "electron-vite build && electron-builder --publish=never",
"package:mac": "electron-vite build && electron-builder --mac --publish=never",
"package:win": "electron-vite build && electron-builder --win --publish=never",
"package:linux": "electron-vite build && electron-builder --linux --publish=never",
"package:mac:arm": "electron-vite build && electron-builder --mac --arm64 --publish=never",
"package:mac:x64": "electron-vite build && electron-builder --mac --x64 --publish=never",
"package:win:arm": "electron-vite build && electron-builder --win --arm64 --publish=never",
"package:win:x64": "electron-vite build && electron-builder --win --x64 --publish=never",
"package:linux:arm": "electron-vite build && electron-builder --linux --arm64 --publish=never",
"package:linux:x64": "electron-vite build && electron-builder --linux --x64 --publish=never"
},
"dependencies": {
"@electron-toolkit/utils": "^4.0.0",
"@gitgraph/react": "^1.6.0",
"@uiw/react-heat-map": "^2.3.4",
"recharts": "^2.15.3",
"simple-git": "^3.36.0",
"visigit": "^1.0.4"
},
"devDependencies": {
"@types/react": "^19.1.2",
"@types/react-dom": "^19.1.2",
"@vitejs/plugin-react": "^4.4.1",
"autoprefixer": "^10.4.21",
"electron-builder": "^26.0.12",
"electron-vite": "^3.1.0",
"postcss": "^8.5.4",
"react": "^19.1.0",
"react-dom": "^19.1.0",
"tailwindcss": "^3.4.17",
"typescript": "^5.8.3",
"electron": "^35.1.5"
},
"build": {
"appId": "com.visigit.app",
"productName": "VisiGit",
"directories": {
"output": "release"
},
"files": [
"out/**/*"
],
"mac": {
"category": "public.app-category.developer-tools",
"icon": "applogo.png",
"identity": null,
"target": [
{
"target": "zip",
"arch": [
"x64",
"arm64"
]
}
]
},
"win": {
"target": [
{
"target": "nsis",
"arch": [
"x64",
"arm64"
]
}
],
"icon": "applogo.png"
},
"linux": {
"target": [
{
"target": "AppImage",
"arch": [
"x64",
"arm64"
]
},
{
"target": "deb",
"arch": [
"x64",
"arm64"
]
}
],
"category": "Development",
"icon": "applogo.png"
},
"nsis": {
"oneClick": false,
"allowToChangeInstallationDirectory": true
}
}
}