-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
36 lines (36 loc) · 1.05 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
{
"name": "valorant-autorecord",
"version": "1.1.3",
"description": "",
"main": "build/index.js",
"type": "module",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "node ./build/index.js",
"build": "tsc",
"watch": "tsc --watch",
"package": "tsc && esbuild ./build/index.js --bundle --platform=node --inject:./src/standaloneErrorHandler.js --outfile=./build/index.cjs --allow-overwrite && pkg ./build/index.cjs --targets node16-windows-x64 --compress brotli --output ./build/Valorant-AutoRecord"
},
"keywords": [],
"author": "techchrism",
"license": "MIT",
"devDependencies": {
"@types/ini": "^4.1.0",
"@types/mustache": "^4.2.1",
"@types/node": "^18.6.1",
"@types/tail": "^2.2.2",
"@types/ws": "^8.5.3",
"esbuild": "^0.15.5",
"pkg": "^5.8.0",
"typescript": "^4.7.4"
},
"dependencies": {
"ee-ts": "^1.0.2",
"ini": "^4.1.1",
"mustache": "^4.2.0",
"node-fetch": "^3.2.9",
"obs-websocket-js": "^5.0.0",
"tail": "^2.2.6",
"ws": "^8.8.1"
}
}