@openclaw/gateway-protocol 0.0.0 → 2026.7.2-beta.5

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,11 +1,93 @@
1
1
  {
2
2
  "name": "@openclaw/gateway-protocol",
3
- "version": "0.0.0",
4
- "description": "Reserved package name for the OpenClaw Gateway protocol.",
3
+ "version": "2026.7.2-beta.5",
4
+ "description": "Typed schemas and runtime validators for the OpenClaw Gateway WebSocket protocol",
5
+ "keywords": [
6
+ "gateway",
7
+ "openclaw",
8
+ "protocol",
9
+ "typebox",
10
+ "websocket"
11
+ ],
12
+ "homepage": "https://github.com/openclaw/openclaw#readme",
13
+ "bugs": {
14
+ "url": "https://github.com/openclaw/openclaw/issues"
15
+ },
16
+ "license": "MIT",
17
+ "author": "OpenClaw Foundation (https://openclaw.org)",
5
18
  "repository": {
6
19
  "type": "git",
7
- "url": "https://github.com/openclaw/openclaw"
20
+ "url": "git+https://github.com/openclaw/openclaw.git",
21
+ "directory": "packages/gateway-protocol"
8
22
  },
9
- "license": "MIT",
10
- "private": false
11
- }
23
+ "files": [
24
+ "dist",
25
+ "LICENSE",
26
+ "README.md",
27
+ "CHANGELOG.md",
28
+ "protocol.schema.json"
29
+ ],
30
+ "sideEffects": false,
31
+ "type": "module",
32
+ "main": "./dist/index.mjs",
33
+ "types": "./dist/index.d.mts",
34
+ "exports": {
35
+ ".": {
36
+ "types": "./dist/index.d.mts",
37
+ "import": "./dist/index.mjs",
38
+ "default": "./dist/index.mjs"
39
+ },
40
+ "./client-info": {
41
+ "types": "./dist/client-info.d.mts",
42
+ "import": "./dist/client-info.mjs",
43
+ "default": "./dist/client-info.mjs"
44
+ },
45
+ "./connect-error-details": {
46
+ "types": "./dist/connect-error-details.d.mts",
47
+ "import": "./dist/connect-error-details.mjs",
48
+ "default": "./dist/connect-error-details.mjs"
49
+ },
50
+ "./frame-guards": {
51
+ "types": "./dist/frame-guards.d.mts",
52
+ "import": "./dist/frame-guards.mjs",
53
+ "default": "./dist/frame-guards.mjs"
54
+ },
55
+ "./gateway-error-details": {
56
+ "types": "./dist/gateway-error-details.d.mts",
57
+ "import": "./dist/gateway-error-details.mjs",
58
+ "default": "./dist/gateway-error-details.mjs"
59
+ },
60
+ "./schema": {
61
+ "types": "./dist/schema.d.mts",
62
+ "import": "./dist/schema.mjs",
63
+ "default": "./dist/schema.mjs"
64
+ },
65
+ "./startup-unavailable": {
66
+ "types": "./dist/startup-unavailable.d.mts",
67
+ "import": "./dist/startup-unavailable.mjs",
68
+ "default": "./dist/startup-unavailable.mjs"
69
+ },
70
+ "./version": {
71
+ "types": "./dist/version.d.mts",
72
+ "import": "./dist/version.mjs",
73
+ "default": "./dist/version.mjs"
74
+ }
75
+ },
76
+ "dependencies": {
77
+ "typebox": "1.3.6"
78
+ },
79
+ "engines": {
80
+ "node": ">=22.19.0"
81
+ },
82
+ "publishConfig": {
83
+ "access": "public"
84
+ },
85
+ "openclaw": {
86
+ "release": {
87
+ "publishToNpm": true
88
+ }
89
+ },
90
+ "scripts": {
91
+ "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"
92
+ }
93
+ }