-
Notifications
You must be signed in to change notification settings - Fork 38
/
deno.jsonc
68 lines (68 loc) · 1.56 KB
/
deno.jsonc
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
58
59
60
61
62
63
64
65
66
67
68
{
"name": "@deno/dnt",
"version": "0.0.0",
"tasks": {
"test": "deno test -A",
"build": "deno run -A jsr:@deno/[email protected] --out lib/pkg"
},
"lint": {
"rules": {
"exclude": [
"no-explicit-any",
"camelcase"
]
}
},
"format": {
"exclude": [
"!lib/pkg/"
]
},
"publish": {
"exclude": [
"!lib/pkg/",
"rs-lib/",
"tests/",
"Cargo.lock",
"deno.lock",
".clippy.toml",
".rustfmt.toml",
".github",
".gitattributes",
"**/*.toml",
"**/*.test.ts"
]
},
"exclude": [
"target/",
"wasm/target/",
"lib/pkg/",
"rs-lib/src/polyfills/scripts/",
"tests/declaration_import_project/npm",
"tests/import_map_project/npm",
"tests/json_module_project/npm",
"tests/module_mappings_project/npm",
"tests/node_types_project/npm",
"tests/package_mappings_project/npm",
"tests/polyfill_array_find_last_project/npm",
"tests/polyfill_project/npm",
"tests/shim_project/npm",
"tests/test_project/npm",
"tests/tla_project/npm",
"tests/undici_project/npm",
"tests/web_socket_project/npm"
],
"imports": {
"@deno/cache-dir": "jsr:@deno/cache-dir@^0.10.3",
"@std/assert": "jsr:@std/assert@1",
"@std/fmt": "jsr:@std/fmt@1",
"@std/fs": "jsr:@std/fs@1",
"@std/path": "jsr:@std/path@1",
"@ts-morph/bootstrap": "jsr:@ts-morph/bootstrap@^0.24.0",
"code-block-writer": "jsr:@david/code-block-writer@^13.0.2"
},
"exports": {
".": "./mod.ts",
"./transform": "./transform.ts"
}
}