forked from nktkas/hyperliquid
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdeno.json
More file actions
57 lines (57 loc) · 1.67 KB
/
deno.json
File metadata and controls
57 lines (57 loc) · 1.67 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
55
56
57
{
"name": "@nktkas/hyperliquid",
"version": "0.32.2",
"license": "MIT",
"tasks": {
"check": "deno fmt --check && deno lint && deno check --doc && deno task check:jsdoc && deno task check:export",
"check:jsdoc": "deno run -A .dev/jsdoc_sync_check.ts",
"check:export": "deno run -A .dev/export_sync_check.ts"
},
"exports": {
".": "./src/mod.ts",
"./signing": "./src/signing/mod.ts",
"./utils": "./src/utils/mod.ts",
"./api/exchange": "./src/api/exchange/mod.ts",
"./api/explorer": "./src/api/explorer/mod.ts",
"./api/info": "./src/api/info/mod.ts",
"./api/subscription": "./src/api/subscription/mod.ts"
},
"fmt": {
"lineWidth": 120
},
"lint": {
"rules": {
"tags": ["recommended"],
"include": [
"camelcase",
"default-param-last",
"eqeqeq",
"explicit-function-return-type",
"explicit-module-boundary-types",
"no-inferrable-types",
"no-non-null-asserted-optional-chain",
"no-self-compare",
"no-sparse-arrays",
"no-throw-literal",
"no-useless-rename"
],
"exclude": ["no-slow-types"]
},
"plugins": [
"./.dev/deno_style_lint_plugin.ts",
"./.dev/valibot_lint_plugin.ts",
"./.dev/project_valibot_lint_plugin.ts"
]
},
"publish": {
"exclude": [".dev", ".github", "docs", "tests"]
},
"imports": {
"@nktkas/rews": "jsr:@nktkas/rews@^2",
"@noble/hashes": "jsr:@noble/hashes@^2",
"@std/async/unstable-semaphore": "jsr:@std/async@1.1.1/unstable-semaphore",
"@std/msgpack/encode": "jsr:@std/msgpack@^1/encode",
"@valibot/valibot": "jsr:@valibot/valibot@1.3.1"
},
"lock": false
}