ddnet
Version:
A typescript npm package for interacting with data from ddnet.org
60 lines • 1.37 kB
JSON
{
"name": "ddnet",
"version": "0.8.1",
"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"
},
"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": "24.0.1",
"prettier": "3.5.3",
"rimraf": "^6.0.1",
"typedoc": "^0.28.5",
"typedoc-material-theme": "^1.4.0",
"typescript": "^5.8.3"
},
"dependencies": {
"@keyv/sqlite": "^4.0.4",
"axios": "^1.9.0",
"keyv": "^5.3.4",
"sharp": "^0.34.2",
"zod": "^3.25.63"
},
"types": "dist/DDNet.d.ts",
"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"
}
}