-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
86 lines (86 loc) · 2.24 KB
/
package.json
File metadata and controls
86 lines (86 loc) · 2.24 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
{
"name": "shuttlechat",
"version": "1.0.0",
"description": "ShuttleChat Windows",
"main": "main.js",
"scripts": {
"build:css": "npx tailwindcss -i ./input.css -o ./output.css --watch",
"build:prod": "npx tailwindcss -i ./input.css -o ./output.css --minify",
"start": "electron-forge start",
"make": "electron-forge make",
"package": "electron-forge package"
},
"build": {
"appId": "com.shuttleai.chat",
"win": {
"icon": "./icon.ico"
},
"mac": {
"icon": "./icon.icns"
},
"publish": [
{
"provider": "github",
"owner": "shuttleai",
"repo": "shuttlechat-client",
"releaseType": "release"
}
]
},
"author": "",
"license": "ISC",
"devDependencies": {
"@electron-forge/cli": "^7.5.0",
"@electron-forge/maker-deb": "^7.5.0",
"@electron-forge/maker-rpm": "^7.5.0",
"@electron-forge/maker-squirrel": "^7.5.0",
"@electron-forge/maker-zip": "^7.5.0",
"@electron-forge/plugin-auto-unpack-natives": "^7.5.0",
"@electron-forge/plugin-fuses": "^7.5.0",
"@electron-forge/publisher-github": "^7.5.0",
"@electron/fuses": "^1.8.0",
"electron": "^32.2.0",
"electron-reload": "^2.0.0-alpha.1"
},
"dependencies": {
"electron-squirrel-startup": "^1.0.1",
"electron-updater": "^6.3.9",
"tailwindcss": "^3.4.13"
},
"config": {
"forge": {
"packagerConfig": {
"icon": "./icon.ico",
"arch": ["ia32", "x64"]
},
"makers": [
{
"name": "@electron-forge/maker-squirrel",
"config": {
"name": "ShuttleChat",
"authors": "ShuttleAI, Inc.",
"exe": "ShuttleChat.exe",
"setupExe": "shuttlechat-1.0.0.exe",
"setupIcon": "./icon.ico",
"iconUrl": "https://shuttleai.com/favicon.ico",
"noMsi": true
}
}
],
"publishers": [
{
"name": "@electron-forge/publisher-github",
"config": {
"repository": {
"owner": "shuttleai",
"name": "shuttlechat-client"
},
"releaseType": "release",
"prerelease": false,
"draft": false
}
}
]
}
}
}