@302ai/ai-sdk
Version:
The **[302AI provider](https://sdk.vercel.ai/providers/ai-sdk-providers/)** for the [AI SDK](https://sdk.vercel.ai/docs) contains image model support for the [302AI](https://302.ai) platform.
65 lines • 1.56 kB
JSON
{
"name": "@302ai/ai-sdk",
"version": "0.0.20",
"license": "Apache-2.0",
"sideEffects": false,
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"files": [
"dist/**/*"
],
"exports": {
"./package.json": "./package.json",
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.mjs",
"require": "./dist/index.js"
}
},
"dependencies": {
"@ai-sdk/openai-compatible": "^0.2.13",
"@ai-sdk/provider": "1.1.3",
"@ai-sdk/provider-utils": "2.2.7",
"sharp": "^0.33.5"
},
"devDependencies": {
"@types/node": "^18",
"tsup": "^8",
"typescript": "5.6.3",
"zod": "^3.24.1",
"@302ai/ai-tsconfig": "0.0.0"
},
"peerDependencies": {
"zod": "^3.24.1"
},
"engines": {
"node": ">=18"
},
"publishConfig": {
"access": "public"
},
"homepage": "https://github.com/302ai/ai-sdk",
"repository": {
"type": "git",
"url": "git+https://github.com/302ai/ai-sdk.git"
},
"bugs": {
"url": "https://github.com/302ai/ai-sdk/issues"
},
"keywords": [
"ai",
"302ai"
],
"scripts": {
"build": "tsup",
"build:watch": "tsup --watch",
"clean": "rm -rf dist",
"lint": "eslint \"./src/**/*.ts*\" \"./tsup.config.ts\"",
"type-check": "tsc --noEmit",
"prettier-check": "prettier --check \"./**/*.ts*\"",
"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"
}
}