-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
33 lines (33 loc) · 841 Bytes
/
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
{
"name": "welcometwitch",
"version": "1.0.0",
"description": "a simple hi message detector on twitch",
"main": "index.js",
"scripts": {
"dev": "electron .",
"pack": "electron-builder --dir",
"dist": "electron-builder",
"build": "electron-builder build --linux --win"
},
"keywords": ["Twitch", "Welcome"],
"author": "Shaynlink (https://github.com/Shaynlink/",
"license": "MIT",
"dependencies": {
"axios": "^0.21.1",
"express": "^4.17.1",
"ws": "^7.4.3"
},
"devDependencies": {
"electron": "^11.3.0",
"electron-builder": "^22.9.1"
},
"build": {
"appId": "com.shaynlink.welcometwitch",
"productName": "Welcome Twitch",
"copyright": "Copyright © 2021 Shaynlink",
"directories": {
"buildResources": "build"
},
"files": ["**/*", "build/icon.*"]
}
}