-
Notifications
You must be signed in to change notification settings - Fork 11
/
deno.json
53 lines (53 loc) · 1.34 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
43
44
45
46
47
48
49
50
51
52
53
{
"name": "@manzt/quak",
"version": "0.0.1",
"exports": "./lib/mod.ts",
"license": "MIT",
"tasks": {
"dev": "deno run -A --node-modules-dir npm:esbuild --bundle --minify --loader:.css=text --format=esm --outfile=src/quak/widget.js lib/widget.ts --sourcemap=inline --watch",
"build": "deno run -A --node-modules-dir npm:esbuild --bundle --minify --loader:.css=text --format=esm --outfile=src/quak/widget.js lib/widget.ts",
"vite": "deno run -A --node-modules-dir npm:vite",
"check": "deno check lib/widget.ts"
},
"compilerOptions": {
"verbatimModuleSyntax": true,
"lib": [
"esnext",
"dom",
"dom.iterable"
]
},
"publish": {
"include": ["lib", "README.md"]
},
"imports": {
"@js-temporal/polyfill": "npm:@js-temporal/polyfill@~0.4.4",
"@lukeed/uuid": "npm:@lukeed/uuid@^2.0.1",
"@preact/signals-core": "npm:@preact/signals-core@^1.8.0",
"@uwdata/flechette": "npm:@uwdata/flechette@^1.1.0",
"@uwdata/mosaic-core": "npm:@uwdata/mosaic-core@~0.11.0",
"@uwdata/mosaic-plot": "npm:@uwdata/mosaic-plot@~0.11.0",
"@uwdata/mosaic-sql": "npm:@uwdata/mosaic-sql@~0.11.0",
"d3": "npm:d3@^7.9.0",
"htl": "npm:htl@~0.3.1"
},
"exclude": [
".venv",
"src",
"examples",
"README.md",
"CONTRIBUTING.md",
"dist",
"cli"
],
"fmt": {
"useTabs": true
},
"lint": {
"rules": {
"exclude": [
"prefer-const"
]
}
}
}