-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathdeno.json
More file actions
35 lines (35 loc) · 931 Bytes
/
deno.json
File metadata and controls
35 lines (35 loc) · 931 Bytes
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
{
"$schema": "https://raw.githubusercontent.com/denoland/deno/refs/heads/main/cli/schemas/config-file.v1.json",
"name": "@zhexin/typebox",
"version": "1.13.31",
"exports": {
".": "./mod.ts",
"./certificate": "./certificate.ts",
"./dns": "./dns.ts",
"./endpoint": "./endpoint.ts",
"./experimental": "./experimental.ts",
"./inbound": "./inbound.ts",
"./log": "./log.ts",
"./ntp": "./ntp.ts",
"./outbound": "./outbound.ts",
"./route": "./route.ts",
"./service": "./service.ts"
},
"fmt": {
"lineWidth": 160,
"indentWidth": 4,
"semiColons": false,
"singleQuote": true,
"proseWrap": "preserve"
},
"publish": {
"include": [
"./*.ts",
"./README.md"
],
"exclude": [
".github",
"./*.test.ts"
]
}
}