mirror of
https://github.com/openclaw/openclaw.git
synced 2026-06-02 18:05:18 +00:00
* refactor: extract gateway client package * chore: drop generated gateway package artifacts * refactor: move gateway protocol package * refactor: remove old gateway protocol tree * test: keep auth compat split in run mode * test: expose gateway wrapper options for internals * fix: watch moved gateway package sources * test: normalize slash command import guard * chore: teach knip gateway package entries * ci: route gateway client package checks * fix: reuse ipaddr for gateway client hosts * fix: sync gateway protocol usage schema
37 lines
919 B
JSON
37 lines
919 B
JSON
{
|
|
"name": "@openclaw/gateway-client",
|
|
"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"
|
|
},
|
|
"./readiness": {
|
|
"types": "./dist/readiness.d.mts",
|
|
"import": "./dist/readiness.mjs",
|
|
"default": "./dist/readiness.mjs"
|
|
},
|
|
"./timeouts": {
|
|
"types": "./dist/timeouts.d.mts",
|
|
"import": "./dist/timeouts.mjs",
|
|
"default": "./dist/timeouts.mjs"
|
|
}
|
|
},
|
|
"scripts": {
|
|
"build": "tsdown src/index.ts src/readiness.ts src/timeouts.ts --no-config --platform node --format esm --dts --out-dir dist --clean"
|
|
},
|
|
"dependencies": {
|
|
"@openclaw/gateway-protocol": "workspace:*",
|
|
"ipaddr.js": "2.4.0",
|
|
"ws": "8.21.0"
|
|
}
|
|
}
|