-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
134 lines (134 loc) · 4.16 KB
/
Copy pathpackage.json
File metadata and controls
134 lines (134 loc) · 4.16 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
121
122
123
124
125
126
127
128
129
130
131
132
133
134
{
"name": "@hashintel/brunch",
"version": "0.6.1",
"description": "AI chat interface built on HASH",
"homepage": "https://github.com/hashintel/brunch#readme",
"bugs": {
"url": "https://github.com/hashintel/brunch/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/hashintel/brunch.git"
},
"license": "(MIT OR Apache-2.0)",
"type": "module",
"engines": {
"node": ">=22.19.0"
},
"bin": {
"brunch": "bin/brunch.js"
},
"files": [
"bin",
"dist",
"drizzle",
"README.md",
"LICENSE"
],
"publishConfig": {
"access": "public"
},
"overrides": {
"esbuild": "^0.25.12",
"react-inspector": "^9.0.0",
"hono": "4.12.25",
"protobufjs": "7.6.4",
"ws": "8.21.0"
},
"scripts": {
"build": "vite build && vite build --mode server-runtime",
"check": "npm run fmt:check && npm run lint",
"dev": "npx tsx src/server/preflight.ts && agent-tail run 'vite: vite' 'api: npx tsx --watch src/server/index.ts'",
"fix": "npm run lint:fix && npm run fmt",
"fmt": "oxfmt src/ scripts/ config/ .ladle/ vite.config.ts drizzle.config.ts",
"fmt:check": "oxfmt --check src/ scripts/ config/ .ladle/ vite.config.ts drizzle.config.ts",
"ladle": "ladle serve",
"ladle:build": "ladle build",
"lint": "oxlint --type-aware --type-check src/ scripts/ config/ .ladle/ vite.config.ts drizzle.config.ts",
"lint:fix": "oxlint --type-aware --type-check --fix src/ scripts/ config/ .ladle/ vite.config.ts drizzle.config.ts",
"release": "release-it",
"seed": "npx tsx src/server/fixtures/seed.ts",
"server": "npx tsx src/server/index.ts",
"studio": "drizzle-kit studio",
"test": "vitest run",
"verify": "npm run check && npm run test && npm run build"
},
"dependencies": {
"@ai-sdk/anthropic": "^3.0.66",
"@ai-sdk/provider-utils": "^4.0.21",
"@ai-sdk/react": "^3.0.145",
"@earendil-works/pi-coding-agent": "0.79.1",
"@fontsource-variable/geist-mono": "^5.2.7",
"@fontsource-variable/inter": "^5.2.8",
"@radix-ui/react-checkbox": "^1.3.3",
"@radix-ui/react-scroll-area": "^1.2.10",
"@radix-ui/react-separator": "^1.1.8",
"@radix-ui/react-use-controllable-state": "^1.2.2",
"@simplestack/store": "^0.7.7",
"@streamdown/cjk": "^1.0.3",
"@streamdown/code": "^1.1.1",
"@streamdown/math": "^1.0.2",
"@streamdown/mermaid": "^1.0.2",
"@tailwindcss/vite": "^4.2.2",
"@tanstack/react-query": "^5.96.1",
"@tanstack/react-router": "^1.168.10",
"@vitejs/plugin-react": "^5.2.0",
"agentation": "^3.0.2",
"ai": "^6.0.168",
"better-sqlite3": "^12.8.0",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"cmdk": "^1.1.1",
"diff": "^8.0.4",
"drizzle-orm": "^0.45.2",
"embla-carousel-react": "^8.6.0",
"express": "^5.2.1",
"ink": "^7.0.6",
"lucide-react": "^1.8.0",
"md-pen": "^1.2.0",
"motion": "^12.38.0",
"nanoid": "^5.1.7",
"open": "^11.0.0",
"radix-ui": "^1.4.3",
"react": "^19.2.4",
"react-dom": "^19.2.4",
"react-resizable-panels": "^4.10.0",
"shiki": "^4.0.2",
"streamdown": "^2.5.0",
"tailwind-merge": "^3.5.0",
"tailwindcss": "^4.2.2",
"tsx": "^4.21.0",
"tw-animate-css": "^1.4.0",
"use-stick-to-bottom": "^1.1.3",
"xstate": "^5.30.0",
"yaml": "^2.9.0",
"zod": "^4.3.6"
},
"devDependencies": {
"@ladle/react": "^5.1.1",
"@tanstack/router-plugin": "^1.167.18",
"@testing-library/react": "^16.3.2",
"@testing-library/user-event": "^14.6.1",
"@types/better-sqlite3": "^7.6.13",
"@types/express": "^5.0.6",
"@types/react": "^19.2.14",
"@types/react-dom": "^19.2.3",
"@types/supertest": "^7.2.0",
"agent-tail-core": "^0.4.0",
"chrome-devtools-mcp": "^0.21.0",
"code-inspector-plugin": "^1.5.1",
"drizzle-kit": "^0.31.10",
"happy-dom": "^20.8.9",
"ink-testing-library": "^4.0.0",
"oxfmt": "^0.43.0",
"oxlint": "^1.58.0",
"oxlint-tsgolint": "^0.19.0",
"release-it": "^20.0.1",
"shadcn": "^4.1.2",
"supertest": "^7.2.2",
"typescript": "^5.9.3",
"vite": "^7.0.4",
"vite-plugin-agent-tail": "^0.4.0",
"vitest": "^4.1.0"
}
}