mirror of https://github.com/ghostfolio/ghostfolio
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
56 lines
1.2 KiB
56 lines
1.2 KiB
{
|
|
"name": "@ai-sdk/provider",
|
|
"version": "1.1.3",
|
|
"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": {
|
|
"json-schema": "^0.4.0"
|
|
},
|
|
"devDependencies": {
|
|
"@types/json-schema": "7.0.15",
|
|
"@types/node": "20.17.24",
|
|
"tsup": "^8",
|
|
"typescript": "5.6.3",
|
|
"@vercel/ai-tsconfig": "0.0.0"
|
|
},
|
|
"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"
|
|
],
|
|
"scripts": {
|
|
"build": "tsup",
|
|
"build:watch": "tsup --watch",
|
|
"clean": "rm -rf dist",
|
|
"lint": "eslint \"./**/*.ts*\"",
|
|
"type-check": "tsc --noEmit",
|
|
"prettier-check": "prettier --check \"./**/*.ts*\""
|
|
}
|
|
}
|