chatgpt-api/packages/firecrawl/package.json

48 wiersze
1.1 KiB
JSON

{
"name": "@agentic/firecrawl",
2024-10-22 05:23:56 +00:00
"version": "7.1.0",
"description": "Agentic SDK for Firecrawl.",
"author": "Travis Fischer <travis@transitivebullsh.it>",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/transitive-bullshit/agentic.git"
},
"type": "module",
"source": "./src/index.ts",
"types": "./dist/index.d.ts",
"sideEffects": false,
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js",
"default": "./dist/index.js"
}
},
"files": [
"dist"
],
"scripts": {
2024-08-04 07:04:20 +00:00
"build": "tsup --config ../../tsup.config.ts",
"dev": "tsup --config ../../tsup.config.ts --watch",
"clean": "del dist",
"test": "run-s test:*",
"test:lint": "eslint .",
"test:typecheck": "tsc --noEmit"
},
"dependencies": {
"@agentic/core": "workspace:*",
2024-10-21 23:48:39 +00:00
"ky": "^1.7.2",
2024-10-21 23:49:39 +00:00
"p-throttle": "^6.2.0"
},
"peerDependencies": {
2024-08-04 09:12:25 +00:00
"zod": "^3.23.8"
},
"devDependencies": {
"@agentic/tsconfig": "workspace:*"
},
"publishConfig": {
"access": "public"
}
}