File size: 1,072 Bytes
dd480ef | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 | {
"name": "workflow-factor-os",
"version": "1.0.0",
"description": "Production-Grade AI Workflow Orchestrator for n8n - Cloudflare Workers Architecture",
"private": true,
"workspaces": [
"apps/*",
"core/*",
"integrations/*"
],
"scripts": {
"dev": "concurrently \"npm run dev:worker\" \"npm run dev:simulator\"",
"dev:worker": "npm run dev --workspace=apps/worker",
"dev:simulator": "npm run dev --workspace=apps/simulator",
"build": "npm run build --workspaces --if-present",
"test": "npm run test --workspaces --if-present",
"lint": "eslint . --ext .ts,.tsx",
"typecheck": "tsc --noEmit",
"deploy:worker": "npm run deploy --workspace=apps/worker",
"setup:knowledge": "node scripts/build-knowledge-base.js",
"validate:env": "node scripts/validate-env.js"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^6.0.0",
"@typescript-eslint/parser": "^6.0.0",
"concurrently": "^8.0.0",
"eslint": "^8.0.0",
"typescript": "^5.3.0"
},
"engines": {
"node": ">=18.0.0"
}
}
|