-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
84 lines (84 loc) · 2.54 KB
/
package.json
File metadata and controls
84 lines (84 loc) · 2.54 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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
{
"name": "claudebench",
"version": "2.0.0",
"description": "Redis-first event-driven benchmarking framework with swarm intelligence for distributed task orchestration",
"private": true,
"license": "MIT",
"type": "module",
"author": "FBLGIT JUANAKO.AI",
"repository": {
"type": "git",
"url": "git+https://github.com/fblgit/claudebench.git"
},
"bugs": {
"url": "https://github.com/fblgit/claudebench/issues"
},
"homepage": "https://github.com/fblgit/claudebench#readme",
"keywords": [
"event-driven",
"redis",
"benchmarking",
"swarm-intelligence",
"distributed-systems",
"task-orchestration",
"mcp",
"jsonrpc"
],
"workspaces": [
"apps/*",
"packages/*",
"docs"
],
"scripts": {
"check": "oxlint",
"prepare": "husky",
"dev": "turbo dev",
"build": "turbo build",
"check-types": "turbo check-types",
"dev:native": "turbo -F native dev",
"dev:web": "turbo -F web dev",
"dev:server": "turbo -F server dev",
"dev:inference": "turbo -F inference dev",
"dev:docs": "turbo -F claudebench-docs dev",
"db:push": "turbo -F server db:push",
"db:studio": "turbo -F server db:studio",
"db:generate": "turbo -F server db:generate",
"db:migrate": "turbo -F server db:migrate",
"db:start": "turbo -F server db:start",
"db:watch": "turbo -F server db:watch",
"db:stop": "turbo -F server db:stop",
"db:down": "turbo -F server db:down",
"db:backup": "bun scripts/db-backup.ts",
"db:restore": "bun scripts/db-restore.ts",
"db:flush": "bun scripts/db-flush.ts",
"test": "turbo test",
"test:server": "turbo -F server test",
"test:web": "turbo -F web test",
"test:contract": "turbo -F server test:contract",
"test:integration": "turbo -F server test:integration",
"test:watch": "turbo -F server test:watch",
"relay": "bun scripts/relay.ts",
"relay:worker1": "bun scripts/relay.ts worker-1",
"relay:worker2": "bun scripts/relay.ts worker-2",
"relay:worker3": "bun scripts/relay.ts worker-3"
},
"dependencies": {
"@git-diff-view/react": "^0.0.32",
"@radix-ui/react-accordion": "^1.2.12",
"@radix-ui/react-tooltip": "^1.2.8",
"diff2html": "^3.4.52",
"fetch-to-node": "^2.1.0",
"ts-prune": "^0.10.3"
},
"devDependencies": {
"@biomejs/biome": "^2.2.0",
"husky": "^9.1.7",
"lint-staged": "^16.1.2",
"oxlint": "^1.12.0",
"turbo": "^2.5.4"
},
"lint-staged": {
"**/*.{js,mjs,cjs,jsx,ts,mts,cts,tsx,vue,astro,svelte}": "oxlint"
},
"packageManager": "bun@1.2.20"
}