-
Notifications
You must be signed in to change notification settings - Fork 6
/
deno.json
47 lines (47 loc) · 1.92 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
{
"name": "@kitsonk/kview",
"version": "0.15.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/fresh@1.7.3/",
"$islands/": "./islands/",
"$utils/": "./utils/",
"@deno/gfm": "jsr:/@deno/gfm@0.9",
"@kitsonk/kv-toolbox": "jsr:/@kitsonk/kv-toolbox@0.20.1",
"@oak/commons/": "jsr:/@oak/commons@~1/",
"@preact/signals": "npm:/@preact/signals@1.3.0",
"@preact/signals-core": "npm:/@preact/signals-core@1.8.0",
"@std/assert/": "jsr:/@std/assert@~1/",
"@std/async/": "jsr:/@std/async@~1/",
"@std/crypto/": "jsr:/@std/crypto@~1/",
"@std/dotenv/": "jsr:/@std/dotenv@0.225/",
"@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:/preact@10.24.3",
"preact-render-to-string": "npm:/preact-render-to-string@6.5.11",
"prismjs": "npm:/prismjs@1.29.0",
"tailwindcss": "npm:/tailwindcss@3.4.14",
"tailwindcss/plugin": "npm:/tailwindcss@3.4.14/plugin.js"
},
"compilerOptions": { "jsx": "react-jsx", "jsxImportSource": "preact" },
"exclude": ["**/_fresh/*"]
}