-
-
Notifications
You must be signed in to change notification settings - Fork 23
/
Copy pathdeno.json
32 lines (32 loc) · 948 Bytes
/
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
{
"workspace": ["./packages/linejs", "./packages/types"],
"fmt": {
"indentWidth": 2,
"singleQuote": false,
"useTabs": true,
"exclude": [
"./docs/"
]
},
"imports": {
"@std/assert": "jsr:@std/assert@^1.0.2",
"curve25519-js": "npm:curve25519-js@^0.0.4",
"node-bignumber": "npm:node-bignumber@^1.2.2",
"thrift": "npm:thrift@^0.20.0",
"tweetnacl": "npm:tweetnacl@^1.0.3",
"jsdom": "npm:jsdom@25.0.0",
"node-types": "npm:@types/node@latest",
"node-int64": "npm:node-int64@^0.4.0"
},
"tasks": {
"format": "deno run -A npm:@biomejs/biome format --write ./packages/**/*.ts",
"format:check": "deno run -A npm:@biomejs/biome format ./packages/**/*.ts",
"lint": "deno run -A npm:@biomejs/biome lint ./packages/**/*.ts",
"check": "deno run -A npm:@biomejs/biome check ./packages/**/*.ts",
"docs:build": "cd docs && deno task build"
},
"compilerOptions": {
"types": ["node-types"]
},
"nodeModulesDir": "auto"
}