forked from deivid11/tide-commander
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
78 lines (78 loc) · 2.42 KB
/
package.json
File metadata and controls
78 lines (78 loc) · 2.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
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
{
"name": "tide-commander",
"version": "0.46.1",
"description": "Visual multi-agent orchestrator and manager for Claude Code with 3D/2D interface",
"type": "module",
"scripts": {
"dev": "LISTEN_ALL_INTERFACES=1 concurrently \"bun run dev:client\" \"bun run dev:server\"",
"dev:client": "vite",
"dev:server": "tsx watch src/packages/server/index.ts",
"dev:landing": "vite --open /src/packages/landing/index.html",
"build": "tsc && vite build",
"preview": "vite preview",
"setup": "tsx src/packages/server/setup.ts",
"lint": "eslint src/",
"lint:types": "tsc --noEmit",
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage",
"cap:sync": "npx cap sync android",
"cap:open": "npx cap open android",
"cap:build": "npm run build && npx cap sync android",
"android": "npm run build && npx cap sync android && npx cap open android"
},
"dependencies": {
"@anthropic-ai/sdk": "^0.71.2",
"@capacitor/android": "^8.0.1",
"@capacitor/cli": "^8.0.1",
"@capacitor/core": "^8.0.1",
"@capacitor/haptics": "^8.0.0",
"@capacitor/local-notifications": "^8.0.0",
"@capawesome/capacitor-background-task": "^8.0.0",
"@tanstack/react-virtual": "^3.13.18",
"@types/oracledb": "^6.10.1",
"archiver": "^7.0.1",
"chokidar": "^4.0.0",
"cors": "^2.8.5",
"dotenv": "^17.2.3",
"express": "^5.2.1",
"fuse.js": "^7.1.0",
"mysql2": "^3.16.2",
"oracledb": "^6.10.0",
"pg": "^8.17.2",
"prismjs": "^1.30.0",
"react": "^19.2.3",
"react-dom": "^19.2.3",
"react-markdown": "^10.1.0",
"remark-gfm": "^4.0.1",
"three": "^0.170.0",
"unzip-stream": "^0.3.4",
"ws": "^8.18.0"
},
"overrides": {
"tar": "7.5.7"
},
"devDependencies": {
"@types/archiver": "^7.0.0",
"@types/cors": "^2.8.19",
"@types/express": "^5.0.6",
"@types/node": "^25.0.9",
"@types/pg": "^8.16.0",
"@types/prismjs": "^1.26.5",
"@types/react": "^19.2.8",
"@types/react-dom": "^19.2.3",
"@types/three": "^0.170.0",
"@types/unzip-stream": "^0.3.4",
"@types/ws": "^8.5.13",
"@typescript-eslint/eslint-plugin": "^8.54.0",
"@typescript-eslint/parser": "^8.54.0",
"@vitejs/plugin-react": "^4.7.0",
"concurrently": "^9.1.0",
"eslint": "^9.39.2",
"sass": "^1.97.2",
"tsx": "^4.19.0",
"typescript": "^5.6.0",
"vite": "^6.0.0",
"vitest": "^4.0.17"
}
}