-
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.42 KB
/
Copy pathpackage.json
File metadata and controls
50 lines (50 loc) · 1.42 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": "attache",
"version": "0.2.11",
"module": "src/backend/index.ts",
"type": "module",
"description": "A self-hosted AI assistant with tools, agents, and MCP support",
"license": "AGPL-3.0",
"bin": {
"attache": "src/cli/index.ts"
},
"scripts": {
"dev": "concurrently -n backend,frontend -c blue,green \"bun run dev:backend\" \"bun run dev:frontend\"",
"dev:backend": "while bun --watch src/backend/index.ts; do sleep 1; done",
"dev:frontend": "vite",
"build:frontend": "vite build",
"build": "bun run build:frontend"
},
"devDependencies": {
"@types/bun": "latest",
"@types/markdown-it": "^14.1.2",
"@types/qrcode": "^1.5.6",
"@vitejs/plugin-vue": "^6.0.3",
"concurrently": "^9.2.1",
"typescript": "latest",
"vite": "^7.3.1",
"vite-plugin-pwa": "^1.2.0"
},
"peerDependencies": {
"typescript": "^5.0.0"
},
"dependencies": {
"@ai-sdk/anthropic": "^3.0.38",
"@ai-sdk/openai": "^3.0.26",
"@ai-sdk/openai-compatible": "^2.0.28",
"@modelcontextprotocol/sdk": "^1.26.0",
"@shikijs/markdown-it": "^3.22.0",
"@tailwindcss/vite": "^4.1.18",
"ai": "^6.0.75",
"croner": "^10.0.1",
"hono": "^4.11.7",
"lucide": "^0.563.0",
"lucide-vue-next": "^0.563.0",
"markdown-it": "^14.1.0",
"qrcode": "^1.5.4",
"shiki": "^3.22.0",
"tailwindcss": "^4.1.18",
"unicode-animations": "^1.0.3",
"vue": "^3.5.27"
}
}