-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.36 KB
/
package.json
File metadata and controls
53 lines (53 loc) · 1.36 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
{
"name": "orchestrator",
"version": "0.1.0",
"description": "Desktop app for orchestrating multiple Claude Code agents on a visual canvas",
"author": "fonsecabc",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/fonsecabc/orchestrator.git"
},
"bugs": {
"url": "https://github.com/fonsecabc/orchestrator/issues"
},
"homepage": "https://github.com/fonsecabc/orchestrator",
"keywords": [
"claude",
"claude-code",
"ai-agents",
"orchestrator",
"tauri",
"svelte",
"workflow",
"multi-agent"
],
"type": "module",
"scripts": {
"dev": "vite",
"build": "vite build",
"preview": "vite preview",
"tauri": "tauri",
"app": "source $HOME/.cargo/env && node_modules/.bin/tauri dev",
"app:build": "source $HOME/.cargo/env && node_modules/.bin/tauri build"
},
"dependencies": {
"@tailwindcss/vite": "^4.2.2",
"@tauri-apps/api": "^2.0.0",
"@tauri-apps/plugin-dialog": "^2.6.0",
"@tauri-apps/plugin-shell": "^2.0.0",
"@tsconfig/svelte": "^5.0.8",
"marked": "^17.0.5",
"qrcode": "^1.5.4"
},
"devDependencies": {
"@sveltejs/vite-plugin-svelte": "^4.0.0",
"@tauri-apps/cli": "^2.0.0",
"@types/qrcode": "^1.5.6",
"postcss": "^8.4.49",
"svelte": "^5.0.0",
"tailwindcss": "^4.2.2",
"typescript": "^5.0.0",
"vite": "^6.0.0"
}
}