zhipu-ai-provider
Version:
Vercel AI Custom Provider for Services from Zhipu
77 lines (76 loc) • 1.83 kB
JSON
{
"name": "zhipu-ai-provider",
"version": "0.1.1",
"description": "Vercel AI Custom Provider for Services from Zhipu",
"author": "Chen Xiang",
"license": "Apache-2.0",
"sideEffects": false,
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"files": [
"dist/**/*",
"CHANGELOG.md"
],
"scripts": {
"build": "tsup",
"build:watch": "tsup --watch",
"clean": "rm -rf dist",
"lint": "eslint \"./**/*.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"
},
"exports": {
"./package.json": "./package.json",
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.mjs",
"require": "./dist/index.js"
}
},
"dependencies": {
"@ai-sdk/provider": "1.0.9",
"@ai-sdk/provider-utils": "2.1.10"
},
"devDependencies": {
"@edge-runtime/vm": "^5.0.0",
"@eslint/js": "^9.21.0",
"@types/node": "^18",
"eslint": "^9.21.0",
"tsup": "^8",
"typescript": "5.6.3",
"typescript-eslint": "^8.26.0",
"vitest": "^3.0.7",
"zod": "3.23.8"
},
"peerDependencies": {
"zod": "^3.0.0"
},
"engines": {
"node": ">=18"
},
"publishConfig": {
"access": "public"
},
"homepage": "https://github.com/Xiang-CH/zhipu-ai-provider",
"repository": {
"type": "git",
"url": "git+https://github.com/Xiang-CH/zhipu-ai-provider.git"
},
"bugs": {
"url": "https://github.com/Xiang-CH/zhipu-ai-provider/issues"
},
"keywords": [
"zhipu",
"bigmodel",
"glm",
"ai",
"provider",
"vercel-ai",
"vercel",
"ai-sdk"
]
}