AutoMod/api/package.json

33 lines
744 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",
2022-01-23 14:54:40 +01:00
"@types/monk": "^6.0.0",
2024-07-12 14:58:58 +02:00
"@types/ws": "^8.5.10",
2022-07-09 09:08:16 +02:00
"automod": "^0.1.0",
2024-07-12 14:58:58 +02:00
"dotenv": "^14.3.2",
"express": "^4.19.2",
2022-01-22 22:37:59 +01:00
"log75": "^2.2.0",
2022-01-23 14:54:40 +01:00
"monk": "^7.3.4",
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
}