cherry-studio/packages/aiCore/package.json
MyPrototypeWhat ef6be4a6f9 chore: bump @cherrystudio/ai-core version to 1.0.0-alpha.5
- Updated version in package.json to 1.0.0-alpha.5.
- Enhanced provider configuration validation in createProvider function for improved error handling.
2025-07-18 16:30:49 +08:00

74 lines
1.9 KiB
JSON

{
"name": "@cherrystudio/ai-core",
"version": "1.0.0-alpha.5",
"description": "Cherry Studio AI Core - Unified AI Provider Interface Based on Vercel AI SDK",
"main": "dist/index.js",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"react-native": "dist/index.js",
"scripts": {
"build": "tsdown",
"dev": "tsc -w",
"clean": "rm -rf dist"
},
"keywords": [
"ai",
"sdk",
"openai",
"anthropic",
"google",
"cherry-studio",
"vercel-ai-sdk"
],
"author": "Cherry Studio",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/CherryHQ/cherry-studio.git"
},
"bugs": {
"url": "https://github.com/CherryHQ/cherry-studio/issues"
},
"homepage": "https://github.com/CherryHQ/cherry-studio#readme",
"dependencies": {
"@ai-sdk/anthropic": "2.0.0-beta.6",
"@ai-sdk/azure": "2.0.0-beta.9",
"@ai-sdk/deepseek": "1.0.0-beta.6",
"@ai-sdk/google": "2.0.0-beta.11",
"@ai-sdk/openai": "2.0.0-beta.9",
"@ai-sdk/openai-compatible": "1.0.0-beta.6",
"@ai-sdk/provider": "2.0.0-beta.1",
"@ai-sdk/provider-utils": "3.0.0-beta.3",
"@ai-sdk/xai": "2.0.0-beta.8",
"ai": "5.0.0-beta.9",
"zod": "^3.25.0"
},
"devDependencies": {
"tsdown": "^0.12.9",
"typescript": "^5.0.0"
},
"sideEffects": false,
"engines": {
"node": ">=18.0.0"
},
"files": [
"dist"
],
"exports": {
".": {
"types": "./dist/index.d.ts",
"react-native": "./dist/index.js",
"import": "./dist/index.mjs",
"require": "./dist/index.js",
"default": "./dist/index.js"
},
"./built-in/plugins": {
"types": "./dist/built-in/plugins/index.d.ts",
"react-native": "./dist/built-in/plugins/index.js",
"import": "./dist/built-in/plugins/index.mjs",
"require": "./dist/built-in/plugins/index.js",
"default": "./dist/built-in/plugins/index.js"
}
}
}