Files
discordeno/examples/nodejs-19/package.json
Fleny a3d73ea94a Update nodejs template
Discordeno.js (DD v13) -> DD v19 "raw"

Currently the permission checking is not working correctly
2024-06-07 22:11:53 +02:00

27 lines
688 B
JSON

{
"name": "dd-beginner-bot",
"version": "1.0.0",
"description": "An example bot for beginner developers to start coding discord bots.",
"main": "dist/index.js",
"type": "module",
"license": "ISC",
"private": true,
"packageManager": "yarn@4.0.2",
"scripts": {
"start": "node dist/index.js",
"build": "swc src --strip-leading-paths --delete-dir-on-start --out-dir dist",
"setup-dd": ""
},
"dependencies": {
"@discordeno/bot": "19.0.0-next.ad7e74c",
"dd-cache-proxy": "^2.1.1",
"dotenv": "^16.4.5"
},
"devDependencies": {
"@swc/cli": "^0.3.12",
"@swc/core": "^1.5.25",
"@types/node": "^20.14.2",
"typescript": "^5.4.5"
}
}