forked from Clawdi-AI/clawdi
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.17 KB
/
Copy pathpackage.json
File metadata and controls
50 lines (50 loc) · 1.17 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
{
"name": "clawdi",
"private": true,
"license": "MIT",
"workspaces": [
"apps/*",
"packages/*"
],
"catalog": {
"react": "19.2.4",
"react-dom": "19.2.4",
"@types/react": "^19.2.0",
"@types/react-dom": "^19.2.0",
"typescript": "^5.9.0",
"zod": "^4.3.6",
"tailwindcss": "^4.2.0",
"@tailwindcss/postcss": "^4.2.0",
"@tanstack/react-query": "^5.99.0",
"next": "16.2.4",
"next-themes": "^0.4.6",
"lucide-react": "^1.8.0",
"tailwind-merge": "^3.5.0",
"clsx": "^2.1.1"
},
"scripts": {
"dev": "turbo dev",
"build": "turbo build",
"typecheck": "turbo typecheck",
"test": "turbo test",
"check": "biome ci .",
"check:fix": "biome check --write .",
"generate-api": "openapi-typescript http://localhost:8000/openapi.json -o packages/shared/src/api/api.generated.ts",
"lint": "biome lint .",
"lint:fix": "biome lint --write .",
"format": "biome format --write .",
"prepare": "lefthook install"
},
"devDependencies": {
"@biomejs/biome": "^2.4.12",
"lefthook": "^2.1.6",
"openapi-typescript": "^7.13.0",
"turbo": "^2.9.6",
"typescript": "catalog:"
},
"engines": {
"node": ">=22",
"bun": ">=1.3.0"
},
"packageManager": "bun@1.3.13"
}