-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
61 lines (61 loc) · 1.41 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
{
"name": "ddnet",
"version": "0.7.5",
"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 --plugin typedoc-material-theme --themeColor #1976d2",
"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": "ISC",
"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": "22.9.0",
"prettier": "3.4.2",
"rimraf": "^6.0.1",
"typedoc": "^0.27.2",
"typedoc-material-theme": "^1.1.0",
"typescript": "^5.6.3"
},
"dependencies": {
"@keyv/sqlite": "^4.0.1",
"axios": "^1.7.7",
"keyv": "^5.1.3",
"node-png": "^0.4.3",
"sharp": "^0.33.5",
"zod": "^3.23.8"
},
"types": "dist/DDNet.d.ts"
}