learning_ai_common_plat/packages/ollama-client/package.json

30 lines
671 B
JSON

{
"name": "@bytelyst/ollama-client",
"version": "0.1.1",
"description": "Shared Ollama API client — streaming chat, embeddings, model management, health checks",
"type": "module",
"exports": {
".": {
"import": "./dist/index.js",
"types": "./dist/index.d.ts"
}
},
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"build": "tsc",
"test": "vitest run --pool forks",
"typecheck": "tsc --noEmit"
},
"devDependencies": {
"vitest": "^3.0.0",
"typescript": "^5.7.0"
},
"publishConfig": {
"registry": "http://localhost:3300/api/packages/bytelyst/npm/"
}
}