-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdeno.jsonc
More file actions
37 lines (37 loc) · 1.12 KB
/
deno.jsonc
File metadata and controls
37 lines (37 loc) · 1.12 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
{
"name": "@diskuto/sync",
"version": "0.2.1",
"exports": {
".": "./src/main.ts",
"./lib": "./src/lib.ts"
},
"tasks": {
"sync": "./src/main.ts sync",
"test": { "dependencies": ["check"] },
"check": { "dependencies": ["check:types", "check:publish", "lint"] },
"check:types": "deno check src/main.ts src/lib.ts",
"check:publish": {
"command": "deno publish --dry-run --allow-dirty",
"dependencies": ["check:types"]
},
"lint": "deno lint"
},
"fmt": {
"indentWidth": 4
},
"imports": {
"@cliffy/command": "jsr:@cliffy/command@1.0.0-rc.4",
"@david/dax": "jsr:@david/dax@^0.43.0",
"@diskuto/client": "jsr:@diskuto/client@^0.10.3",
"@nfnitloop/better-iterators": "jsr:@nfnitloop/better-iterators@^1.5.0",
"@std/assert": "jsr:@std/assert@1",
"@std/cli": "jsr:@std/cli@^1.0.6",
"@std/toml": "jsr:@std/toml@^1.0.1",
"arktype": "npm:arktype@^2.1.15",
},
"lint": {
"plugins": [
"jsr:@nfnitloop/lints@^1.3.0"
]
}
}