-
Notifications
You must be signed in to change notification settings - Fork 9
/
deno.json
42 lines (42 loc) · 1.31 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
{
"name": "@olli/kvdex",
"version": "3.0.2",
"exports": {
".": "./mod.ts",
"./zod": "./src/ext/zod/mod.ts",
"./migrate": "./src/ext/migrate/mod.ts",
"./kv": "./src/ext/kv/mod.ts",
"./encoding": "./src/ext/encoding/mod.ts",
"./encoding/json": "./src/ext/encoding/json/mod.ts",
"./encoding/v8": "./src/ext/encoding/v8/mod.ts",
"./encoding/brotli": "./src/ext/encoding/brotli/mod.ts"
},
"tasks": {
"check": "deno check **/*.ts",
"test": "deno test --allow-write --allow-read --allow-ffi --allow-sys --unstable-kv --trace-leaks",
"bench": "deno bench --unstable-kv",
"prep": "deno task check && deno fmt && deno lint && deno publish --dry-run --allow-dirty && deno task test",
"cache": "deno cache -r mod.ts && deno cache -r ext/zod.ts && deno cache -r ext/migrate.ts"
},
"lint": {
"rules": {
"exclude": ["no-explicit-any"],
"include": ["no-console"]
}
},
"test": {
"include": ["./tests"]
},
"bench": {
"include": ["./benchmarks"]
},
"imports": {
"@deno/kv": "npm:@deno/kv@^0.8.4",
"@std/assert": "jsr:@std/[email protected]",
"@std/bytes": "jsr:@std/bytes@^1.0.4",
"@std/cli": "jsr:@std/cli@^1.0.6",
"@std/collections": "jsr:@std/collections@^1.0.9",
"@std/ulid": "jsr:@std/ulid@^1.0.0",
"zod": "npm:zod@^3.23.8"
}
}