UNPKG

ddnet

Version:

A typescript npm package for interacting with data from ddnet.org

60 lines 1.37 kB
{ "name": "ddnet", "version": "0.10.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", "prettier": "3.8.1", "rimraf": "^6.1.2", "typedoc": "^0.28.16", "typedoc-material-theme": "^1.4.1", "typescript": "^5.9.3" }, "dependencies": { "@keyv/sqlite": "^4.0.8", "axios": "^1.13.3", "keyv": "^5.6.0", "sharp": "^0.34.5", "zod": "^4.3.6" }, "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" } }