firecrawl
Advanced tools
| var __getOwnPropNames = Object.getOwnPropertyNames; | ||
| var __commonJS = (cb, mod) => function __require() { | ||
| return mod || (0, cb[__getOwnPropNames(cb)[0]])((mod = { exports: {} }).exports, mod), mod.exports; | ||
| }; | ||
| // package.json | ||
| var require_package = __commonJS({ | ||
| "package.json"(exports, module) { | ||
| module.exports = { | ||
| name: "@mendable/firecrawl-js", | ||
| version: "4.14.1", | ||
| description: "JavaScript SDK for Firecrawl API", | ||
| main: "dist/index.js", | ||
| types: "dist/index.d.ts", | ||
| exports: { | ||
| "./package.json": "./package.json", | ||
| ".": { | ||
| import: "./dist/index.js", | ||
| default: "./dist/index.cjs" | ||
| } | ||
| }, | ||
| type: "module", | ||
| scripts: { | ||
| build: "tsup", | ||
| "build-and-publish": "pnpm run build && pnpm publish --access public", | ||
| "publish-beta": "pnpm run build && pnpm publish --access public --tag beta", | ||
| test: "NODE_OPTIONS=--experimental-vm-modules jest --verbose src/__tests__/e2e/v2/*.test.ts --detectOpenHandles", | ||
| "test:unit": "NODE_OPTIONS=--experimental-vm-modules jest --verbose src/__tests__/unit/v2/*.test.ts" | ||
| }, | ||
| repository: { | ||
| type: "git", | ||
| url: "git+https://github.com/firecrawl/firecrawl.git" | ||
| }, | ||
| author: "Mendable.ai", | ||
| license: "MIT", | ||
| dependencies: { | ||
| axios: "^1.13.5", | ||
| "typescript-event-target": "^1.1.1", | ||
| zod: "^3.23.8", | ||
| "zod-to-json-schema": "^3.23.0" | ||
| }, | ||
| bugs: { | ||
| url: "https://github.com/firecrawl/firecrawl/issues" | ||
| }, | ||
| homepage: "https://github.com/firecrawl/firecrawl#readme", | ||
| devDependencies: { | ||
| "@jest/globals": "^30.2.0", | ||
| "@types/dotenv": "^8.2.0", | ||
| "@types/jest": "^30.0.0", | ||
| "@types/mocha": "^10.0.6", | ||
| "@types/node": "^20.12.12", | ||
| "@types/uuid": "^9.0.8", | ||
| dotenv: "^16.4.5", | ||
| jest: "^30.2.0", | ||
| "ts-jest": "^29.4.5", | ||
| tsup: "^8.5.0", | ||
| typescript: "^5.4.5", | ||
| uuid: "^9.0.1" | ||
| }, | ||
| keywords: [ | ||
| "firecrawl", | ||
| "mendable", | ||
| "crawler", | ||
| "web", | ||
| "scraper", | ||
| "api", | ||
| "sdk" | ||
| ], | ||
| engines: { | ||
| node: ">=22.0.0" | ||
| }, | ||
| pnpm: { | ||
| overrides: { | ||
| "@isaacs/brace-expansion@<=5.0.0": ">=5.0.1", | ||
| "minimatch@<10.2.1": ">=10.2.1", | ||
| "rollup@<4.59.0": ">=4.59.0" | ||
| } | ||
| } | ||
| }; | ||
| } | ||
| }); | ||
| export { | ||
| require_package | ||
| }; |
| import { | ||
| require_package | ||
| } from "./chunk-SQ7TKRDD.js"; | ||
| export default require_package(); |
+5
-1
@@ -657,2 +657,6 @@ import * as zt from 'zod'; | ||
| streamWebView?: boolean; | ||
| profile?: { | ||
| name: string; | ||
| writeMode?: "readonly" | "readwrite"; | ||
| }; | ||
| }): Promise<BrowserCreateResponse>; | ||
@@ -881,3 +885,3 @@ declare function browserExecute(http: HttpClient, sessionId: string, args: { | ||
| * Create a new browser session. | ||
| * @param args Session options (ttl, activityTtl, streamWebView). | ||
| * @param args Session options (ttl, activityTtl, streamWebView, profile). | ||
| * @returns Session id, CDP URL, live view URL, and expiration time. | ||
@@ -884,0 +888,0 @@ */ |
+5
-1
@@ -657,2 +657,6 @@ import * as zt from 'zod'; | ||
| streamWebView?: boolean; | ||
| profile?: { | ||
| name: string; | ||
| writeMode?: "readonly" | "readwrite"; | ||
| }; | ||
| }): Promise<BrowserCreateResponse>; | ||
@@ -881,3 +885,3 @@ declare function browserExecute(http: HttpClient, sessionId: string, args: { | ||
| * Create a new browser session. | ||
| * @param args Session options (ttl, activityTtl, streamWebView). | ||
| * @param args Session options (ttl, activityTtl, streamWebView, profile). | ||
| * @returns Session id, CDP URL, live view URL, and expiration time. | ||
@@ -884,0 +888,0 @@ */ |
+1
-1
| { | ||
| "name": "firecrawl", | ||
| "version": "4.14.0", | ||
| "version": "4.14.1", | ||
| "description": "JavaScript SDK for Firecrawl API", | ||
@@ -5,0 +5,0 @@ "main": "dist/index.js", |
+1
-1
@@ -320,3 +320,3 @@ import { HttpClient } from "./utils/httpClient"; | ||
| * Create a new browser session. | ||
| * @param args Session options (ttl, activityTtl, streamWebView). | ||
| * @param args Session options (ttl, activityTtl, streamWebView, profile). | ||
| * @returns Session id, CDP URL, live view URL, and expiration time. | ||
@@ -323,0 +323,0 @@ */ |
@@ -16,2 +16,6 @@ import type { | ||
| streamWebView?: boolean; | ||
| profile?: { | ||
| name: string; | ||
| writeMode?: "readonly" | "readwrite"; | ||
| }; | ||
| } = {} | ||
@@ -23,2 +27,3 @@ ): Promise<BrowserCreateResponse> { | ||
| if (args.streamWebView != null) body.streamWebView = args.streamWebView; | ||
| if (args.profile != null) body.profile = args.profile; | ||
@@ -25,0 +30,0 @@ try { |
| var __getOwnPropNames = Object.getOwnPropertyNames; | ||
| var __commonJS = (cb, mod) => function __require() { | ||
| return mod || (0, cb[__getOwnPropNames(cb)[0]])((mod = { exports: {} }).exports, mod), mod.exports; | ||
| }; | ||
| // package.json | ||
| var require_package = __commonJS({ | ||
| "package.json"(exports, module) { | ||
| module.exports = { | ||
| name: "@mendable/firecrawl-js", | ||
| version: "4.14.0", | ||
| description: "JavaScript SDK for Firecrawl API", | ||
| main: "dist/index.js", | ||
| types: "dist/index.d.ts", | ||
| exports: { | ||
| "./package.json": "./package.json", | ||
| ".": { | ||
| import: "./dist/index.js", | ||
| default: "./dist/index.cjs" | ||
| } | ||
| }, | ||
| type: "module", | ||
| scripts: { | ||
| build: "tsup", | ||
| "build-and-publish": "pnpm run build && pnpm publish --access public", | ||
| "publish-beta": "pnpm run build && pnpm publish --access public --tag beta", | ||
| test: "NODE_OPTIONS=--experimental-vm-modules jest --verbose src/__tests__/e2e/v2/*.test.ts --detectOpenHandles", | ||
| "test:unit": "NODE_OPTIONS=--experimental-vm-modules jest --verbose src/__tests__/unit/v2/*.test.ts" | ||
| }, | ||
| repository: { | ||
| type: "git", | ||
| url: "git+https://github.com/firecrawl/firecrawl.git" | ||
| }, | ||
| author: "Mendable.ai", | ||
| license: "MIT", | ||
| dependencies: { | ||
| axios: "^1.13.5", | ||
| "typescript-event-target": "^1.1.1", | ||
| zod: "^3.23.8", | ||
| "zod-to-json-schema": "^3.23.0" | ||
| }, | ||
| bugs: { | ||
| url: "https://github.com/firecrawl/firecrawl/issues" | ||
| }, | ||
| homepage: "https://github.com/firecrawl/firecrawl#readme", | ||
| devDependencies: { | ||
| "@jest/globals": "^30.2.0", | ||
| "@types/dotenv": "^8.2.0", | ||
| "@types/jest": "^30.0.0", | ||
| "@types/mocha": "^10.0.6", | ||
| "@types/node": "^20.12.12", | ||
| "@types/uuid": "^9.0.8", | ||
| dotenv: "^16.4.5", | ||
| jest: "^30.2.0", | ||
| "ts-jest": "^29.4.5", | ||
| tsup: "^8.5.0", | ||
| typescript: "^5.4.5", | ||
| uuid: "^9.0.1" | ||
| }, | ||
| keywords: [ | ||
| "firecrawl", | ||
| "mendable", | ||
| "crawler", | ||
| "web", | ||
| "scraper", | ||
| "api", | ||
| "sdk" | ||
| ], | ||
| engines: { | ||
| node: ">=22.0.0" | ||
| }, | ||
| pnpm: { | ||
| overrides: { | ||
| "@isaacs/brace-expansion@<=5.0.0": ">=5.0.1", | ||
| "minimatch@<10.2.1": ">=10.2.1" | ||
| } | ||
| } | ||
| }; | ||
| } | ||
| }); | ||
| export { | ||
| require_package | ||
| }; |
| import { | ||
| require_package | ||
| } from "./chunk-BNFKCLH7.js"; | ||
| export default require_package(); |
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is too big to display
Network access
Supply chain riskThis module accesses the network.
Found 1 instance in 1 package
Environment variable access
Supply chain riskPackage accesses environment variables, which may be a sign of credential stuffing or data theft.
Found 13 instances in 1 package
Long strings
Supply chain riskContains long string literals, which may be a sign of obfuscated or packed code.
Found 1 instance in 1 package
URL strings
Supply chain riskPackage contains fragments of external URLs or IP addresses, which the package may be accessing at runtime.
Found 1 instance in 1 package
Network access
Supply chain riskThis module accesses the network.
Found 1 instance in 1 package
Environment variable access
Supply chain riskPackage accesses environment variables, which may be a sign of credential stuffing or data theft.
Found 13 instances in 1 package
Long strings
Supply chain riskContains long string literals, which may be a sign of obfuscated or packed code.
Found 1 instance in 1 package
URL strings
Supply chain riskPackage contains fragments of external URLs or IP addresses, which the package may be accessing at runtime.
Found 1 instance in 1 package
655879
0.09%16138
0.08%