-
Notifications
You must be signed in to change notification settings - Fork 3
/
deno.jsonc
43 lines (43 loc) · 1.33 KB
/
deno.jsonc
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
{
"name": "@codehz/mtproto",
"version": "0.6.6",
"exports": {
".": "./mod.ts",
"./types": "./types.ts",
"./auth/bot": "./auth/bot.ts",
"./auth/user": "./auth/user.ts",
"./rpc/mod": "./rpc/mod.ts",
"./storage/jsondb": "./storage/jsondb.ts",
"./storage/kv": "./storage/kv.ts",
"./storage/types": "./storage/types.ts",
"./storage/web": "./storage/web.ts",
"./transport/codec/abridged": "./transport/codec/abridged.ts",
"./transport/codec/full": "./transport/codec/full.ts",
"./transport/codec/intermediate": "./transport/codec/intermediate.ts",
"./transport/codec/obfuscated": "./transport/codec/obfuscated.ts",
"./transport/codec/padded": "./transport/codec/padded.ts",
"./transport/connection/deno-tcp": "./transport/connection/deno-tcp.ts",
"./transport/connection/websocket-stream": "./transport/connection/websocket-stream.ts",
"./transport/connection/websocket": "./transport/connection/websocket.ts",
"./transport/dcmap": "./transport/dcmap.ts",
},
"publish": {
"exclude": ["scripts/"]
},
"compilerOptions": {
"allowJs": true,
"checkJs": false
},
"lint": {
"exclude": ["gen/"],
"rules": {
"exclude": ["no-explicit-any"]
}
},
"fmt": {
"exclude": ["gen/"]
},
"imports": {
"@std/assert": "jsr:@std/assert@^0.223.0"
}
}