Files
ai/package.json
abearxiong 174c64b9a3 chore: update dependencies and lockfile
- Added new dependencies: @ai-sdk/anthropic, @ai-sdk/openai, @ai-sdk/openai-compatible, and ai.
- Updated existing dependencies:
  - @kevisual/permission from 0.0.3 to 0.0.4
  - @kevisual/query from 0.0.38 to 0.0.52
  - @kevisual/router from 0.0.62 to 0.0.84
  - @kevisual/use-config from 1.0.28 to 1.0.30
  - @types/bun from 1.3.6 to 1.3.9
  - @types/formidable from 3.4.6 to 3.4.7
  - @types/node from 25.0.10 to 25.3.3
  - dotenv from 17.2.3 to 17.3.1
  - openai from 6.16.0 to 6.25.0
  - rimraf from 6.1.2 to 6.1.3
  - glob from 13.0.0 to 13.0.6
  - minimatch from 10.1.1 to 10.2.4
  - minipass from 7.1.2 to 7.1.3
  - path-scurry from 2.0.0 to 2.0.2
- Updated lockfile to reflect changes in dependencies and their versions.
2026-03-03 03:42:01 +08:00

69 lines
1.7 KiB
JSON

{
"name": "@kevisual/ai",
"version": "0.0.26",
"description": "AI Center Services",
"main": "index.js",
"basename": "/root/ai-center-services",
"app": {
"entry": "dist/app.mjs",
"type": "system-app"
},
"files": [
"dist",
"src",
"types"
],
"scripts": {
"build": "npm run clean && bun bun.config.mjs",
"dev": "bun run --watch bun.config.mjs",
"clean": "rm -rf dist",
"pub": "envision pack -p -u"
},
"keywords": [
"kevisual",
"ai",
"tools"
],
"author": "abearxiong <xiongxiao@xiongxiao.me> (https://www.xiongxiao.me)",
"license": "MIT",
"packageManager": "pnpm@10.30.3",
"type": "module",
"publishConfig": {
"registry": "https://registry.npmjs.org/",
"access": "public"
},
"exports": {
".": "./dist/ai-provider-browser.js",
"./ai-provider": "./dist/ai-provider.js",
"./browser": "./dist/ai-provider-browser.js",
"./src/*": "./src/*"
},
"devDependencies": {
"@kevisual/router": "0.0.84",
"@kevisual/types": "^0.0.12",
"@kevisual/use-config": "^1.0.30",
"@types/bun": "^1.3.9",
"@types/crypto-js": "^4.2.2",
"@types/formidable": "^3.4.7",
"@types/node": "^25.3.3",
"cross-env": "^10.1.0",
"crypto-js": "^4.2.0",
"dayjs": "^1.11.19",
"dotenv": "^17.3.1",
"formidable": "^3.5.4",
"openai": "6.25.0",
"pm2": "^6.0.14",
"rimraf": "^6.1.3",
"typescript": "^5.9.3",
"vite": "^7.3.1"
},
"dependencies": {
"@kevisual/logger": "^0.0.4",
"@ai-sdk/anthropic": "^3.0.51",
"@ai-sdk/openai": "^3.0.38",
"@ai-sdk/openai-compatible": "^2.0.31",
"ai": "^6.0.106",
"@kevisual/permission": "^0.0.4",
"@kevisual/query": "^0.0.52"
}
}