joel joel joel

This commit is contained in:
2024-05-02 13:22:15 +02:00
commit 73200479bd
20 changed files with 684 additions and 0 deletions

20
package.json Normal file
View File

@@ -0,0 +1,20 @@
{
"name": "crunk-bun",
"module": "index.ts",
"scripts": {
"start": "bun run index.index",
"build": "bun build --minify --sourcemap index.ts --outdir ./build --target bun"
},
"type": "module",
"devDependencies": {
"@types/bun": "latest"
},
"peerDependencies": {
"typescript": "^5.0.0"
},
"dependencies": {
"@huggingface/inference": "^2.6.7",
"discord.js": "^14.14.1",
"openai": "^4.36.0"
}
}