forked from denoland/deno_cache_dir
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdeno.json
More file actions
34 lines (34 loc) · 880 Bytes
/
deno.json
File metadata and controls
34 lines (34 loc) · 880 Bytes
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
{
"name": "@deno/cache-dir",
"version": "0.0.0",
"tasks": {
"test": "deno test --allow-read --allow-write --allow-net --allow-env",
"build": "deno task wasmbuild",
"wasmbuild": "deno run -A jsr:@deno/wasmbuild@0.16.0 --sync --no-default-features --features wasm"
},
"lint": {
"rules": {
"include": ["no-console"]
}
},
"publish": {
"exclude": [
"Cargo.lock",
"rs_lib",
"**/*.toml",
"!lib/snippets/",
"!lib/deno_cache_dir.generated.js",
"!lib/deno_cache_dir.generated.d.ts"
]
},
"exclude": ["target"],
"exports": "./mod.ts",
"imports": {
"@deno/graph": "jsr:@deno/graph@^0.86.0",
"@std/assert": "jsr:@std/assert@^1.0.8",
"@std/fmt": "jsr:@std/fmt@^1.0.3",
"@std/fs": "jsr:@std/fs@^1.0.6",
"@std/io": "jsr:@std/io@^0.225.0",
"@std/path": "jsr:@std/path@^1.0.8"
}
}