-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
56 lines (56 loc) · 1.18 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
{
"name": "WinGPT",
"version": "1.2.4",
"main": "main.js",
"type": "module",
"scripts": {
"start": "electron .",
"build": "electron-builder"
},
"keywords": [],
"author": "Yixboost NL",
"license": "GNU",
"description": "Get Any AI on Windows",
"dependencies": {
"@emotion/react": "^11.13.3",
"@emotion/styled": "^11.13.0",
"@mui/material": "^5.16.7",
"auto-launch": "^5.0.6",
"chokidar": "^3.6.0",
"custom-electron-titlebar": "^4.2.8",
"electron-store": "^10.0.0",
"is-elevated": "^4.0.0"
},
"devDependencies": {
"electron": "^32.0.1",
"electron-builder": "^24.13.3"
},
"build": {
"appId": "com.yixboost.wingpt",
"productName": "WinGPT",
"files": [
"main.js",
"preload.js",
"index.html",
"offline.html",
"node_modules/**/*",
"package.json"
],
"directories": {
"output": "store"
},
"win": {
"target": [
"appx",
"nsis",
"msi"
],
"icon": "assets/icon.png"
},
"appx": {
"publisher": "CN=YourPublisherName",
"publisherDisplayName": "Yixboost NL",
"identityName": "com.yixboost.wingpt"
}
}
}