-
-
Notifications
You must be signed in to change notification settings - Fork 80.8k
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.59 KB
/
Copy pathpackage.json
File metadata and controls
54 lines (54 loc) · 1.59 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
{
"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"
},
"./frame-guards": {
"types": "./dist/frame-guards.d.mts",
"import": "./dist/frame-guards.mjs",
"default": "./dist/frame-guards.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/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"
}
}