-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
70 lines (70 loc) · 1.94 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
{
"name": "vaverix-twitch-bot",
"description": "Desktop application that allows you to log-in into multiple Twitch.tv channels at once. It also notifies you when someone mentions you in any channel you choose and has couple of other extra features.",
"author": "vaverix",
"version": "0.0.28",
"license": "MIT",
"scripts": {
"build": "yarn compile",
"dev": "electron-webpack dev",
"compile": "electron-webpack",
"dist": "yarn compile && electron-builder",
"dist:dir": "yarn dist --dir -c.compression=store -c.mac.identity=null",
"publish": "build --win -p always"
},
"build": {
"appId": "com.github.vaverix.vaverixtwitchbot",
"publish": [
{
"provider": "github",
"owner": "vaverix",
"repo": "vaverix-twitch-bot"
}
],
"linux": {
"target": [
"deb"
]
},
"win": {
"target": "NSIS",
"icon": "static/icon.ico"
},
"nsis": {
"artifactName": "${productName}-Setup-${version}.${ext}"
}
},
"dependencies": {
"auto-launch": "^5.0.5",
"axios": "^0.21.1",
"css-loader": "^3.5.3",
"discord.js": "^12.2.0",
"electron-log": "^4.1.1",
"electron-store": "^5.1.1",
"electron-updater": "^4.2.5",
"marked": "^2.0.0",
"moment": "^2.29.1",
"node-fetch": "^2.6.1",
"source-map-support": "^0.5.19",
"tmi.js": "^1.5.0",
"underscore": "^1.12.1",
"vue": "^2.6.12",
"vue-loader": "^15.9.1",
"vue-template-compiler": "^2.6.12",
"websocket": "^1.0.32"
},
"devDependencies": {
"electron": "^9.4.0",
"electron-builder": "^22.4.1",
"electron-webpack": "^2.8.2",
"electron-webpack-eslint": "^6.0.0",
"electron-webpack-vue": "^2.4.0",
"eslint": "^6.8.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-html": "^6.0.2",
"eslint-plugin-prettier": "^3.1.3",
"eslint-plugin-vue": "^7.0.0-alpha.1",
"prettier": "^2.0.5",
"webpack": "^4.43.0"
}
}