-
-
Notifications
You must be signed in to change notification settings - Fork 160
/
package.json
106 lines (106 loc) · 3.28 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
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
{
"name": "bettercrewlink",
"version": "3.1.3",
"license": "GPL-3.0-or-later",
"description": "Free, open, Among Us Proximity Voice Chat",
"repository": {
"type": "git",
"url": "https://github.com/OhMyGuus/BetterCrewLink.git"
},
"funding": {
"type": "individual",
"url": "https://www.paypal.com/donate?hosted_button_id=KS43BDTGN76JQ"
},
"author": {
"name": "OhMyGuus",
"email": "info@guus.ninja",
"url": "https://bettercrewlink.app"
},
"scripts": {
"postinstall": "electron-builder install-app-deps",
"lint": "eslint src",
"dev": "electron-webpack dev",
"compile": "electron-webpack",
"dist": "yarn compile && electron-builder --win --x64 --ia32",
"dist:32": "yarn compile && electron-builder --win --ia32",
"dist:64": "yarn compile && electron-builder --win --x64",
"dist:linux": "yarn compile && electron-builder --linux --x64",
"publish": "yarn compile && electron-builder --win --x64 --ia32 --publish always ",
"publish:linux": "yarn compile && electron-builder --x64 --linux --publish always"
},
"dependencies": {
"@emotion/react": "^11.9.3",
"@emotion/styled": "^11.9.3",
"@mui/icons-material": "^5.8.4",
"@mui/material": "^5.8.6",
"@mui/styles": "^5.8.6",
"color": "^3.1.3",
"cross-spawn": "^7.0.3",
"electron-devtools-installer": "^3.2.0",
"electron-log": "^4.3.2",
"electron-overlay-window": "https://github.com/OhMyGuus/electron-overlay-window",
"electron-store": "^8.0.1",
"electron-updater": "^4.3.5",
"electron-window-state": "^5.0.3",
"i18next": "^19.9.2",
"jimp": "^0.16.1",
"memoryjs": "https://github.com/OhMyGuus/memoryjs",
"minimist": "^1.2.5",
"node-fetch": "2",
"node-keyboard-watcher": "https://github.com/OhMyGuus/node-keyboard-watcher",
"path-intersection": "^2.2.0",
"pretty-bytes": "^5.5.0",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-i18next": "^9.0.10",
"react-tooltip-lite": "^1.12.0",
"registry-js": "^1.15.1",
"simple-peer": "^9.11.0",
"socket.io-client": "2.4.0",
"source-code-pro": "^2.30.2",
"source-map-support": "^0.5.16",
"structron": "^0.2.4",
"typeface-varela": "^1.1.13",
"valid-url": "^1.0.9",
"vdf-parser": "^1.2.0",
"webrtc-adapter": "^7.7.0"
},
"devDependencies": {
"@types/color": "^3.0.1",
"@types/cross-spawn": "^6.0.2",
"@types/deep-equal": "^1.0.1",
"@types/i18next": "^13.0.0",
"@types/js-yaml": "^3.12.5",
"@types/node": "12",
"@types/node-fetch": "2",
"@types/pretty-bytes": "^5.2.0",
"@types/react": "^17.0.2",
"@types/react-dom": "^17.0.2",
"@types/simple-peer": "^9.6.1",
"@types/socket.io-client": "^1.4.36",
"@types/valid-url": "^1.0.3",
"@types/webpack-env": "^1.15.3",
"@typescript-eslint/eslint-plugin": "^4.9.1",
"@typescript-eslint/parser": "^4.9.1",
"arraybuffer-loader": "^1.0.8",
"electron": "11.x.x",
"electron-builder": "22.14.12",
"electron-webpack": "^2.8.2",
"electron-webpack-ts": "^4.0.1",
"eslint": "^7.15.0",
"eslint-config-prettier": "^7.1.0",
"eslint-plugin-prettier": "^3.3.0",
"eslint-plugin-react": "^7.21.5",
"prettier": "^2.2.1",
"prettier-eslint": "^12.0.0",
"typescript": "4.6.x",
"webpack": "~4.42.1",
"webpack-dev-server": "^3.11.0"
},
"electronWebpack": {
"renderer": {
"webpackConfig": "webpack.renderer.config.js",
"webpackDllConfig": "webpack.renderer.config.js"
}
}
}