tinylink/package.json
mahdahar dc6cca71cf feat: move instrument onboarding to YAML config
Replace DB-backed instrument upserts with app.yaml-driven config loading, matching, and translator application in the ingestion workflow. Also add serial-port connector support, startup validation tooling, and migration tracking updates to keep runtime behavior and docs aligned.
2026-04-06 16:50:17 +07:00

30 lines
759 B
JSON

{
"name": "tinylink",
"version": "1.0.0",
"description": "Workstation middleware service",
"main": "middleware/src/index.js",
"directories": {
"doc": "docs"
},
"scripts": {
"start": "node middleware/src/index.js",
"migrate": "node middleware/src/storage/migrate.js",
"maintenance": "node middleware/src/scripts/maintenance.js",
"instrument:check": "node middleware/src/scripts/instrumentCheck.js",
"test": "node middleware/test/parsers.test.js"
},
"keywords": [],
"author": "",
"license": "ISC",
"type": "commonjs",
"dependencies": {
"express": "^5.2.1",
"pino": "^10.3.1",
"serialport": "^12.0.0",
"sqlite3": "^6.0.1",
"undici": "^7.24.6",
"yaml": "^2.8.3",
"zod": "^4.3.6"
}
}