-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
26 lines (26 loc) · 806 Bytes
/
package.json
File metadata and controls
26 lines (26 loc) · 806 Bytes
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
{
"name": "omc-visual",
"version": "0.1.0",
"description": "Visual interface for oh-my-claudecode — multi-agent orchestration in your browser",
"private": true,
"scripts": {
"dev": "concurrently \"npm run dev:server\" \"npm run dev:frontend\"",
"dev:server": "cd server && npm run dev",
"dev:frontend": "cd frontend && npm run dev",
"build": "cd frontend && npm run build",
"start": "cd server && npm start",
"start:bg": "bash scripts/start-background.sh",
"setup": "npm install && cd server && npm install && cd ../frontend && npm install"
},
"devDependencies": {
"concurrently": "^9.1.0"
},
"engines": {
"node": ">=20.0.0"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/your-username/omc-visual"
}
}