Files
discordeno/examples/bigbot-19/package.json
Fleny 2b1da8d2cd Add localization
The "command versioning" system works the same say as before, but instead of a command version the code updates the commands every time they change based on the SHA1 of the commands
2024-06-15 22:02:09 +02:00

38 lines
1.2 KiB
JSON

{
"name": "dd-bigbot",
"version": "1.0.0",
"description": "A scalable bot for big bot developers.",
"main": "dist/index.js",
"type": "module",
"license": "ISC",
"private": true,
"packageManager": "yarn@4.0.2",
"scripts": {
"start:bot": "node dist/bot/index.js",
"start:rest": "node dist/rest/index.js",
"start:gateway": "node dist/gateway/index.js",
"build": "swc src --strip-leading-paths --delete-dir-on-start --out-dir dist",
"build:watch": "swc src --strip-leading-paths --delete-dir-on-start --watch --out-dir dist",
"dev:bot": "node --watch --watch-preserve-output dist/bot/index.js",
"dev:rest": "node --watch --watch-preserve-output dist/rest/index.js",
"dev:gateway": "node --watch --watch-preserve-output dist/gateway/index.js",
"setup-dd": ""
},
"dependencies": {
"@discordeno/bot": "19.0.0-next.ad7e74c",
"@fastify/multipart": "^8.3.0",
"@influxdata/influxdb-client": "^1.33.2",
"@prisma/client": "^5.15.0",
"amqplib": "^0.10.4",
"fastify": "^4.27.0"
},
"devDependencies": {
"@swc/cli": "^0.3.12",
"@swc/core": "^1.5.25",
"@types/amqplib": "^0.10.5",
"@types/node": "^20.14.2",
"prisma": "^5.15.0",
"typescript": "^5.4.5"
}
}