feat(device-manager): add standalone project workspace

This commit is contained in:
Codex
2026-08-13 11:37:36 +03:00
parent 6c1265b8b6
commit 4116f5ba95
17 changed files with 2584 additions and 0 deletions
+26
View File
@@ -0,0 +1,26 @@
{
"name": "@nodedc/device-manager",
"version": "0.1.0",
"private": true,
"type": "module",
"scripts": {
"dev": "vite --host 127.0.0.1",
"build": "tsc -b && vite build",
"typecheck": "tsc -b --pretty false",
"test": "node --test server/*.test.mjs",
"serve": "node server/device-manager-server.mjs"
},
"dependencies": {
"@nodedc/ui-core": "0.7.0",
"@nodedc/ui-react": "0.7.0",
"react": "^19.1.0",
"react-dom": "^19.1.0"
},
"devDependencies": {
"@types/react": "^19.1.0",
"@types/react-dom": "^19.1.0",
"@vitejs/plugin-react": "^4.6.0",
"typescript": "^5.8.3",
"vite": "^7.0.0"
}
}