56 lines
1.2 KiB
JSON
56 lines
1.2 KiB
JSON
{
|
|
"name": "@ai-sdk/provider",
|
|
"version": "0.0.0",
|
|
"license": "Apache-2.0",
|
|
"sideEffects": false,
|
|
"main": "./dist/index.js",
|
|
"module": "./dist/index.mjs",
|
|
"types": "./dist/index.d.ts",
|
|
"files": [
|
|
"dist/**/*"
|
|
],
|
|
"scripts": {
|
|
"postinstall": "npm run build",
|
|
"build": "tsup",
|
|
"clean": "rm -rf dist",
|
|
"dev": "tsup --watch",
|
|
"lint": "eslint \"./**/*.ts*\"",
|
|
"type-check": "tsc --noEmit",
|
|
"prettier-check": "prettier --check \"./**/*.ts*\""
|
|
},
|
|
"exports": {
|
|
"./package.json": "./package.json",
|
|
".": {
|
|
"types": "./dist/index.d.ts",
|
|
"import": "./dist/index.mjs",
|
|
"require": "./dist/index.js"
|
|
}
|
|
},
|
|
"dependencies": {
|
|
"json-schema": "0.4.0"
|
|
},
|
|
"devDependencies": {
|
|
"@types/json-schema": "7.0.15",
|
|
"@types/node": "^18",
|
|
"@vercel/ai-tsconfig": "workspace:*",
|
|
"tsup": "^8",
|
|
"typescript": "5.1.3"
|
|
},
|
|
"engines": {
|
|
"node": ">=18"
|
|
},
|
|
"publishConfig": {
|
|
"access": "public"
|
|
},
|
|
"homepage": "https://sdk.vercel.ai/docs",
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git+https://github.com/vercel/ai.git"
|
|
},
|
|
"bugs": {
|
|
"url": "https://github.com/vercel/ai/issues"
|
|
},
|
|
"keywords": [
|
|
"ai"
|
|
]
|
|
} |