feat: establish standalone Device Core repository

This commit is contained in:
DCCONSTRUCTIONS
2026-08-21 11:51:21 +03:00
commit e0bac205d0
244 changed files with 51962 additions and 0 deletions
+20
View File
@@ -0,0 +1,20 @@
{
"name": "@nodedc/device-core",
"version": "0.1.0",
"private": true,
"type": "module",
"workspaces": [
"apps/*",
"packages/*",
"services/*"
],
"scripts": {
"build": "npm run build --workspace @nodedc/device-manager",
"typecheck": "npm run typecheck --workspace @nodedc/device-manager",
"test": "node --test packages/*/test/*.test.mjs services/*/test/*.test.mjs apps/device-manager/server/*.test.mjs",
"test:deploy": "python3 -m unittest discover -s infra/deploy-runner -p 'test_device_*.py'"
},
"engines": {
"node": ">=20"
}
}