mirror of
https://github.com/openclaw/openclaw.git
synced 2026-07-22 11:41:10 +00:00
* fix(codex): drain dynamic-tool handlers before side-thread cleanup * refactor(protocol): rename question ids to questionId and flatten answer maps * refactor(protocol): slim worker stack and unify session-catalog shapes * refactor(protocol): delete dead public surface and polish packaging * feat(protocol): track release-train vintage on gateway methods and schemas * fix(apps): align question surfaces merged from main with reshaped protocol * test(health): shape secret fixtures to scanner-safe token names * test(health): use scanner-safe token fixtures * fix(apps): align question surfaces merged from main with reshaped protocol * fix(ci): prove reshaped protocol in shallow checks * fix(ui): align sidebar question fixtures with protocol * fix(apps): read flat Swift question answers * fix(apps): align question surfaces merged from main with reshaped protocol * fix(apps): refresh native question inventory * fix(apps): align macOS snapshot fixtures with protocol * fix(ui): align narration question fixture with protocol
61 lines
1.8 KiB
JSON
61 lines
1.8 KiB
JSON
{
|
|
"name": "@openclaw/gateway-protocol",
|
|
"version": "0.0.0-private",
|
|
"private": true,
|
|
"files": [
|
|
"dist"
|
|
],
|
|
"sideEffects": false,
|
|
"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"
|
|
},
|
|
"./client-info": {
|
|
"types": "./dist/client-info.d.mts",
|
|
"import": "./dist/client-info.mjs",
|
|
"default": "./dist/client-info.mjs"
|
|
},
|
|
"./connect-error-details": {
|
|
"types": "./dist/connect-error-details.d.mts",
|
|
"import": "./dist/connect-error-details.mjs",
|
|
"default": "./dist/connect-error-details.mjs"
|
|
},
|
|
"./frame-guards": {
|
|
"types": "./dist/frame-guards.d.mts",
|
|
"import": "./dist/frame-guards.mjs",
|
|
"default": "./dist/frame-guards.mjs"
|
|
},
|
|
"./gateway-error-details": {
|
|
"types": "./dist/gateway-error-details.d.mts",
|
|
"import": "./dist/gateway-error-details.mjs",
|
|
"default": "./dist/gateway-error-details.mjs"
|
|
},
|
|
"./schema": {
|
|
"types": "./dist/schema.d.mts",
|
|
"import": "./dist/schema.mjs",
|
|
"default": "./dist/schema.mjs"
|
|
},
|
|
"./startup-unavailable": {
|
|
"types": "./dist/startup-unavailable.d.mts",
|
|
"import": "./dist/startup-unavailable.mjs",
|
|
"default": "./dist/startup-unavailable.mjs"
|
|
},
|
|
"./version": {
|
|
"types": "./dist/version.d.mts",
|
|
"import": "./dist/version.mjs",
|
|
"default": "./dist/version.mjs"
|
|
}
|
|
},
|
|
"scripts": {
|
|
"build": "tsdown src/index.ts src/client-info.ts src/connect-error-details.ts src/frame-guards.ts src/gateway-error-details.ts src/schema.ts src/startup-unavailable.ts src/version.ts --no-config --platform node --format esm --dts --out-dir dist --clean"
|
|
},
|
|
"dependencies": {
|
|
"typebox": "1.3.3"
|
|
}
|
|
}
|