learning_ai_common_plat/packages/llm-router/package.json

30 lines
681 B
JSON

{
"name": "@bytelyst/llm-router",
"version": "0.1.1",
"description": "Pure-code LLM router for free-tier API providers with round-robin, fallback, and health tracking",
"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": "https://gitea.bytelyst.com/api/packages/ByteLyst/npm/"
}
}