Files
discordeno/examples/advanced/package.json
2025-02-12 19:23:28 +01:00

24 lines
552 B
JSON

{
"name": "dd-advanced-bot",
"version": "1.0.0",
"description": "A bit more advanced bot that has some permission handling and slash command options.",
"main": "dist/index.js",
"type": "module",
"license": "ISC",
"private": true,
"packageManager": "yarn@4.6.0",
"scripts": {
"start": "node dist/index.js",
"build": "tsc"
},
"dependencies": {
"@discordeno/bot": "20.0.0",
"dd-cache-proxy": "^2.5.0",
"dotenv": "^16.4.5"
},
"devDependencies": {
"@types/node": "^22.9.0",
"typescript": "^5.6.3"
}
}