forked from zbanks/CrewLink
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
98 lines (98 loc) · 2.96 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
{
"name": "crewlink",
"version": "2.0.1",
"license": "GPL-3.0-or-later",
"description": "Free, open, Among Us proximity voice chat",
"repository": {
"type": "git",
"url": "https://github.com/TheGreatMcPain/crewlink.git"
},
"funding": {
"type": "individual",
"url": "https://paypal.me/ottomated"
},
"author": {
"name": "Ottomated",
"email": "[email protected]",
"url": "https://ottomated.net"
},
"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 --linux --x64 --publish always"
},
"iohook": {
"targets": [
"electron-80"
],
"platforms": [
"linux",
"win32"
],
"arches": [
"x64"
]
},
"dependencies": {
"@material-ui/core": "^4.11.2",
"@material-ui/icons": "^4.11.2",
"@material-ui/lab": "^4.0.0-alpha.57",
"axios": "^0.21.0",
"cross-spawn": "^7.0.3",
"deep-equal": "^2.0.5",
"electron-overlay-window": "^1.0.4",
"electron-store": "^6.0.1",
"electron-updater": "^4.3.5",
"electron-window-state": "^5.0.3",
"iohook": "git://github.com/zbanks/iohook.git#0.7.2_zbanks",
"memoryjs": "https://github.com/TheGreatMcPain/memoryjs.git",
"pretty-bytes": "^5.5.0",
"react": "^17.0.1",
"react-dom": "^17.0.1",
"registry-js": "^1.12.0",
"simple-peer": "^9.8.0",
"socket.io-client": "^2.3.1",
"source-map-support": "^0.5.16",
"structron": "^0.2.4",
"valid-url": "^1.0.9"
},
"devDependencies": {
"@babel/core": "^7.12.10",
"@babel/preset-env": "^7.12.11",
"@babel/preset-react": "^7.12.1",
"@types/color": "^3.0.1",
"@types/cross-spawn": "^6.0.2",
"@types/deep-equal": "^1.0.1",
"@types/js-yaml": "^3.12.5",
"@types/node": "12",
"@types/pretty-bytes": "^5.2.0",
"@types/react": "^16.9.53",
"@types/react-dom": "^16.9.8",
"@types/simple-peer": "^9.6.1",
"@types/socket.io-client": "^1.4.34",
"@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": "9.3.3",
"electron-builder": "^22.9.1",
"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.0.3",
"webpack": "~4.42.1"
}
}