-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.8 KB
/
package.json
File metadata and controls
58 lines (58 loc) · 1.8 KB
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
{
"name": "cs-demo-downloader",
"version": "1.1.0",
"description": "Automatically download Counter-Strike demos of ranked, unranked, and wingman matches",
"main": "dist/index.js",
"type": "module",
"scripts": {
"start": "node --loader tsx src/index.ts",
"build": "rimraf dist && tsc",
"lint": "tsc --noEmit && eslint .",
"docker:build": "docker build . -t cs-demo-downloader:latest --target deploy",
"docker:run": "docker run --rm -ti -v $(pwd)/config:/config -v $(pwd)/demos:/demos cs-demo-downloader:latest"
},
"author": "",
"license": "MIT",
"dependencies": {
"axios": "^1.6.2",
"csgo-sharecode": "^3.1.1",
"fs-extra": "^11.2.0",
"globaloffensive": "^3.0.0",
"jsdom": "^23.0.1",
"p-queue": "^7.4.1",
"p-timeout": "^6.1.2",
"pino": "^8.16.2",
"pino-pretty": "^10.2.3",
"steam-session": "^1.7.1",
"steam-totp": "^2.1.2",
"steam-user": "^5.0.4",
"unbzip2-stream": "^1.4.3"
},
"devDependencies": {
"@tsconfig/node18": "^18.2.2",
"@tsconfig/strictest": "^2.0.2",
"@types/fs-extra": "^11.0.4",
"@types/globaloffensive": "^2.3.4",
"@types/jsdom": "^21.1.6",
"@types/node": "^18.19.0",
"@types/steam-totp": "^2.1.2",
"@types/steam-user": "^4.26.8",
"@types/unbzip2-stream": "^1.4.3",
"@typescript-eslint/eslint-plugin": "^6.13.1",
"@typescript-eslint/parser": "^6.13.1",
"eslint": "^8.54.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-airbnb-typescript": "^17.1.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-import": "^2.29.0",
"eslint-plugin-prettier": "^5.0.1",
"eslint-plugin-promise": "^6.1.1",
"prettier": "^3.1.0",
"rimraf": "^5.0.5",
"tsx": "^4.6.1",
"typescript": "^5.3.2"
},
"overrides": {
"tsconfig-paths": "^4.0.0"
}
}