mirror of
https://github.com/different-ai/openwork
synced 2026-04-26 01:25:10 +02:00
* feat(den-api): migrate den controller to hono * fix(den-api): align worker listing with current build setup * fix(den-api): avoid duplicate org role seeding --------- Co-authored-by: src-opn <src-opn@users.noreply.github.com>
30 lines
864 B
JSON
30 lines
864 B
JSON
{
|
|
"name": "@openwork-ee/den-api",
|
|
"private": true,
|
|
"type": "module",
|
|
"scripts": {
|
|
"dev": "OPENWORK_DEV_MODE=1 tsx watch src/server.ts",
|
|
"dev:local": "sh -lc 'OPENWORK_DEV_MODE=1 PORT=${DEN_API_PORT:-8790} tsx watch src/server.ts'",
|
|
"build": "pnpm 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",
|
|
"@hono/zod-validator": "^0.7.6",
|
|
"better-call": "^1.1.8",
|
|
"better-auth": "^1.4.18",
|
|
"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"
|
|
}
|
|
}
|