-
Notifications
You must be signed in to change notification settings - Fork 0
/
deno.json
33 lines (33 loc) · 1.29 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
{
"name": "@kt3k/cell",
"version": "0.7.6",
"exports": {
".": "./mod.ts"
},
"compilerOptions": {
"lib": ["deno.ns", "deno.unstable", "dom", "esnext"]
},
"exclude": ["docs/dist.js", "docs/dist.min.js"],
"tasks": {
"test": "deno test",
"cov": "deno test --coverage && deno coverage --html && deno coverage --lcov > lcov.info",
"dist": "deno run -A jsr:@kt3k/pack mod.ts > docs/dist.js",
"min": "deno task dist && deno run -A npm:terser --compress --mangle --toplevel -o docs/dist.min.js -- docs/dist.js",
"size": "deno task min && deno run --allow-read https://deno.land/x/[email protected]/cli.ts --include-original docs/dist.min.js",
"twd": "deno run -A --allow-read=. --allow-write=style.css --allow-net=deno.land,esm.sh,cdn.esm.sh https://deno.land/x/[email protected]/cli.ts -o docs/style.css docs/index.html",
"start": "deno run --allow-sys --allow-read=. --allow-net=0.0.0.0:8000 jsr:@std/http/file-server docs --port 8000"
},
"imports": {
"@b-fuze/deno-dom": "jsr:@b-fuze/deno-dom@^0.1.47",
"@kt3k/signal": "jsr:@kt3k/signal@^0.3.0",
"@std/assert": "jsr:@std/assert@^1.0.0",
"@std/async": "jsr:@std/async@^1.0.0",
"@std/testing": "jsr:@std/testing@^1.0.0"
},
"fmt": {
"semiColons": false,
"exclude": [
".bmp.yml"
]
}
}