bun-terry/package.json

25 lines
589 B
JSON
Raw Permalink Normal View History

2024-03-05 02:05:04 +00:00
{
2024-04-20 04:02:06 +00:00
"name": "bot-template",
"module": "src/index.ts",
"devDependencies": {
"@discordeno/types": "^19.0.0-next.d81b28a",
"@types/bun": "latest"
},
"peerDependencies": {
"typescript": "^5.0.0"
},
"type": "module",
"dependencies": {
"@discordeno/bot": "^19.0.0-next.d81b28a",
"@discordeno/rest": "^19.0.0-next.d81b28a",
2024-09-24 05:10:49 +00:00
"ollama": "^0.5.0",
"soap": "^1.1.4"
2024-04-20 04:02:06 +00:00
},
"scripts": {
"dev": "bun run --watch src/index.ts",
"bot:list": "bun run bin/list.js",
"bot:delete": "bun run bin/delete.js",
"bot:update": "bun run bin/update.js"
}
2024-03-05 06:11:57 +00:00
}