-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
59 lines (59 loc) · 1.84 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
{
"name": "csgo-chaos-mod-voting",
"version": "1.4.0",
"description": "Connects your Twitch and YouTube account to your CS:GO server to pull votes and display a voting overlay",
"main": "app/main.js",
"scripts": {
"start": "electron .",
"watch": "node -e \"require('fs-extra').emptyDir('./build');\" && webpack --config webpack.dev.js --watch",
"compile": "webpack --config webpack.common.js",
"build": "set \"GENERATE_SOURCEMAP=false\" && npm run compile && electron-builder",
"buildonly": "electron-builder"
},
"keywords": [],
"author": "BOINK",
"license": "ISC",
"dependencies": {
"electron-preferences": "^2.8.1",
"electron-store": "^8.1.0",
"rcon-srcds": "^2.0.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"tmi.js": "^1.8.5",
"youtube-chat": "^2.1.1"
},
"devDependencies": {
"@babel/core": "^7.18.10",
"@babel/preset-env": "^7.18.10",
"@babel/preset-react": "^7.18.6",
"babel-loader": "^8.2.5",
"css-loader": "^6.7.1",
"css-minimizer-webpack-plugin": "^4.2.2",
"electron": "^22.0.3",
"electron-builder": "^23.6.0",
"mini-css-extract-plugin": "^2.6.1",
"style-loader": "^3.3.1",
"terser-webpack-plugin": "^5.3.6",
"uglify-js": "^3.17.4",
"webpack": "^5.74.0",
"webpack-cli": "^4.10.0"
},
"build": {
"appId": "com.csgochaosmod.app",
"productName": "CS:GO Chaos Mod Voting",
"target": "NSIS",
"icon": "./icon.png",
"nsis": {
"oneClick": true
},
"files": [
"app/",
"build/app.js",
"build/app.css",
"index.html",
"favicon.ico",
"icon.png",
"!src/"
]
}
}