-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
21 lines (21 loc) · 775 Bytes
/
Copy pathpackage.json
File metadata and controls
21 lines (21 loc) · 775 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
{
"name": "ucore",
"version": "0.2.0-dev",
"private": true,
"description": "uCore — unified daemon combining uServer + uConnect backend with MCP support",
"scripts": {
"install:root": "bash scripts/install-root.sh",
"dev": "pnpm --filter @udos/ui-hub-vue run dev",
"dev:backend": "cd backend && PYTHONPATH=. python3 -m app",
"build": "pnpm --filter @udos/ui-hub-vue run build",
"test": "./.venv/bin/python -m pytest -q backend/tests",
"lint": "cd backend && ruff check .",
"mcp:build": "npm --prefix backend/app/mcp/udos_mcp run build",
"mcp:test": "npm --prefix backend/app/mcp/udos_mcp test",
"mcp:start": "node backend/app/mcp/udos_mcp/build/index.js"
},
"engines": {
"node": ">=22.0.0",
"pnpm": ">=9.0.0"
}
}