fix(relay-run): declare package deps for standalone deploy
relay-run imported bare specifiers (control-plane/relay-auth/relay-contracts/relay-e2e/ term-relay + ws/pg/ioredis) with an empty package.json, relying on a hand-populated node_modules from local dev. Declare them (file: siblings + runtime deps + tsx) so 'npm install' resolves relay-run on a clean host.
This commit is contained in:
@@ -13,5 +13,20 @@
|
|||||||
"test": "vitest run",
|
"test": "vitest run",
|
||||||
"test:watch": "vitest",
|
"test:watch": "vitest",
|
||||||
"typecheck": "tsc --noEmit"
|
"typecheck": "tsc --noEmit"
|
||||||
|
},
|
||||||
|
"dependencies": {
|
||||||
|
"control-plane": "file:../control-plane",
|
||||||
|
"relay-auth": "file:../relay-auth",
|
||||||
|
"relay-contracts": "file:../relay-contracts",
|
||||||
|
"relay-e2e": "file:../relay-e2e",
|
||||||
|
"term-relay": "file:../term-relay",
|
||||||
|
"relay-web": "file:../relay-web",
|
||||||
|
"agent": "file:../agent",
|
||||||
|
"ws": "^8.18.0",
|
||||||
|
"pg": "^8.12.0",
|
||||||
|
"ioredis": "^5.4.1"
|
||||||
|
},
|
||||||
|
"devDependencies": {
|
||||||
|
"tsx": "^4.19.0"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user