-
Notifications
You must be signed in to change notification settings - Fork 160
Expand file tree
/
Copy pathpackage.json
More file actions
119 lines (119 loc) 路 2.81 KB
/
Copy pathpackage.json
File metadata and controls
119 lines (119 loc) 路 2.81 KB
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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
{
"name": "@firecrawl/agent-core",
"version": "0.1.0",
"description": "AI-powered web research agent framework built on Firecrawl",
"keywords": [
"ai",
"agent",
"firecrawl",
"web-scraping",
"research",
"llm",
"anthropic",
"openai",
"gemini",
"deep-agents",
"langchain",
"vercel-ai-sdk"
],
"homepage": "https://github.com/firecrawl/firecrawl-agent#readme",
"repository": {
"type": "git",
"url": "https://github.com/firecrawl/firecrawl-agent.git",
"directory": "agent-core"
},
"bugs": {
"url": "https://github.com/firecrawl/firecrawl-agent/issues"
},
"author": "Firecrawl",
"engines": {
"node": ">=20"
},
"type": "module",
"exports": {
".": "./src/index.ts"
},
"main": "./src/index.ts",
"publishConfig": {
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js"
}
},
"main": "./dist/index.js",
"types": "./dist/index.d.ts"
},
"files": [
"dist",
"src/skills/definitions",
"src/orchestrator/prompts",
"src/worker/prompts"
],
"scripts": {
"build": "tsup",
"dev": "tsup --watch",
"test": "vitest run",
"test:watch": "vitest",
"typecheck": "tsc --noEmit",
"prepublishOnly": "npm run test && npm run build",
"example:basic": "tsx examples/1-basic.ts",
"example:structured": "tsx examples/2-structured-output.ts",
"example:parallel": "tsx examples/3-parallel-subagents.ts",
"example:skills": "tsx examples/4-with-skills.ts",
"example:stream": "tsx examples/5-streaming.ts"
},
"dependencies": {
"ai": "^6.0.0",
"deepagents": "^1.9.0",
"firecrawl-aisdk": "0.12.0-beta.2",
"gray-matter": "^4.0.3",
"just-bash": "^2.14.0",
"langchain": "^1.3.1",
"zod": "^3.25.0"
},
"peerDependencies": {
"@ai-sdk/anthropic": ">=1.0.0",
"@ai-sdk/google": ">=1.0.0",
"@ai-sdk/openai": ">=1.0.0",
"@langchain/anthropic": ">=1.0.0",
"@langchain/google": ">=0.1.0",
"@langchain/google-genai": ">=2.0.0",
"@langchain/openai": ">=1.0.0"
},
"peerDependenciesMeta": {
"@ai-sdk/anthropic": {
"optional": true
},
"@ai-sdk/google": {
"optional": true
},
"@ai-sdk/openai": {
"optional": true
},
"@langchain/anthropic": {
"optional": true
},
"@langchain/google": {
"optional": true
},
"@langchain/google-genai": {
"optional": true
},
"@langchain/openai": {
"optional": true
}
},
"devDependencies": {
"@langchain/anthropic": "^1.3.26",
"@langchain/core": "^1.1.39",
"@langchain/google": "^0.1.10",
"@langchain/google-genai": "^2.1.26",
"@langchain/openai": "^1.4.4",
"tsup": "^8.0.0",
"tsx": "^4.19.0",
"typescript": "^5.3.3",
"vitest": "^4.1.3"
},
"license": "MIT"
}