-
Notifications
You must be signed in to change notification settings - Fork 7
/
deno.json
95 lines (95 loc) · 2.79 KB
/
deno.json
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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
{
"name": "@ayonli/jsext",
"version": "1.4.2",
"exports": {
".": "./index.ts",
"./archive": "./archive.ts",
"./array": "./array.ts",
"./async": "./async.ts",
"./bytes": "./bytes.ts",
"./chan": "./chan.ts",
"./class": "./class.ts",
"./class/decorators": "./class/decorators.ts",
"./cli": "./cli.ts",
"./collections": "./collections.ts",
"./debounce": "./debounce.ts",
"./deprecate": "./deprecate.ts",
"./dialog": "./dialog.ts",
"./dialog/cli": "./dialog/cli.ts",
"./dialog/web": "./dialog/web.ts",
"./encoding": "./encoding.ts",
"./error": "./error.ts",
"./event": "./event.ts",
"./filetype": "./filetype.ts",
"./fs": "./fs.ts",
"./fs/web": "./fs/web.ts",
"./func": "./func.ts",
"./hash": "./hash.ts",
"./hash/web": "./hash/web.ts",
"./http": "./http.ts",
"./http/internal": "./http/internal.ts",
"./http/util": "./http/util.ts",
"./json": "./json.ts",
"./lock": "./lock.ts",
"./math": "./math.ts",
"./mixin": "./mixin.ts",
"./module": "./module.ts",
"./module/web": "./module/web.ts",
"./net": "./net.ts",
"./number": "./number.ts",
"./object": "./object.ts",
"./parallel": "./parallel.ts",
"./path": "./path.ts",
"./pipe": "./pipe.ts",
"./queue": "./queue.ts",
"./reader": "./reader.ts",
"./result": "./result.ts",
"./run": "./run.ts",
"./runtime": "./runtime.ts",
"./sse": "./sse.ts",
"./string": "./string.ts",
"./throttle": "./throttle.ts",
"./try": "./try.ts",
"./types": "./types.ts",
"./wrap": "./wrap.ts",
"./ws": "./ws.ts",
"./ws/client": "./ws/client.ts",
"./worker.ts": "./worker.ts"
},
"imports": {
"iconv-lite": "npm:iconv-lite@^0.6.3",
"sudo-prompt": "npm:sudo-prompt@^9.2.1",
"ws": "npm:ws@^8.18.0",
"zod": "npm:zod@^3.23.8"
},
"publish": {
"include": [
"deno.json",
"LICENSE",
"README.md",
"**/*.ts",
"external/**/*",
"bundle/worker.mjs",
"bundle/worker-node.mjs"
],
"exclude": [
"**/*.test.ts",
"*/augment.ts",
"*/index.ts",
"augment.ts",
"augment/*",
"workerd/*",
"!workerd/types.ts",
"worker-node.ts",
"test-deno.ts",
"lib.*.d.ts",
"bundle.ts",
"mixins.ts",
"examples/*",
"node_modules/*",
"promise/*",
"uint8array/*",
"types/*"
]
}
}