28 lines
678 B
JSON
28 lines
678 B
JSON
{
|
|
"name": "@opencode/discord",
|
|
"version": "0.1.0",
|
|
"private": true,
|
|
"type": "module",
|
|
"scripts": {
|
|
"db:init": "bun run src/db/init.ts",
|
|
"dev": "bun run --watch src/index.ts",
|
|
"dev:setup": "bun run db:init",
|
|
"start": "bun run src/index.ts",
|
|
"build": "bun build src/index.ts --target=bun --outdir=dist",
|
|
"typecheck": "tsc --noEmit",
|
|
"check": "bun run typecheck && bun run build"
|
|
},
|
|
"dependencies": {
|
|
"discord.js": "^14",
|
|
"@daytonaio/sdk": "latest",
|
|
"@opencode-ai/sdk": "latest",
|
|
"effect": "^3",
|
|
"zod": "^3"
|
|
},
|
|
"devDependencies": {
|
|
"@types/bun": "latest",
|
|
"@types/node": "^22",
|
|
"typescript": "^5"
|
|
}
|
|
}
|