mirror of
https://github.com/openclaw/openclaw.git
synced 2026-06-03 19:44:06 +00:00
* refactor: extract llm core packages * chore: drop generated llm package artifacts * fix: align llm package export artifacts * test: fix moving main CI expectations * fix: align llm core subpath aliases * fix: use llm package exports * fix: stabilize llm package boundary artifacts * fix: sync llm boundary path contract * test: isolate crabbox provider env * test: pin crabbox configured-provider cases * test: apply crabbox lease provider override
32 lines
708 B
JSON
32 lines
708 B
JSON
{
|
|
"name": "@openclaw/llm-runtime",
|
|
"version": "0.0.0-private",
|
|
"private": true,
|
|
"files": [
|
|
"dist"
|
|
],
|
|
"type": "module",
|
|
"main": "./dist/index.mjs",
|
|
"types": "./dist/index.d.mts",
|
|
"exports": {
|
|
".": {
|
|
"types": "./dist/index.d.mts",
|
|
"import": "./dist/index.mjs",
|
|
"default": "./dist/index.mjs"
|
|
},
|
|
"./api-registry": {
|
|
"types": "./dist/api-registry.d.mts",
|
|
"import": "./dist/api-registry.mjs",
|
|
"default": "./dist/api-registry.mjs"
|
|
},
|
|
"./stream": {
|
|
"types": "./dist/stream.d.mts",
|
|
"import": "./dist/stream.mjs",
|
|
"default": "./dist/stream.mjs"
|
|
}
|
|
},
|
|
"dependencies": {
|
|
"@openclaw/llm-core": "workspace:*"
|
|
}
|
|
}
|