modpack-server/package.json

25 lines
604 B
JSON
Raw Permalink Normal View History

2024-02-12 07:43:32 +00:00
{
"name": "bun-terry",
"module": "src/index.js",
"devDependencies": {
"@types/bun": "latest",
"@discordeno/types": "^19.0.0-next.d81b28a"
},
"peerDependencies": {
"typescript": "^5.0.0"
},
"scripts": {
"dev": "NODE_ENV=development bun --watch ./src/index.js",
"start": "bun ./src/index.js",
"bot:delete": "bun ./bin/delete.js",
"bot:update": "bun ./bin/update.js",
"bot:list": "bun ./bin/list.js"
},
"type": "module",
"dependencies": {
"@discordeno/bot": "^19.0.0-next.d81b28a",
"@discordeno/rest": "^19.0.0-next.d81b28a",
"@discordeno/utils": "^19.0.0-next.d81b28a"
}
}