mirror of
https://github.com/different-ai/openwork
synced 2026-05-03 04:42:09 +02:00
Break the Den DB schema into domain entrypoints and switch EE package builds to tsup so workspace development can resolve TypeScript sources directly without typeid proxy shims. Co-authored-by: src-opn <src-opn@users.noreply.github.com>
27 lines
861 B
JSON
27 lines
861 B
JSON
{
|
|
"name": "@openwork-ee/den-worker-proxy",
|
|
"private": true,
|
|
"type": "module",
|
|
"scripts": {
|
|
"dev": "NODE_OPTIONS=--conditions=development OPENWORK_DEV_MODE=1 tsx watch src/server.ts",
|
|
"dev:local": "sh -lc 'NODE_OPTIONS=--conditions=development OPENWORK_DEV_MODE=1 PORT=${DEN_WORKER_PROXY_PORT:-8789} tsx watch src/server.ts'",
|
|
"build": "npm run build:den-db && tsc -p tsconfig.json",
|
|
"build:den-db": "pnpm --filter @openwork-ee/den-db build",
|
|
"start": "node dist/server.js"
|
|
},
|
|
"dependencies": {
|
|
"@openwork-ee/den-db": "workspace:*",
|
|
"@openwork-ee/utils": "workspace:*",
|
|
"@daytonaio/sdk": "^0.150.0",
|
|
"@hono/node-server": "^1.13.8",
|
|
"dotenv": "^16.4.5",
|
|
"hono": "^4.7.2",
|
|
"zod": "^4.3.6"
|
|
},
|
|
"devDependencies": {
|
|
"@types/node": "^20.11.30",
|
|
"tsx": "^4.15.7",
|
|
"typescript": "^5.5.4"
|
|
}
|
|
}
|