-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
77 lines (77 loc) · 1.77 KB
/
package.json
File metadata and controls
77 lines (77 loc) · 1.77 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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
{
"name": "ddnet",
"version": "0.10.4",
"description": "A typescript npm package for interacting with data from ddnet.org",
"main": "dist/DDNet.js",
"exports": {
".": "./dist/DDNet.js",
"./master": "./dist/Master.js"
},
"engines": {
"node": ">=20"
},
"scripts": {
"build": "pnpm cleanup && tsc --project tsconfig.json",
"typedoc": "typedoc",
"cleanup": "rimraf dist",
"prettier": "prettier . --write",
"dev": "pnpm build && node --enable-source-maps dist/DDNet.js"
},
"keywords": [
"ddnet",
"ddrace",
"network",
"teeworlds",
"ddracenetwork",
"ddnetwork",
"teedata"
],
"type": "module",
"author": "thatboisans",
"license": "GPL-3.0-only",
"homepage": "https://ddnet.js.org",
"bugs": {
"url": "https://github.com/Sans3108/DDNet/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/Sans3108/DDNet.git"
},
"funding": "https://ko-fi.com/sansy",
"files": [
"dist/**/*"
],
"devDependencies": {
"@types/node": "^25",
"prettier": "3.8.3",
"rimraf": "^6.1.3",
"typedoc": "^0.28.19",
"typedoc-material-theme": "^1.4.1",
"typescript": "^6.0.3"
},
"dependencies": {
"@keyv/sqlite": "^4.0.8",
"axios": "^1.15.2",
"keyv": "^5.6.0",
"sharp": "^0.34.5",
"zod": "^4.3.6"
},
"types": "dist/DDNet.d.ts",
"packageManager": "pnpm@10.33.0",
"pnpm": {
"onlyBuiltDependencies": [
"sharp",
"sqlite3"
],
"overrides": {
"tar@<7.5.7": ">=7.5.7",
"tar@<=7.5.2": ">=7.5.3",
"tar@<7.5.8": ">=7.5.8",
"@tootallnate/once@<3.0.1": ">=3.0.1",
"tar@<=7.5.9": ">=7.5.10",
"tar@<=7.5.10": ">=7.5.11",
"tar@<=7.5.3": ">=7.5.4",
"follow-redirects@<=1.15.11": ">=1.16.0"
}
}
}