-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
120 lines (120 loc) · 3.85 KB
/
package.json
File metadata and controls
120 lines (120 loc) · 3.85 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
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
{
"name": "clawed-abode",
"version": "1.0.0",
"description": "A web interface for Claude Code running on your own machine",
"private": true,
"scripts": {
"dev": "next dev",
"build": "NODE_ENV=production next build",
"start": "next start",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"typecheck": "tsc --noEmit",
"format": "prettier --write .",
"format:check": "prettier --check .",
"db:generate": "prisma generate",
"db:migrate": "prisma migrate dev",
"db:push": "prisma db push",
"postinstall": "prisma generate",
"prepare": "husky",
"hash-password": "tsx scripts/hash-password.ts",
"test": "vitest",
"test:run": "vitest run",
"test:unit": "vitest run --config vitest.config.ts",
"test:integration": "vitest run --config vitest.integration.config.ts",
"test:e2e": "vitest run --config vitest.e2e.config.ts",
"test:coverage": "vitest run --coverage",
"test:component": "vitest run --config vitest.component.config.ts"
},
"dependencies": {
"@anthropic-ai/claude-agent-sdk": "^0.2.51",
"@anthropic-ai/sdk": "^0.74.0",
"@modelcontextprotocol/sdk": "^1.26.0",
"@prisma/client": "^5.22.0",
"@radix-ui/react-alert-dialog": "^1.1.15",
"@radix-ui/react-collapsible": "^1.1.12",
"@radix-ui/react-dialog": "^1.1.15",
"@radix-ui/react-label": "^2.1.8",
"@radix-ui/react-popover": "^1.1.15",
"@radix-ui/react-scroll-area": "^1.2.10",
"@radix-ui/react-select": "^2.2.6",
"@radix-ui/react-separator": "^1.1.8",
"@radix-ui/react-slider": "^1.3.6",
"@radix-ui/react-slot": "^1.2.4",
"@radix-ui/react-switch": "^1.2.6",
"@radix-ui/react-tabs": "^1.1.13",
"@radix-ui/react-tooltip": "^1.2.8",
"@tanstack/react-query": "^5.90.19",
"@trpc/client": "^11.8.1",
"@trpc/next": "^11.8.1",
"@trpc/react-query": "^11.8.1",
"@trpc/server": "^11.8.1",
"ansi-to-html": "^0.7.2",
"argon2": "^0.43.0",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"cmdk": "^1.1.1",
"dompurify": "^3.3.1",
"event-source-polyfill": "^1.0.31",
"get-port": "^7.1.0",
"lucide-react": "^0.562.0",
"marked": "^17.0.1",
"next": "^16.1.3",
"prisma": "^5.22.0",
"react": "^19.2.3",
"react-dom": "^19.2.3",
"simple-git": "^3.30.0",
"superjson": "^2.2.6",
"tailwind-merge": "^3.4.0",
"tailwindcss-animate": "^1.0.7",
"typescript": "^5.9.3",
"uuid": "^13.0.0",
"zod": "^4.3.5"
},
"devDependencies": {
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.2",
"@testing-library/user-event": "^14.6.1",
"@types/event-source-polyfill": "^1.0.5",
"@types/node": "^25.0.9",
"@types/react": "^19.2.8",
"@types/react-dom": "^19.2.3",
"@types/uuid": "^10.0.0",
"@vitest/coverage-v8": "^4.0.17",
"autoprefixer": "^10.4.23",
"eslint": "^9.39.2",
"eslint-config-next": "^16.1.3",
"eslint-config-prettier": "^10.1.8",
"husky": "^9.1.7",
"jsdom": "^27.4.0",
"lint-staged": "^16.2.7",
"postcss": "^8.5.6",
"prettier": "^3.8.0",
"tailwindcss": "^3.4.19",
"tsx": "^4.21.0",
"typescript-eslint": "^8.53.1",
"vitest": "^4.0.17"
},
"packageManager": "pnpm@10.26.2+sha512.0e308ff2005fc7410366f154f625f6631ab2b16b1d2e70238444dd6ae9d630a8482d92a451144debc492416896ed16f7b114a86ec68b8404b2443869e68ffda6",
"pnpm": {
"overrides": {
"@typescript-eslint/eslint-plugin": "$typescript-eslint",
"@typescript-eslint/parser": "$typescript-eslint",
"@typescript-eslint/utils": "$typescript-eslint",
"@typescript-eslint/type-utils": "$typescript-eslint"
},
"onlyBuiltDependencies": [
"@prisma/client",
"@prisma/engines",
"argon2",
"bcrypt",
"cpu-features",
"esbuild",
"prisma",
"protobufjs",
"sharp",
"ssh2",
"unrs-resolver"
]
}
}