-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
108 lines (108 loc) · 3.54 KB
/
package.json
File metadata and controls
108 lines (108 loc) · 3.54 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
{
"name": "walla",
"version": "0.1.0",
"private": true,
"main": "dist-electron/main.js",
"build": {
"appId": "com.walla.app",
"productName": "WALLA",
"directories": {
"output": "release"
},
"files": [
"dist/**/*",
"dist-electron/**/*"
],
"mac": {
"icon": "public/common/icon.icns",
"category": "public.app-category.developer-tools"
},
"win": {
"icon": "public/common/icon.ico",
"target": "nsis"
},
"linux": {
"icon": "public/common/icon.png",
"target": "AppImage"
}
},
"scripts": {
"dev:next": "next dev --port 3000",
"dev:electron": "wait-on http://localhost:3000 && node scripts/build-electron.mjs && electron .",
"dev": "concurrently -n next,electron \"npm run dev:next\" \"npm run dev:electron\"",
"build:next": "next build",
"build:electron": "node scripts/build-electron.mjs",
"build": "npm run build:next && npm run build:electron",
"pack": "npm run build && electron-builder --dir",
"dist": "npm run build && electron-builder",
"test:health": "tsx test/01-health.ts",
"test:config": "tsx test/02-config.ts",
"test:project": "tsx test/03-project.ts",
"test:app": "tsx test/04-app.ts",
"test:session-crud": "tsx test/05-session-crud.ts",
"test:session-prompt": "tsx test/06-session-prompt.ts",
"test:file-search": "tsx test/07-file-search.ts",
"test:events": "tsx test/08-events.ts",
"test:path": "tsx test/09-path.ts",
"test:acp-init": "tsx test/acp/01-initialize.ts",
"test:acp-session": "tsx test/acp/02-session.ts",
"test:acp-prompt": "tsx test/acp/03-prompt.ts",
"test:acp-tool": "tsx test/acp/04-tool-call.ts",
"test:acp-cancel": "tsx test/acp/05-cancel.ts",
"test:acp-multi-turn": "tsx test/acp/06-multi-turn.ts",
"test:acp-resource": "tsx test/acp/07-resource-link.ts",
"test:acp-config": "tsx test/acp/08-config-option.ts",
"test:acp-multi-session": "tsx test/acp/09-multi-session.ts",
"test:acp-load": "tsx test/acp/10-load-session.ts",
"test:acp-updates": "tsx test/acp/11-update-types.ts",
"test:acp-fs": "tsx test/acp/12-filesystem.ts",
"test:acp-terminal": "tsx test/acp/13-terminal.ts",
"test:acp-slash": "tsx test/acp/14-slash-commands.ts"
},
"dependencies": {
"@agentclientprotocol/sdk": "^0.14.1",
"@ai-sdk/anthropic": "^3.0.46",
"@ai-sdk/azure": "^3.0.31",
"@ai-sdk/google": "^3.0.30",
"@ai-sdk/openai": "^3.0.30",
"@ai-sdk/openai-compatible": "^2.0.30",
"@modelcontextprotocol/sdk": "^1.26.0",
"ai": "^6.0.97",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"date-fns": "^4.1.0",
"dotenv": "^17.3.1",
"electron-store": "^11.0.2",
"lucide-react": "^0.468.0",
"next": "^15.1.0",
"next-themes": "^0.4.6",
"ollama-ai-provider-v2": "^3.3.1",
"radix-ui": "^1.4.3",
"react": "^19.0.0",
"react-day-picker": "^9.13.2",
"react-dom": "^19.0.0",
"react-markdown": "^10.1.0",
"recharts": "^3.7.0",
"remark-gfm": "^4.0.1",
"shiki": "^3.22.0",
"sonner": "^2.0.7",
"tailwind-merge": "^2.6.0",
"zod": "^4.3.6",
"zustand": "^5.0.0"
},
"devDependencies": {
"@tailwindcss/postcss": "^4.0.0",
"@types/node": "^22.0.0",
"@types/react": "^19.0.0",
"@types/react-dom": "^19.0.0",
"concurrently": "^9.1.0",
"electron": "33.4.11",
"electron-builder": "^25.1.0",
"esbuild": "^0.27.3",
"postcss": "^8.4.49",
"tailwindcss": "^4.0.0",
"tsx": "latest",
"typescript": "^5.7.0",
"wait-on": "^8.0.0"
}
}