-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathdeno.json
More file actions
50 lines (50 loc) · 2.04 KB
/
deno.json
File metadata and controls
50 lines (50 loc) · 2.04 KB
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
{
"name": "@kitsonk/kview",
"version": "0.17.3",
"exports": { "./install": "./install.ts" },
"publish": {
"exclude": [".vscode", ".github", "dev.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",
"preview": "deno run -A --unstable-kv main.ts",
"update": "deno run -A -r https://fresh.deno.dev/update ."
},
"lint": { "rules": { "tags": ["fresh", "recommended"] } },
"fmt": { "lineWidth": 120 },
"imports": {
"$components/": "./components/",
"$fresh/": "https://deno.land/x/fresh@1.7.3/",
"$islands/": "./islands/",
"$utils/": "./utils/",
"@deno/gfm": "jsr:@deno/gfm@^0.11",
"@deno/kv-utils": "jsr:@deno/kv-utils@^0.1.3",
"@kitsonk/kv-toolbox": "jsr:@kitsonk/kv-toolbox@^0.30.0",
"@kitsonk/svg-minify": "jsr:@kitsonk/svg-minify@^0.1.0",
"@logtape/logtape": "jsr:@logtape/logtape@^0.11.0",
"@oak/commons/": "jsr:/@oak/commons@~1/",
"@preact/signals": "npm:@preact/signals@2.2.1",
"@preact/signals-core": "npm:@preact/signals-core@1.11.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.3",
"preact": "npm:preact@10.27.0",
"preact-render-to-string": "npm:preact-render-to-string@6.5.13",
"prismjs": "npm:prismjs@1.30.0",
"tailwindcss": "npm:tailwindcss@3.4.14",
"tailwindcss/plugin": "npm:tailwindcss@3.4.14/plugin.js"
},
"compilerOptions": { "jsx": "react-jsx", "jsxImportSource": "preact" },
"exclude": ["**/_fresh/*"]
}