NODEDC_TASKMANAGER_CODEXAPI/package.json

26 lines
495 B
JSON

{
"name": "@nodedc/tasker-codex-api",
"version": "0.1.0",
"private": true,
"type": "module",
"engines": {
"node": ">=22"
},
"scripts": {
"dev": "tsx watch src/server.ts",
"build": "tsc -p tsconfig.json",
"check": "tsc --noEmit -p tsconfig.json",
"start": "node dist/server.js"
},
"dependencies": {
"fastify": "^5.8.5",
"zod": "^4.4.3"
},
"devDependencies": {
"@types/node": "^25.7.0",
"tsx": "^4.22.0",
"typescript": "^6.0.3"
}
}