26925ae644
Refs #3163. Adds the @codewhale/runtime-sdk workspace with typed fleet Runtime API helpers, protocol-shaped TypeScript declarations, JSON/SSE event fixture handling, and typed RuntimeCapabilityError failures for create/event-stream endpoints that the Rust API has not exposed yet. Documents the SDK contract in docs/RUNTIME_API.md and wires npm workspace verification through npm test --workspace @codewhale/runtime-sdk.
31 lines
598 B
JSON
31 lines
598 B
JSON
{
|
|
"name": "@codewhale/runtime-sdk",
|
|
"version": "0.8.60",
|
|
"description": "Typed JavaScript helpers for CodeWhale Runtime API fleet endpoints.",
|
|
"license": "MIT",
|
|
"type": "module",
|
|
"main": "index.js",
|
|
"types": "index.d.ts",
|
|
"exports": {
|
|
".": {
|
|
"types": "./index.d.ts",
|
|
"default": "./index.js"
|
|
}
|
|
},
|
|
"files": [
|
|
"index.js",
|
|
"index.d.ts",
|
|
"README.md",
|
|
"package.json"
|
|
],
|
|
"scripts": {
|
|
"test": "node --test test/*.test.mjs && node --check index.js"
|
|
},
|
|
"engines": {
|
|
"node": ">=18"
|
|
},
|
|
"publishConfig": {
|
|
"access": "public"
|
|
}
|
|
}
|