monitor/core/package.json
2025-04-16 22:30:27 +07:00

89 lines
2.7 KiB
JSON

{
"name": "txadmin-core",
"version": "1.0.0",
"description": "The core package is the backend of txAdmin and handles running fxserver and the web server and every other internal backend stuff.",
"type": "module",
"scripts": {
"build": "cd ../ && npx tsx scripts/build/publish.ts",
"dev": "cd ../ && npx tsx scripts/build/dev.ts",
"test": "vitest",
"typecheck": "tsc -p tsconfig.json --noEmit | node ../scripts/typecheck-formatter.js",
"typecheck:full": "tsc -p tsconfig.json --noEmit",
"lint": "eslint ./**",
"lint:count": "eslint ./** -f ../scripts/lint-formatter.js",
"lint:fix": "eslint ./** --fix",
"license:report": "npx license-report > ../.reports/license/core.html"
},
"keywords": [],
"author": "André Tabarra",
"license": "MIT",
"dependencies": {
"@koa/cors": "^5.0.0",
"@koa/router": "^13.1.0",
"boxen": "^7.1.1",
"bytes": "^3.1.2",
"cookie": "^0.7.0",
"d3-array": "^3.2.4",
"dateformat": "^5.0.3",
"discord.js": "14.11.0",
"ejs": "^3.1.10",
"error-stack-parser": "^2.1.4",
"execa": "^5.1.1",
"fs-extra": "^9.1.0",
"fuse.js": "^7.0.0",
"got": "^13.0.0",
"is-localhost-ip": "^2.0.0",
"jose": "^4.15.4",
"js-yaml": "^4.1.0",
"koa": "^2.15.4",
"koa-bodyparser": "^4.4.1",
"koa-ratelimit": "^5.1.0",
"lodash": "^4.17.21",
"lowdb": "^6.1.0",
"mnemonist": "^0.39.8",
"mysql2": "^3.11.3",
"nanoid": "^4.0.2",
"nanoid-dictionary": "^4.3.0",
"node-polyglot": "^2.6.0",
"node-stream-zip": "^1.15.0",
"open": "7.1.0",
"openid-client": "^5.7.0",
"pidtree": "^0.6.0",
"pidusage": "^3.0.2",
"rotating-file-stream": "^3.2.5",
"slash": "^5.1.0",
"slug": "^8.2.3",
"socket.io": "^4.8.0",
"source-map-support": "^0.5.21",
"stream-json": "^1.9.1",
"string-argv": "^0.3.2",
"systeminformation": "^5.23.5",
"throttle-debounce": "^5.0.2",
"unicode-emoji-json": "^0.8.0",
"xss": "^1.0.15",
"zod": "^3.23.8",
"zod-validation-error": "^3.4.0"
},
"devDependencies": {
"@types/bytes": "^3.1.4",
"@types/d3-array": "^3.2.1",
"@types/dateformat": "^5.0.2",
"@types/ejs": "^3.1.5",
"@types/fs-extra": "^11.0.4",
"@types/js-yaml": "^4.0.9",
"@types/koa": "^2.15.0",
"@types/koa__cors": "^5.0.0",
"@types/koa__router": "^12.0.4",
"@types/koa-bodyparser": "^4.3.12",
"@types/koa-ratelimit": "^5.0.5",
"@types/nanoid-dictionary": "^4.2.3",
"@types/node": "^16.9.1",
"@types/pidusage": "^2.0.5",
"@types/semver": "^7.5.8",
"@types/slug": "^5.0.9",
"@types/source-map-support": "^0.5.10",
"@types/stream-json": "^1.7.7",
"windows-release": "^4.0.0"
}
}