AutoMod/api/package.json

32 lines
718 B
JSON
Raw Normal View History

2022-01-22 20:51:29 +01:00
{
"name": "api",
"version": "1.0.0",
"exports": "./index",
"type": "module",
"scripts": {
2024-07-12 14:58:58 +02:00
"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"
2022-01-22 20:51:29 +01:00
},
"dependencies": {
2024-07-12 14:58:58 +02:00
"@types/express": "^4.17.21",
2024-07-13 05:29:49 +02:00
"@types/ws": "^8.5.11",
2022-07-09 09:08:16 +02:00
"automod": "^0.1.0",
2024-07-14 11:01:31 +02:00
"dotenv": "^16.4.5",
2024-07-12 14:58:58 +02:00
"express": "^4.19.2",
2024-07-14 11:01:31 +02:00
"log75": "^3.0.1",
2024-07-13 14:58:10 +02:00
"mongodb": "^6.8.0",
2024-07-12 14:58:58 +02:00
"redis": "^4.6.15",
"ulid": "^2.3.0",
2024-07-12 14:58:58 +02:00
"ws": "^8.18.0"
},
"devDependencies": {
2024-07-12 14:58:58 +02:00
"@types/bun": "^1.1.6",
"bun-types": "latest"
},
2024-07-12 14:58:58 +02:00
"module": "index.ts",
"peerDependencies": {
"typescript": "^4.9.5"
2022-07-09 09:08:16 +02:00
}
2022-01-22 20:51:29 +01:00
}