og-edopro-server-ts/package.json
github-actions[bot] c028fcd495
chore(main): release 2.14.0 (#240)
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
2026-08-05 20:47:30 -04:00

89 lines
3.2 KiB
JSON

{
"engines": {
"node": ">=24.11.0"
},
"name": "edopro",
"version": "2.14.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "jest",
"test:watch": "jest --watch",
"dev": "ts-node-dev --inspect=0.0.0.0:9229 -r tsconfig-paths/register --respawn --poll --require dotenv/config src/index.ts ",
"clean": "node -e \"require('fs').rmSync('dist', { recursive: true, force: true })\"",
"build": "npm run clean && tsc && tsc-alias -p tsconfig.json",
"start": "npm run build && node --env-file=.env ./dist/src/index.js",
"lint": "biome lint",
"lint:fix": "biome check --write",
"format": "biome format --write",
"check": "biome check",
"prepare": "husky",
"create-user": "ts-node-dev -r tsconfig-paths/register --respawn --poll --require dotenv/config src/utils/create-user.ts",
"migrate-users": "ts-node-dev -r tsconfig-paths/register --respawn --poll --require dotenv/config src/utils/migrate-user-from-redis-to-postgres.ts",
"migration:generate": "ts-node -r tsconfig-paths/register --require dotenv/config ./node_modules/typeorm/cli.js migration:generate -d ./src/evolution-types/src/data-source.ts ./src/evolution-types/src/migrations/$npm_config_name",
"migration:run": "ts-node -r tsconfig-paths/register --require dotenv/config ./node_modules/typeorm/cli.js migration:run -d ./src/evolution-types/src/data-source.ts",
"migration:revert": "ts-node -r tsconfig-paths/register --require dotenv/config ./node_modules/typeorm/cli.js migration:revert -d ./src/evolution-types/src/data-source.ts",
"perf:protocol": "ts-node -r tsconfig-paths/register src/utils/perf/benchmark-protocol.ts",
"perf:ipc": "ts-node -r tsconfig-paths/register src/utils/perf/benchmark-node-cpp-ipc.ts"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@biomejs/biome": "2.5.0",
"@commitlint/cli": "^20.1.0",
"@commitlint/config-conventional": "^20.0.0",
"@faker-js/faker": "^9.2.0",
"@types/bcrypt": "^6.0.0",
"@types/better-sqlite3": "^7.6.13",
"@types/express": "^5.0.5",
"@types/jest": "^30.0.0",
"@types/node": "^24.10.1",
"@types/ws": "^8.18.1",
"husky": "^9.1.7",
"jest": "^30.2.0",
"jest-mock-extended": "^4.0.1",
"lint-staged": "^16.2.7",
"swc-loader": "^0.2.6",
"ts-jest": "^29.4.11",
"ts-node-dev": "^2.0.0",
"tsc-alias": "^1.8.16",
"tsconfig-paths": "^4.2.0",
"typescript": "^6.0.3"
},
"dependencies": {
"@types/shuffle-array": "^1.0.5",
"array-shuffle": "^4.0.0",
"async-mutex": "^0.5.0",
"bcrypt": "^6.0.0",
"better-lock": "^3.2.0",
"better-sqlite3": "^12.6.2",
"cheerio": "^1.1.2",
"diod": "^3.0.0",
"dotenv": "^17.2.3",
"express": "^5.1.0",
"ioredis": "^5.8.2",
"koishipro-core.js": "^1.5.2",
"load-json-file": "^7.0.1",
"lzma-native": "^8.0.6",
"nfkit": "^1.0.37",
"pg": "^8.16.3",
"pino": "^10.1.0",
"pino-pretty": "^13.1.2",
"reflect-metadata": "^0.2.2",
"rxjs": "^7.8.2",
"shuffle-array": "^1.0.1",
"simple-git": "^3.30.0",
"typeorm": "^0.3.27",
"winston": "^3.18.3",
"ws": "^8.18.3",
"ygopro-deck-encode": "^1.0.16",
"ygopro-lflist-encode": "^1.0.3",
"ygopro-msg-encode": "^1.3.0",
"yuzuthread": "^1.0.10",
"zod": "^4.3.6"
},
"lint-staged": {
"*.{js,ts,mjs,cjs,json,jsonc}": "biome check --write --no-errors-on-unmatched"
}
}