Files
Nikhil-Doye 229035e79f Add interactive tutorial and connection management features
- Introduced a new InteractiveTutorial component to guide users through creating workflows step-by-step.
- Added ConnectionSuggestions and ConnectionValidation components to assist users in establishing valid connections between nodes.
- Enhanced the WorkflowEditor to integrate connection management features, improving user experience and workflow design.
- Updated onboarding system to include tutorial prompts, encouraging users to engage with new features.
- Implemented utility functions for managing connection suggestions and validations, ensuring robust workflow integrity.
2025-10-22 18:39:06 -04:00

69 lines
1.9 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-progress": "^1.1.7",
"@radix-ui/react-select": "^2.2.6",
"@radix-ui/react-slot": "^1.2.3",
"@tailwindcss/line-clamp": "^0.4.4",
"@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",
"test:coverage": "react-scripts test --coverage --watchAll=false",
"test:ci": "react-scripts test --coverage --watchAll=false --ci",
"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"
]
},
"devDependencies": {
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.0",
"@testing-library/user-event": "^14.6.1",
"jest-environment-jsdom": "^30.2.0"
}
}