-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
88 lines (88 loc) · 2.44 KB
/
package.json
File metadata and controls
88 lines (88 loc) · 2.44 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
{
"name": "autarch",
"version": "0.1.3",
"private": true,
"license": "Apache-2.0",
"type": "module",
"scripts": {
"dev": "bun --hot src/backend/index.ts",
"start": "NODE_ENV=production bun src/backend/index.ts",
"build": "bun run build.ts",
"build:all": "bun run build-all.ts",
"lint": "biome check .",
"lint:fix": "biome check --write .",
"typecheck": "tsc --noEmit",
"test": "bun test --concurrent"
},
"dependencies": {
"@ai-sdk/amazon-bedrock": "^4.0.89",
"@ai-sdk/anthropic": "^3.0.66",
"@ai-sdk/google": "^3.0.58",
"@ai-sdk/openai": "^3.0.50",
"@ai-sdk/openai-compatible": "^2.0.38",
"@ai-sdk/xai": "^3.0.77",
"@aws-sdk/client-bedrock": "^3.1024.0",
"@aws-sdk/credential-providers": "^3.1024.0",
"@hookform/resolvers": "^5.2.2",
"@modelcontextprotocol/sdk": "^1.29.0",
"@radix-ui/react-avatar": "^1.1.11",
"@radix-ui/react-checkbox": "^1.3.3",
"@radix-ui/react-collapsible": "^1.1.12",
"@radix-ui/react-dialog": "^1.1.15",
"@radix-ui/react-dropdown-menu": "^2.1.16",
"@radix-ui/react-label": "^2.1.8",
"@radix-ui/react-progress": "^1.1.8",
"@radix-ui/react-radio-group": "^1.3.8",
"@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-slot": "^1.2.4",
"@radix-ui/react-tabs": "^1.1.13",
"@radix-ui/react-tooltip": "^1.2.8",
"@tailwindcss/typography": "^0.5.19",
"@zip.js/zip.js": "^2.8.26",
"ai": "^6.0.146",
"bun-plugin-tailwind": "^0.1.2",
"bun-threads": "^1.1.1",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"consola": "^3.4.2",
"diff": "^8.0.4",
"kysely": "^0.28.15",
"kysely-bun-sqlite": "^0.4.0",
"lucide-react": "^0.562.0",
"open": "^11.0.0",
"radix-ui": "^1.4.3",
"react": "^19.2.4",
"react-dom": "^19.2.4",
"react-hook-form": "^7.72.1",
"react-markdown": "^10.1.0",
"react-resizable-panels": "^4.9.0",
"recharts": "^3.8.1",
"remark-gfm": "^4.0.1",
"shiki": "^3.23.0",
"sonner": "^2.0.7",
"tailwind-merge": "^3.5.0",
"temp": "^0.9.4",
"ts-morph": "^27.0.2",
"wouter": "^3.9.0",
"zod": "^4.3.6",
"zustand": "^5.0.12"
},
"devDependencies": {
"@biomejs/biome": "^2.4.10",
"@types/bun": "latest",
"@types/react": "^19.2.14",
"@types/react-dom": "^19.2.3",
"@types/temp": "^0.9.4",
"shadcn": "^3.8.5",
"tailwindcss": "^4.2.2",
"tw-animate-css": "^1.4.0",
"typescript": "^5.9.3"
},
"trustedDependencies": [
"bun",
"protobufjs",
"sharp"
]
}