-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
68 lines (68 loc) · 1.74 KB
/
Copy pathpackage.json
File metadata and controls
68 lines (68 loc) · 1.74 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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
{
"name": "claude-b",
"version": "0.7.0",
"description": "Background-capable Claude Code with async workflows and REST API",
"type": "module",
"main": "dist/cli/index.js",
"bin": {
"cb": "bin/cb"
},
"scripts": {
"dev": "tsup src/cli/index.ts src/daemon/index.ts --watch --format esm",
"build": "tsup src/cli/index.ts src/daemon/index.ts --format esm --dts --clean",
"test": "vitest",
"lint": "eslint src/",
"typecheck": "tsc --noEmit",
"start:daemon": "node dist/daemon/index.js"
},
"dependencies": {
"@anthropic-ai/sdk": "^0.74.0",
"@fastify/cors": "^10.0.0",
"@fastify/jwt": "^9.0.0",
"@fastify/rate-limit": "^10.0.0",
"@fastify/websocket": "^11.0.0",
"@speechmatics/batch-client": "^5.1.0",
"chalk": "^5.3.0",
"commander": "^12.1.0",
"fastify": "^5.0.0",
"nanoid": "^5.0.7",
"node-pty": "^1.0.0",
"node-telegram-bot-api": "^0.67.0",
"ora": "^8.1.0",
"strip-ansi": "^7.1.0",
"ws": "^8.18.0"
},
"devDependencies": {
"@types/node": "^22.10.0",
"@types/node-telegram-bot-api": "^0.64.13",
"@types/ws": "^8.18.1",
"@typescript-eslint/eslint-plugin": "^8.53.0",
"@typescript-eslint/parser": "^8.53.0",
"eslint": "^9.39.2",
"tsup": "^8.3.0",
"typescript": "^5.7.0",
"vitest": "^2.1.0"
},
"engines": {
"node": ">=20.0.0"
},
"keywords": [
"claude",
"ai",
"cli",
"background",
"async",
"anthropic",
"claude-code"
],
"author": "danimoya",
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "git+https://github.com/danimoya/Claude-B.git"
},
"homepage": "https://github.com/danimoya/Claude-B#readme",
"bugs": {
"url": "https://github.com/danimoya/Claude-B/issues"
}
}