-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
99 lines (99 loc) · 2.35 KB
/
Copy pathpackage.json
File metadata and controls
99 lines (99 loc) · 2.35 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
{
"name": "shroud",
"version": "1.0.0",
"description": "",
"main": "main/index.js",
"scripts": {
"start": "webpack --config webpack.config.js && electron .",
"build": "webpack --config webpack.config.js",
"electron": "electron .",
"package:win": "electron-builder --win",
"package:linux": "electron-builder --linux",
"dist:win": "webpack --config webpack.config.js && electron-builder --win",
"dist:linux": "webpack --config webpack.config.js && electron-builder --linux",
"dist:mac": "webpack --config webpack.config.js && electron-builder --mac"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@babel/core": "^7.23.0",
"@babel/preset-env": "^7.23.0",
"@babel/preset-react": "^7.22.0",
"babel-loader": "^9.1.0",
"css-loader": "^6.8.0",
"electron": "^28.0.0",
"electron-builder": "^26.8.1",
"html-webpack-plugin": "^5.5.0",
"style-loader": "^3.3.0",
"webpack": "^5.89.0",
"webpack-cli": "^5.1.0"
},
"dependencies": {
"axios": "^1.6.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-simple-maps": "^3.0.0"
},
"build": {
"appId": "com.shroud.app",
"productName": "Shroud",
"copyright": "Copyright 2026",
"directories": {
"output": "dist-build",
"buildResources": "assets"
},
"files": [
"main/**/*",
"renderer/dist/**/*",
"preload/**/*",
"tor/**/*",
"assets/**/*",
"package.json"
],
"extraResources": [
{
"from": "tor",
"to": "tor",
"filter": [
"**/*"
]
}
],
"win": {
"target": [
{
"target": "nsis",
"arch": [
"x64"
]
}
],
"icon": "assets/icon.ico"
},
"nsis": {
"oneClick": false,
"allowToChangeInstallationDirectory": true,
"installerIcon": "assets/icon.ico",
"uninstallerIcon": "assets/icon.ico",
"createDesktopShortcut": true,
"createStartMenuShortcut": true,
"shortcutName": "Shroud"
},
"linux": {
"target": [
"AppImage",
"deb"
],
"icon": "assets/icon.png",
"category": "Network"
},
"mac": {
"target": [
"dmg"
],
"icon": "assets/icon.icns",
"category": "public.app-category.utilities"
}
}
}