Files
Peter Steinberger 234df15a6d chore: refresh dependencies after seven-day cooldown (#128414)
* build(deps): refresh dependencies after cooldown

Apply dependency, toolchain, action, image, and exact tool updates released by the inclusive 2026-08-16 seven-day cutoff. Adapt owner boundaries for the resulting CUA, logging, Teams, Markdown, native, and test-harness contract changes while retaining versions blocked by upstream compatibility constraints.

* fix(ui): align markdown renderer env typing

* fix(deps): align postcss and mistral peer contracts

* fix(deps): repair refreshed dependency contracts

* fix(deps): retain tslog startup budget

* fix(ci): verify Android tools with SHA-256

* fix(ci): fence Android SDK cache version
2026-08-24 03:01:54 -07:00

98 lines
2.8 KiB
JSON

{
"name": "@openclaw/gateway-protocol",
"version": "2026.8.1",
"description": "Typed schemas and runtime validators for the OpenClaw Gateway WebSocket protocol",
"keywords": [
"gateway",
"openclaw",
"protocol",
"typebox",
"websocket"
],
"homepage": "https://github.com/openclaw/openclaw#readme",
"bugs": {
"url": "https://github.com/openclaw/openclaw/issues"
},
"license": "MIT",
"author": "OpenClaw Foundation (https://openclaw.org)",
"repository": {
"type": "git",
"url": "git+https://github.com/openclaw/openclaw.git",
"directory": "packages/gateway-protocol"
},
"files": [
"dist",
"LICENSE",
"README.md",
"CHANGELOG.md",
"protocol.schema.json"
],
"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",
"prepack": "pnpm run build && node --import tsx ../../scripts/protocol-gen.ts --out ./protocol.schema.json"
},
"dependencies": {
"typebox": "1.3.14"
},
"devDependencies": {
"@openclaw/normalization-core": "workspace:*"
},
"engines": {
"node": ">=22.19.0"
},
"publishConfig": {
"access": "public"
},
"openclaw": {
"release": {
"publishToNpm": true
}
}
}