open-design/apps/daemon/package.json

35 lines
901 B
JSON

{
"name": "@open-design/daemon",
"version": "0.1.0",
"private": true,
"type": "module",
"bin": {
"od": "./dist/cli.js"
},
"scripts": {
"build": "tsc -p tsconfig.json",
"daemon": "pnpm run build && node dist/cli.js --no-open",
"dev": "pnpm run build && node dist/cli.js --no-open",
"start": "pnpm run build && node dist/cli.js",
"test": "vitest run -c vitest.config.ts",
"typecheck": "tsc -p tsconfig.json --noEmit"
},
"dependencies": {
"@open-design/contracts": "workspace:*",
"better-sqlite3": "^11.10.0",
"express": "^4.19.2",
"jszip": "^3.10.1",
"multer": "^1.4.5-lts.1"
},
"devDependencies": {
"@types/better-sqlite3": "^7.6.13",
"@types/express": "^4.17.21",
"@types/multer": "^1.4.12",
"@types/node": "^20.17.10",
"typescript": "^5.6.3",
"vitest": "^2.1.8"
},
"engines": {
"node": "~24"
}
}