@mastra/browser-firecrawl 0.0.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (1) hide show
  1. package/package.json +67 -0
package/package.json ADDED
@@ -0,0 +1,67 @@
1
+ {
2
+ "name": "@mastra/browser-firecrawl",
3
+ "version": "0.0.0",
4
+ "description": "Mastra browser automation using Firecrawl Browser Sandbox (hosted CDP + agent-browser tools)",
5
+ "type": "module",
6
+ "files": [
7
+ "dist",
8
+ "CHANGELOG.md"
9
+ ],
10
+ "main": "dist/index.js",
11
+ "types": "dist/index.d.ts",
12
+ "exports": {
13
+ ".": {
14
+ "import": {
15
+ "types": "./dist/index.d.ts",
16
+ "default": "./dist/index.js"
17
+ },
18
+ "require": {
19
+ "types": "./dist/index.d.ts",
20
+ "default": "./dist/index.cjs"
21
+ }
22
+ },
23
+ "./package.json": "./package.json"
24
+ },
25
+ "scripts": {
26
+ "build": "tsup --silent --config tsup.config.ts",
27
+ "build:watch": "tsup --watch --silent --config tsup.config.ts",
28
+ "test": "vitest run",
29
+ "lint": "eslint ."
30
+ },
31
+ "license": "Apache-2.0",
32
+ "dependencies": {
33
+ "firecrawl": "^4.18.4"
34
+ },
35
+ "devDependencies": {
36
+ "@internal/lint": "workspace:*",
37
+ "@internal/types-builder": "workspace:*",
38
+ "@mastra/agent-browser": "workspace:*",
39
+ "@mastra/core": "workspace:*",
40
+ "@types/node": "22.19.15",
41
+ "@vitest/coverage-v8": "catalog:",
42
+ "@vitest/ui": "catalog:",
43
+ "agent-browser": "0.19.0",
44
+ "eslint": "^10.2.1",
45
+ "playwright-core": "^1.57.0",
46
+ "tsup": "^8.5.1",
47
+ "typescript": "catalog:",
48
+ "vitest": "catalog:"
49
+ },
50
+ "peerDependencies": {
51
+ "@mastra/agent-browser": ">=0.3.0 <1.0.0",
52
+ "@mastra/core": ">=1.22.0-0 <2.0.0-0",
53
+ "agent-browser": ">=0.19.0"
54
+ },
55
+ "homepage": "https://mastra.ai",
56
+ "repository": {
57
+ "type": "git",
58
+ "url": "git+https://github.com/mastra-ai/mastra.git",
59
+ "directory": "browser/firecrawl"
60
+ },
61
+ "bugs": {
62
+ "url": "https://github.com/mastra-ai/mastra/issues"
63
+ },
64
+ "engines": {
65
+ "node": ">=22.13.0"
66
+ }
67
+ }