-
Notifications
You must be signed in to change notification settings - Fork 1
/
deno.json
35 lines (35 loc) · 1019 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
34
35
{
"name": "@mxdvl/mononykus",
"version": "0.7.9",
"license": "MIT",
"exports": "./src/build.ts",
"tasks": {
"build": "deno run -A src/build.ts --site_dir src/_site",
"dev": "deno run -A src/build.ts --site_dir src/_site --watch --base=mononykus"
},
"compilerOptions": {
"strict": true,
"lib": ["dom", "dom.iterable", "dom.asynciterable", "deno.ns"],
"checkJs": true,
"noUncheckedIndexedAccess": true
},
"lint": {
"exclude": ["build", "src/_site/build", ".cache"]
},
"fmt": {
"useTabs": true,
"exclude": ["build", "src/_site/build", ".cache"]
},
"imports": {
"@luca/esbuild-deno-loader": "jsr:@luca/esbuild-deno-loader@^0.10.3",
"@std/assert": "jsr:@std/assert@^0.226.0",
"@std/cli": "jsr:@std/cli@^0.224.7",
"@std/fs": "jsr:@std/fs@^0.229.3",
"@std/http": "jsr:@std/http@^0.224.5",
"@std/path": "jsr:@std/path@^0.225.2",
"@std/testing": "jsr:@std/testing@^0.225.2",
"esbuild": "npm:[email protected]",
"prettier": "npm:[email protected]",
"svelte": "npm:[email protected]"
}
}