AutoMod/api/package.json
2024-07-12 20:58:58 +08:00

32 lines
744 B
JSON

{
"name": "api",
"version": "1.0.0",
"exports": "./index",
"type": "module",
"scripts": {
"build": "rm -rf dist && bun build ./src/index.ts --outdir=dist --target=bun --sourcemap",
"start": "bun dist/index.js",
"dev": "bun run build && bun run start"
},
"dependencies": {
"@types/express": "^4.17.21",
"@types/monk": "^6.0.0",
"@types/ws": "^8.5.10",
"automod": "^0.1.0",
"dotenv": "^14.3.2",
"express": "^4.19.2",
"log75": "^2.2.0",
"monk": "^7.3.4",
"redis": "^4.6.15",
"ulid": "^2.3.0",
"ws": "^8.18.0"
},
"devDependencies": {
"@types/bun": "^1.1.6",
"bun-types": "latest"
},
"module": "index.ts",
"peerDependencies": {
"typescript": "^4.9.5"
}
}