-
Notifications
You must be signed in to change notification settings - Fork 46
/
deno.json
33 lines (33 loc) · 973 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
33
{
"name": "@luca/esbuild-deno-loader",
"version": "0.11.0",
"exports": {
".": "./mod.ts",
"./esbuild_types": "./src/esbuild_types.ts"
},
"imports": {
"@std/assert": "jsr:@std/assert@^1.0.6",
"@std/bytes": "jsr:@std/bytes@^1.0.2",
"@std/encoding": "jsr:@std/encoding@^1.0.5",
"@std/fs": "jsr:@std/fs@^1.0.4",
"@std/path": "jsr:@std/path@^1.0.6"
},
"lock": false,
"tasks": {
"test": "deno test -A --parallel --trace-leaks",
"check:types": "deno check **/*.ts",
"ok": "deno fmt --check && deno lint && deno task check:types && deno task test",
"wasmbuild": "deno run -A jsr:@deno/[email protected] --sync --out src/wasm"
},
"fmt": { "exclude": ["dist", "target"] },
"lint": { "exclude": ["dist", "target", "testdata"] },
"publish": {
"exclude": [
"testdata/",
"*_test.ts",
"!src/wasm/loader.generated.d.ts",
"!src/wasm/loader.generated.js",
"!src/wasm/snippets/"
]
}
}