This commit is contained in:
xiao.xiong
2025-10-19 23:46:41 +08:00
parent 7bbf6e6a18
commit 39a70de606
5 changed files with 394 additions and 0 deletions

19
server/package.json Normal file
View File

@@ -0,0 +1,19 @@
{
"name": "server",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"dev": "bun run --hot --watch src/index.ts",
"pm2": "pm2 start src/index.ts --name dnake-server --interpreter bun --watch"
},
"keywords": [],
"author": "",
"license": "ISC",
"packageManager": "pnpm@10.11.0",
"devDependencies": {
"@kevisual/router": "^0.0.29",
"@types/bun": "^1.3.0",
"@types/node": "^24.8.1"
}
}