-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathdeno.json
48 lines (48 loc) · 1.98 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
{
"name": "@kitsonk/kview",
"version": "0.16.0",
"exports": { "./install": "./install.ts" },
"publish": {
"exclude": [".vscode", ".github", "assets", "dev.ts", "minify_svg.ts"]
},
"lock": false,
"tasks": {
"check": "deno fmt --check && deno lint && deno check --unstable-kv **/*.ts && deno check --unstable-kv **/*.tsx",
"test": "deno test --unstable-kv",
"start": "deno run -A --unstable-kv --watch=static/,routes/ dev.ts",
"build": "deno run -A --unstable-kv dev.ts build",
"minify": "deno run -A minify_svg.ts",
"preview": "deno run -A --unstable-kv main.ts",
"update": "deno run -A -r https://fresh.deno.dev/update ."
},
"lint": { "rules": { "tags": ["fresh", "recommended"] } },
"imports": {
"$components/": "./components/",
"$fresh/": "https://deno.land/x/[email protected]/",
"$islands/": "./islands/",
"$utils/": "./utils/",
"@deno/gfm": "jsr:/@deno/gfm@^0.10",
"@deno/kv-utils": "jsr:@deno/kv-utils@^0.1.3",
"@kitsonk/kv-toolbox": "jsr:/@kitsonk/[email protected]",
"@oak/commons/": "jsr:/@oak/commons@~1/",
"@preact/signals": "npm:/@preact/[email protected]",
"@preact/signals-core": "npm:/@preact/[email protected]",
"@std/assert/": "jsr:/@std/assert@~1/",
"@std/async/": "jsr:/@std/async@~1/",
"@std/crypto/": "jsr:/@std/crypto@~1/",
"@std/dotenv/": "jsr:/@std/[email protected]/",
"@std/encoding/": "jsr:/@std/encoding@~1/",
"@std/fmt/": "jsr:/@std/fmt@~1/",
"@std/html/": "jsr:/@std/html@~1/",
"@std/media-types/": "jsr:/@std/media-types@~1/",
"@std/path/": "jsr:/@std/path@~1/",
"object-inspect": "npm:object-inspect@^1.13.2",
"preact": "npm:/[email protected]",
"preact-render-to-string": "npm:/[email protected]",
"prismjs": "npm:/[email protected]",
"tailwindcss": "npm:/[email protected]",
"tailwindcss/plugin": "npm:/[email protected]/plugin.js"
},
"compilerOptions": { "jsx": "react-jsx", "jsxImportSource": "preact" },
"exclude": ["**/_fresh/*"]
}