-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1.24 KB
/
package.json
File metadata and controls
43 lines (43 loc) · 1.24 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
{
"name": "billy-bullshit",
"version": "1.0.0",
"description": "Billy Bullshit - A no-BS AI agent on Cloudflare Workers",
"main": "src/index.ts",
"type": "module",
"scripts": {
"dev": "wrangler dev",
"deploy": "wrangler deploy",
"deploy:production": "wrangler deploy --env production",
"tail": "wrangler tail",
"build": "esbuild src/index.ts --bundle --format=esm --outfile=dist/index.js",
"typecheck": "tsc --noEmit",
"setup:kv": "bash scripts/setup-kv.sh",
"deploy:prod": "bash scripts/deploy-production.sh",
"test:deployment": "bash scripts/test-deployment.sh"
"test": "vitest run",
"test:watch": "vitest --watch",
"validate": "npm run typecheck && npm run build"
},
"keywords": [
"cloudflare-workers",
"ai-agent",
"no-bs",
"billy-bullshit"
],
"author": "ChittyOS Team",
"license": "MIT",
"devDependencies": {
"@cloudflare/kv-asset-handler": "^0.4.2",,
"@cloudflare/workers-types": "^4.20260228.0",
"@types/node": "^20.10.6",
"@vitest/coverage-v8": "^1.6.1",
"esbuild": "^0.19.11",
"typescript": "^5.3.3",
"vitest": "^4.0.18",
"wrangler": "^4.67.0"
},
"dependencies": {
"@anthropic-ai/sdk": "^0.78.0",
"hono": "^4.12.1"
}
}