Files
workflow-builder/package.json
T
Nikhil-Doye 6244995163 Add Firecrawl API integration and enhance web scraping capabilities
- Introduced Firecrawl API support in the workflow builder, allowing users to scrape web content.
- Updated NodeConfiguration component to include new fields for Firecrawl settings, such as output formats and content filtering options.
- Enhanced OpenAIConfig component to manage both OpenAI and Firecrawl API keys.
- Created firecrawlService to handle API interactions and scraping logic.
- Modified workflowStore to process web scraping nodes using Firecrawl, improving error handling and fallback responses.
- Removed obsolete test-localStorage.html file as part of project cleanup.
2025-10-15 01:22:01 -04:00

52 lines
1.2 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",
"@types/node": "^16.18.0",
"@types/react": "^18.2.0",
"@types/react-dom": "^18.2.0",
"@types/uuid": "^9.0.2",
"autoprefixer": "^10.4.14",
"clsx": "^1.2.1",
"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",
"tailwindcss": "^3.3.0",
"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"
]
}
}