-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
88 lines (88 loc) · 2.09 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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
{
"name": "monadic-chat",
"productName": "Monadic Chat",
"version": "0.9.52",
"description": "Launcher application responsible for starting and stopping Monadic Chat",
"main": "main.js",
"scripts": {
"start": "electron .",
"build:mac-arm64": "electron-builder --mac --arm64",
"build:mac-x64": "electron-builder --mac --x64",
"build:win": "electron-builder --win --x64",
"build:linux-arm64": "electron-builder --linux --arm64",
"build:linux-x64": "electron-builder --linux --x64"
},
"keywords": [],
"author": "Yoichiro Hasebe <[email protected]>",
"license": "MIT",
"devDependencies": {
"@electron/notarize": "",
"@eslint/js": "^9.11.1",
"electron": "^32.1.2",
"electron-builder": "^25.0.5",
"eslint": "^9.11.1",
"eslint-plugin-node": "^11.1.0",
"globals": "^15.9.0"
},
"build": {
"asar": true,
"appId": "com.yohasebe.monadic",
"extraResources": [
{
"from": "./docker",
"to": "app/docker",
"filter": [
"**/*",
"!**/.*",
"!services/ruby/rbsetup.sh",
"!services/python/pysetup.sh"
]
},
{
"from": "./LICENSE",
"to": "app/LICENSE"
},
{
"from": "./README.md",
"to": "app/README.md"
}
],
"files": [
"main.js",
"preload.js",
"mainScreen.js",
"index.html",
"settings.html",
"icons/**/*"
],
"mac": {
"icon": "icons/icon.icns",
"hardenedRuntime": true,
"gatekeeperAssess": false
},
"afterSign": "notarize.js",
"win": {
"target": "nsis",
"icon": "icons/icon.ico",
"certificateSubjectName": "Open Source Developer, Yoichiro Hasebe",
"certificateSha1": "a8d4693b31228d10a9da7c2687f5c565928c2a06"
},
"nsis": {
"runAfterFinish": false
},
"linux": {
"icon": "icons/icon.icns",
"target": [
"deb"
],
"defaultArch": "x64"
}
},
"dependencies": {
"dotenv": "^16.4.5",
"electron-context-menu": "^3.6.1"
},
"overrides": {
"semver": "^7.5.3"
}
}