ktx/packages/llm/package.json

51 lines
1.1 KiB
JSON
Raw Permalink Normal View History

2026-05-10 23:12:26 +02:00
{
2026-05-10 23:51:24 +02:00
"name": "@ktx/llm",
2026-05-10 23:12:26 +02:00
"version": "0.0.0-private",
2026-05-10 23:51:24 +02:00
"description": "Canonical KTX LLM and embedding provider package",
2026-05-10 23:12:26 +02:00
"private": true,
"type": "module",
"engines": {
"node": ">=22.0.0"
},
"main": "dist/index.js",
"types": "dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js",
"default": "./dist/index.js"
},
"./package.json": "./package.json"
},
"files": [
"dist"
],
"scripts": {
"build": "tsc -p tsconfig.json",
"test": "vitest run",
"type-check": "tsc -p tsconfig.json --noEmit"
},
"dependencies": {
"@ai-sdk/anthropic": "3.0.77",
"@ai-sdk/devtools": "0.0.17",
"@ai-sdk/google-vertex": "^4.0.128",
"ai": "^6.0.180",
"openai": "^6.37.0"
2026-05-10 23:12:26 +02:00
},
"devDependencies": {
"@types/node": "^25.7.0",
"typescript": "^6.0.3",
"vitest": "^4.1.6"
2026-05-10 23:12:26 +02:00
},
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "git+https://github.com/kaelio/ktx.git",
"directory": "packages/llm"
},
"bugs": {
"url": "https://github.com/kaelio/ktx/issues"
},
"homepage": "https://github.com/kaelio/ktx#readme"
}