Files
ButlerBot/package.json
Jack 3a9fc1897a
All checks were successful
Build and Publish Docker Image / build_and_push (push) Successful in 42s
Improve typing.
2024-09-16 14:13:37 +00:00

39 lines
951 B
JSON

{
"name": "butlerbot",
"version": "1.0.0",
"main": "dist/index.js",
"scripts": {
"start": "node dist/index.js",
"build": "tsup src/index.ts --minify",
"register-slash-commands": "tsx src/registerSlashCommands.ts",
"dev": "tsx watch src/index.ts",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "https://git.3t.network/terriblecodeclub/butlerbot.git"
},
"author": "Butlersaurus",
"license": "ISC",
"description": "",
"dependencies": {
"axios": "^1.7.7",
"date-fns": "^3.6.0",
"discord.js": "^14.16.1",
"dotenv": "^16.4.5",
"glob": "^11.0.0",
"mongodb": "^6.8.1",
"replicate": "^0.32.1"
},
"devDependencies": {
"@types/glob": "^8.1.0",
"@types/node": "^20.4.0",
"eslint": "^9.9.1",
"prettier": "^3.3.3",
"ts-node": "^10.9.1",
"tsup": "^8.2.4",
"tsx": "^4.19.1",
"typescript": "^5.6.2"
}
}