-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
110 lines (110 loc) · 2.92 KB
/
package.json
File metadata and controls
110 lines (110 loc) · 2.92 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
{
"name": "git-automation-dashboard",
"version": "0.27.0",
"description": "A dashboard to manage and automate the workflow for a set of Git repositories.",
"main": "dist/main.js",
"author": "Tim Sinaeve <tim.sinaeve@gmail.com>",
"license": "MIT",
"scripts": {
"start": "concurrently \"npm:watch\" \"npm:electron\"",
"watch": "node esbuild.config.js --watch",
"electron": "wait-on dist/main.js dist/renderer.js dist/preload.js && electron .",
"build": "cross-env NODE_ENV=production node esbuild.config.js",
"pack": "npm run build && electron-builder --publish never && npm run normalize:win32",
"publish": "npm run build && electron-builder --publish always && npm run normalize:win32",
"normalize:win32": "node electron/scripts/normalize-win32-artifacts.mjs",
"test": "rm -rf build-tests && tsc -p tsconfig.test.json && node --test build-tests/tests"
},
"dependencies": {
"@google/genai": "^1.16.0",
"electron-squirrel-startup": "^1.0.0",
"electron-updater": "^6.2.1",
"jszip": "^3.10.1",
"react": "^19.1.1",
"react-dom": "^19.1.1",
"react-markdown": "^9.0.1",
"remark-gfm": "^4.0.0"
},
"devDependencies": {
"@types/react": "^18.3.3",
"@types/react-dom": "^18.3.0",
"@resvg/resvg-js": "^2.6.2",
"concurrently": "^8.2.2",
"cross-env": "^7.0.3",
"electron": "^31.2.1",
"electron-builder": "^24.13.3",
"esbuild": "^0.23.0",
"png-to-ico": "^2.0.4",
"typescript": "^5.5.3",
"wait-on": "^7.2.0"
},
"build": {
"appId": "com.example.gitautomationdashboard",
"productName": "Git Automation Dashboard",
"directories": {
"app": "dist",
"buildResources": "assets",
"output": "release"
},
"extraResources": [
{
"from": "dist/docs",
"to": "docs"
}
],
"win": {
"artifactName": "${name}-${version}-windows-${arch}-setup.${ext}",
"target": [
{
"target": "nsis",
"arch": [
"ia32",
"x64"
]
}
],
"icon": "dist/assets/icon.ico"
},
"mac": {
"target": "dmg"
},
"linux": {
"target": [
{
"target": "AppImage",
"arch": [
"x64",
"armv7l",
"arm64"
]
},
{
"target": "deb",
"arch": [
"x64",
"armv7l",
"arm64"
]
}
],
"category": "Utility",
"maintainer": "AI Assistant <support@example.com>"
},
"deb": {
"afterInstall": "electron/scripts/linux-after-install.sh",
"afterRemove": "electron/scripts/linux-after-remove.sh"
},
"nsis": {
"oneClick": false,
"allowToChangeInstallationDirectory": true,
"differentialPackage": false
},
"publish": [
{
"provider": "github",
"owner": "beNative",
"repo": "git-automation"
}
]
}
}