mirror of
https://github.com/Nikhil-Doye/workflow-builder.git
synced 2026-07-22 02:01:56 +02:00
53fbbe22c7
- Introduced cron-parser for improved cron expression handling in the WorkflowScheduler. - Added validation for cron expressions during schedule creation and updates, ensuring correct format and providing user feedback on errors. - Implemented utility methods for generating supported cron examples and validating cron expressions, enhancing usability and clarity in scheduling workflows. - Updated llmProcessor to support variable substitution in prompts, improving flexibility in input handling.
59 lines
1.4 KiB
JSON
59 lines
1.4 KiB
JSON
{
|
|
"name": "agent-workflow-builder",
|
|
"version": "1.0.0",
|
|
"description": "Open-source agent workflow builder using React Flow and AI",
|
|
"private": true,
|
|
"dependencies": {
|
|
"@mendable/firecrawl-js": "^4.4.0",
|
|
"@radix-ui/react-dialog": "^1.1.15",
|
|
"@radix-ui/react-select": "^2.2.6",
|
|
"@radix-ui/react-slot": "^1.2.3",
|
|
"@types/node": "^16.18.0",
|
|
"@types/react": "^18.3.26",
|
|
"@types/react-dom": "^18.2.0",
|
|
"@types/uuid": "^9.0.2",
|
|
"autoprefixer": "^10.4.14",
|
|
"class-variance-authority": "^0.7.1",
|
|
"clsx": "^1.2.1",
|
|
"cron-parser": "^5.4.0",
|
|
"lucide-react": "^0.263.1",
|
|
"openai": "^6.3.0",
|
|
"postcss": "^8.4.24",
|
|
"react": "^18.2.0",
|
|
"react-dom": "^18.2.0",
|
|
"react-hot-toast": "^2.4.1",
|
|
"react-scripts": "5.0.1",
|
|
"reactflow": "^11.10.1",
|
|
"tailwind-merge": "^3.3.1",
|
|
"tailwindcss": "^3.3.0",
|
|
"tailwindcss-animate": "^1.0.7",
|
|
"typescript": "^4.9.0",
|
|
"uuid": "^9.0.0",
|
|
"zustand": "^4.4.1"
|
|
},
|
|
"scripts": {
|
|
"start": "react-scripts start",
|
|
"build": "react-scripts build",
|
|
"test": "react-scripts test",
|
|
"eject": "react-scripts eject"
|
|
},
|
|
"eslintConfig": {
|
|
"extends": [
|
|
"react-app",
|
|
"react-app/jest"
|
|
]
|
|
},
|
|
"browserslist": {
|
|
"production": [
|
|
">0.2%",
|
|
"not dead",
|
|
"not op_mini all"
|
|
],
|
|
"development": [
|
|
"last 1 chrome version",
|
|
"last 1 firefox version",
|
|
"last 1 safari version"
|
|
]
|
|
}
|
|
}
|