{ "name": "@emprespresso/ci", "version": "0.1.0", "private": true, "type": "module", "workspaces": [ "u", "model", "server", "worker" ], "scripts": { "build": "npm run build --workspaces --if-present && tsc", "dev": "npm run dev --workspaces --if-present", "lint": "eslint . --ext .ts,.js", "lint:fix": "eslint . --ext .ts,.js --fix", "format": "prettier --write .", "format:check": "prettier --check .", "type-check": "tsc --noEmit", "clean": "npm run clean --workspaces --if-present && rm -rf dist node_modules", "start": "node dist/index.js" }, "devDependencies": { "@types/node": "^24.0.3", "@typescript-eslint/eslint-plugin": "^8.34.1", "@typescript-eslint/parser": "^8.34.1", "eslint": "^8.34.1", "eslint-config-prettier": "^10.1.5", "eslint-plugin-prettier": "^5.5.0", "prettier": "^3.5.3", "typescript": "^5.8.3" }, "engines": { "node": ">=22.16.0", "npm": ">=10.0.0" } }