-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
66 lines (66 loc) · 1.78 KB
/
package.json
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
{
"name": "pyro-desktop",
"description": "Cross-platform pyrodactyl desktop app made for pyro.host users",
"author": "pyro",
"private": true,
"version": "0.1.0",
"scripts": {
"dev": "vite",
"build": "tsc && vite build && electron-builder",
"lint": "eslint src --ext ts,tsx --report-unused-disable-directives --max-warnings 0",
"preview": "vite preview"
},
"dependencies": {
"electron-context-menu": "^3.6.1",
"react": "^18.2.0",
"react-dom": "^18.2.0"
},
"devDependencies": {
"@types/react": "^18.2.63",
"@types/react-dom": "^18.2.20",
"@typescript-eslint/eslint-plugin": "^7.1.1",
"@typescript-eslint/parser": "^7.1.1",
"@vitejs/plugin-react": "^4.2.1",
"electron": "^29.1.0",
"electron-builder": "^24.13.3",
"eslint": "^8.57.0",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-react-refresh": "^0.4.5",
"typescript": "^5.3.3",
"vite": "^5.1.5",
"vite-plugin-electron": "^0.28.2",
"vite-plugin-electron-renderer": "^0.14.5"
},
"build": {
"appId": "host.pyro.desktop",
"productName": "pyro",
"asar": true,
"npmRebuild": false,
"framework": "electron",
"directories": {
"output": "release/${version}"
},
"nsis": {
"oneClick": true,
"perMachine": false,
"allowToChangeInstallationDirectory": false,
"deleteAppDataOnUninstall": true,
"installerIcon": "icons/icon.ico",
"uninstallerIcon": "icons/icon.ico",
"uninstallDisplayName": "pyro Desktop"
},
"win": {
"artifactName": "${productName}-installer-win64.${ext}",
"icon": "icons/icon.ico",
"target": [
{
"target": "nsis",
"arch": [
"x64"
]
}
]
}
},
"main": "dist-electron/main.js"
}