-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 1.65 KB
/
package.json
File metadata and controls
61 lines (61 loc) · 1.65 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
{
"name": "proxy-data-saver",
"version": "1.3.0",
"description": "Local proxy server with conditional routing for saving data",
"main": "./out/main/index.js",
"scripts": {
"dev": "electron-vite dev",
"build": "electron-vite build",
"preview": "electron-vite preview",
"postinstall": "electron-builder install-app-deps",
"build:win": "npm run build && electron-builder --win",
"build:mac": "npm run build && electron-builder --mac",
"build:linux": "npm run build && electron-builder --linux"
},
"dependencies": {
"electron-store": "^8.1.0",
"proxy-chain": "^2.5.5",
"wildcard-match": "^5.1.3"
},
"devDependencies": {
"@types/node": "^20.10.0",
"@types/react": "^18.2.45",
"@types/react-dom": "^18.2.18",
"@vitejs/plugin-react": "^4.2.1",
"autoprefixer": "^10.4.16",
"electron": "^28.1.0",
"electron-builder": "^24.9.1",
"electron-icon-builder": "^2.0.1",
"electron-vite": "^2.0.0",
"postcss": "^8.4.32",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"tailwindcss": "^3.4.0",
"typescript": "^5.3.3"
},
"build": {
"appId": "com.proxydatasaver.app",
"productName": "Proxy Data Saver",
"files": [
"out/**/*"
],
"extraResources": [
{
"from": "resources/icons",
"to": "icons"
}
],
"win": {
"target": "nsis",
"icon": "resources/icons/icon.ico"
},
"nsis": {
"oneClick": false,
"allowToChangeInstallationDirectory": true,
"createDesktopShortcut": true,
"createStartMenuShortcut": true,
"shortcutName": "Proxy Data Saver",
"include": "build/installer.nsh"
}
}
}