-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
77 lines (77 loc) · 2.13 KB
/
package.json
File metadata and controls
77 lines (77 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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
{
"name": "github-release-manager",
"private": true,
"version": "3.4.3",
"description": "Desktop app to manage GitHub releases.",
"author": "github-release-manager",
"main": "electron/main.js",
"scripts": {
"dev": "cls && concurrently \"vite\" \"cross-env NODE_ENV=development electron .\"",
"build": "cls && vite build && electron-builder"
},
"dependencies": {
"concurrently": "^9.2.1",
"cross-env": "^10.1.0",
"electron-squirrel-startup": "^1.0.0",
"react": "^19.2.0",
"react-dom": "^19.2.0",
"react-icons": "^5.5.0",
"react-markdown": "^10.1.0",
"rehype-raw": "^7.0.0",
"remark-gfm": "^4.0.1",
"remark-github-alerts": "^0.1.1",
"wait-on": "^9.0.3"
},
"devDependencies": {
"@eslint/js": "^9.39.1",
"@types/react": "^19.2.5",
"@types/react-dom": "^19.2.3",
"@vitejs/plugin-react": "^5.1.1",
"electron": "^39.2.6",
"electron-builder": "^26.8.1",
"eslint": "^9.39.1",
"eslint-plugin-react-hooks": "^7.0.1",
"eslint-plugin-react-refresh": "^0.4.24",
"globals": "^16.5.0",
"vite": "^7.2.4"
},
"build": {
"appId": "com.githubrelease.manager",
"productName": "github-release-manager",
"directories": {
"output": "release",
"buildResources": "build"
},
"files": [
"dist/**/*",
"electron/**/*",
"package.json"
],
"asar": true,
"win": {
"target": "nsis",
"artifactName": "${productName}.${ext}",
"icon": "src/public/build.ico",
"requestedExecutionLevel": "asInvoker"
},
"nsis": {
"oneClick": true,
"allowToChangeInstallationDirectory": false,
"perMachine": false,
"createDesktopShortcut": true,
"createStartMenuShortcut": true,
"shortcutName": "GitHub Release Manager",
"installerIcon": "src/public/build.ico",
"uninstallerIcon": "src/public/build.ico",
"deleteAppDataOnUninstall": true,
"allowElevation": true,
"include": "build/installer.nsh",
"installerLanguages": [
"en_US",
"el_GR"
],
"menuCategory": "GitHub Tools",
"multiLanguageInstaller": true
}
}
}