-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
81 lines (81 loc) · 1.76 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
{
"name": "steamchat",
"version": "0.1.3",
"description": "a webwrapper for steam chat",
"author": {
"name": "bdeb1337",
"email": "[email protected]"
},
"keywords": [
"webwrapper",
"steam",
"chat"
],
"license": "ISC",
"main": "main.js",
"scripts": {
"start": "NODE_ENV=development electron .",
"build": "NODE_ENV=production electron-builder",
"build:mac": "NODE_ENV=production electron-builder --mac",
"build:win": "set NODE_ENV=production&& electron-builder --win",
"build:linux": "NODE_ENV=production electron-builder --linux"
},
"build": {
"appId": "com.bdeb1337.steamchat",
"mac": {
"icon": "assets/icon.icns",
"extendInfo": {
"NSMicrophoneUsageDescription": "Mic access is required for notification sounds.",
"com.apple.security.device.microphone": true
},
"category": "public.app-category.social-networking",
"target": [
{
"target": "dmg",
"arch": "universal"
}
]
},
"win": {
"icon": "assets/icon.ico",
"target": [
{
"target": "nsis",
"arch": [
"x64",
"ia32"
]
},
{
"target": "portable",
"arch": [
"x64",
"ia32"
]
}
]
},
"nsis": {
"oneClick": false,
"allowToChangeInstallationDirectory": true
},
"linux": {
"icon": "assets/icons",
"category": "Network;Chat;",
"target": [
"AppImage",
"deb",
"rpm",
"pacman"
]
}
},
"devDependencies": {
"electron": "^29.0.1",
"electron-builder": "^24.13.3"
},
"dependencies": {
"auto-launch": "^5.0.6",
"js-yaml": "^4.1.0"
}
}