mirror of
https://github.com/openclaw/openclaw.git
synced 2026-06-01 12:26:47 +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
50 lines
1.4 KiB
JSON
50 lines
1.4 KiB
JSON
{
|
|
"name": "@openclaw/gateway-protocol",
|
|
"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"
|
|
},
|
|
"./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"
|
|
},
|
|
"./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/schema.ts src/startup-unavailable.ts src/version.ts --no-config --platform node --format esm --dts --out-dir dist --clean"
|
|
},
|
|
"dependencies": {
|
|
"typebox": "1.1.38"
|
|
}
|
|
}
|