This repository was archived by the owner on May 31, 2026. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
81 lines (81 loc) · 2.41 KB
/
Copy pathpackage.json
File metadata and controls
81 lines (81 loc) · 2.41 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
79
80
81
{
"name": "human-override-readiness-console",
"version": "0.1.0",
"description": "Operator surface for robotics human-override readiness, supervisor coverage, intervention drills, telemetry blind zones, and handoff-safe remediation posture. Library + CLI.",
"type": "module",
"license": "AGPL-3.0-or-later",
"author": "mizcausevic-dev",
"repository": {
"type": "git",
"url": "git+https://github.com/mizcausevic-dev/human-override-readiness-console.git"
},
"bugs": {
"url": "https://github.com/mizcausevic-dev/human-override-readiness-console/issues"
},
"homepage": "https://github.com/mizcausevic-dev/human-override-readiness-console#readme",
"keywords": [
"robotics",
"human-override",
"autonomy",
"fleet-ops",
"industrial-automation",
"telemetry",
"supervisor-controls",
"operator-surface",
"typescript"
],
"bin": {
"human-override-readiness": "dist/cli.js"
},
"main": "dist/index.js",
"types": "dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js"
}
},
"files": [
"dist",
"README.md",
"LICENSE",
"docs"
],
"engines": {
"node": ">=20"
},
"scripts": {
"dev": "npm exec tsx -- watch src/app.ts",
"build": "npm exec tsc -- -p tsconfig.json",
"start": "node dist/app.js",
"prerender": "npm exec tsx -- scripts/prerender.ts",
"lint": "npm exec eslint -- .",
"typecheck": "npm exec tsc -- -p tsconfig.json --noEmit",
"test": "npm exec vitest -- run",
"coverage": "npm exec vitest -- run --coverage",
"demo": "npm exec tsx -- scripts/run_demo.ts",
"smoke": "npm exec tsx -- scripts/smoke_check.ts",
"verify": "npm run lint && npm run typecheck && npm run coverage && npm run build && npm run demo && npm run smoke",
"render:assets": "powershell -ExecutionPolicy Bypass -File .\\scripts\\render_readme_assets.ps1",
"prepublishOnly": "npm run build"
},
"dependencies": {
"express": "^5.2.1"
},
"devDependencies": {
"@emnapi/core": "^1.10.0",
"@emnapi/runtime": "^1.10.0",
"@eslint/js": "^9.0.0",
"@types/express": "^5.0.6",
"@types/node": "^25.7.0",
"@types/supertest": "^7.2.0",
"@vitest/coverage-v8": "^4.1.6",
"eslint": "^9.0.0",
"globals": "^15.0.0",
"supertest": "^7.1.4",
"tsx": "^4.21.0",
"typescript": "^6.0.3",
"typescript-eslint": "^8.0.0",
"vitest": "^4.1.7"
}
}