@aihubmix/ai-sdk-provider
Version:
> **🎉 10% discount!** Added app-code; this way, requesting all models through ai-sdk offers a 10% discount.
72 lines • 1.79 kB
JSON
{
"name": "@aihubmix/ai-sdk-provider",
"version": "0.0.2",
"license": "Apache-2.0",
"sideEffects": false,
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"files": [
"dist/**/*",
"CHANGELOG.md"
],
"exports": {
"./package.json": "./package.json",
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.mjs",
"require": "./dist/index.js"
}
},
"dependencies": {
"@ai-sdk/anthropic": "2.0.0-beta.3",
"@ai-sdk/google": "2.0.0-beta.6",
"@ai-sdk/openai": "2.0.0-beta.3",
"@ai-sdk/provider": "2.0.0-beta.1",
"@ai-sdk/provider-utils": "3.0.0-beta.5"
},
"devDependencies": {
"@types/node": "20.17.24",
"tsup": "^8",
"typescript": "5.6.3",
"zod": "^3.25.0",
"vitest": "^2.0.0",
"jsdom": "^24.0.0",
"@edge-runtime/vm": "^2.0.0"
},
"peerDependencies": {
"zod": "^3.25.0"
},
"engines": {
"node": ">=18"
},
"publishConfig": {
"access": "public"
},
"homepage": "https://aihubmix.com",
"repository": {
"type": "git",
"url": "git+https://github.com/inferera/aihubmix.git"
},
"bugs": {
"url": "https://github.com/inferera/aihubmix/issues"
},
"keywords": [
"ai",
"aihubmix",
"ai-sdk-provider",
"ai-sdk"
],
"scripts": {
"build": "tsup",
"build:watch": "tsup --watch",
"clean": "rm -rf dist",
"lint": "eslint \"./**/*.ts*\"",
"type-check": "tsc --noEmit",
"prettier-check": "prettier --check \"./**/*.ts*\" --write",
"test": "pnpm test:node && pnpm test:edge",
"test:edge": "vitest --config vitest.edge.config.js --run",
"test:node": "vitest --config vitest.node.config.js --run",
"test:node:watch": "vitest --config vitest.node.config.js"
}
}