-
Notifications
You must be signed in to change notification settings - Fork 0
/
deno.json
32 lines (32 loc) · 1.01 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
{
"name": "@wrnrlr/prelude",
"version": "0.1.7",
"exports": "./src/mod.ts",
"compilerOptions": {
"strict": false,
"checkJs": false,
"noImplicitThis": false,
"lib": ["dom", "dom.iterable", "dom.asynciterable", "deno.ns"]
},
"imports": {
"@std/assert": "jsr:@std/assert@^1.0.0",
"@std/fs": "jsr:@std/fs@^1.0.5",
"@std/path": "jsr:@std/path@^1.0.6",
"@std/testing": "jsr:@std/testing@^0.225.3",
"jsdom": "npm:jsdom",
"typedoc": "npm:typedoc@^0.26.6",
"vite": "npm:vite@^5.4.9",
"esbuild": "npm:esbuild@^0.24.0"
},
"tasks": {
"dev": "deno run -A npm:vite --config www/vite.config.js",
"test": "deno test -A ./test/*.[jt]s",
"docs": "deno run -A npm:typedoc --options www/typedoc.json",
"build": "deno run -A npm:vite build --mode production --config www/vite.config.js",
"release": "deno publish --allow-slow-types --allow-dirty && npm publish --access public",
"clean": "rm -rf dist/ www/dist www/docs"
},
"lint": {
"include": ["src"]
}
}