ai-gateway-provider
Version:
AI Gateway Provider for AI-SDK
51 lines • 1.19 kB
JSON
{
"name": "ai-gateway-provider",
"version": "0.0.11",
"description": "AI Gateway Provider for AI-SDK",
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"files": [
"dist",
"LICENSE",
"README.md"
],
"publishConfig": {
"access": "public"
},
"keywords": [
"cloudflare",
"workers",
"rag",
"ai",
"agents",
"autorag"
],
"author": "Gabriel Massadas <https://github.com/g4brym>",
"license": "MIT",
"homepage": "https://github.com/cloudflare/ai",
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/cloudflare/ai.git"
},
"bugs": {
"url": "https://github.com/cloudflare/ai/issues"
},
"dependencies": {
"@ai-sdk/provider": "^1.1.3",
"@ai-sdk/provider-utils": "^2.2.8",
"ai": "^4.3.16"
},
"devDependencies": {
"@biomejs/biome": "^2.0.0",
"tsup": "^8.5.0",
"typescript": "^5.8.3"
},
"scripts": {
"build": "rm -rf dist && tsup src/index.ts --dts --sourcemap --format cjs,esm --target es2020",
"format": "biome format --write",
"test:ci": "vitest --watch=false",
"test": "vitest",
"type-check": "tsc --noEmit"
}
}