|
12 | 12 | "check:license": "deno run --allow-read --allow-write tasks/check_license.ts", |
13 | 13 | "check:types": "deno check main.ts && deno check dev.ts && deno check tasks/*.ts", |
14 | 14 | "ok": "deno fmt --check && deno lint && deno task check:license --check && deno task check:types && deno task test", |
15 | | - "cov:gen": "deno coverage coverage --lcov --exclude='.tsx' --output=cov.lcov", |
16 | 15 | "update": "deno run -A -r https://fresh.deno.dev/update .", |
17 | 16 | "build": "deno run -A dev.ts build", |
18 | 17 | "preview": "deno run -A main.ts" |
|
21 | 20 | "imports": { |
22 | 21 | "@/": "./", |
23 | 22 | "$fresh/": "https://raw.githubusercontent.com/denoland/fresh/60220dd33b5b0f6b5c72927c933dbc32a3c4734e/", |
| 23 | + "@std/assert": "jsr:@std/assert@^1.0.13", |
| 24 | + "@std/datetime": "jsr:@std/datetime@^0.225.5", |
| 25 | + "@std/front-matter": "jsr:@std/front-matter@^1.0.9", |
| 26 | + "@std/fs": "jsr:@std/fs@^1.0.18", |
| 27 | + "@std/http": "jsr:@std/http@^1.0.18", |
| 28 | + "@std/path": "jsr:@std/path@^1.1.0", |
| 29 | + "@std/testing": "jsr:@std/testing@^1.0.14", |
| 30 | + "@std/ulid": "jsr:@std/ulid@^1.0.0", |
24 | 31 | "preact": "https://esm.sh/preact@10.19.2", |
25 | 32 | "preact/": "https://esm.sh/preact@10.19.2/", |
26 | 33 | "preact-render-to-string": "https://esm.sh/*preact-render-to-string@6.2.2", |
|
29 | 36 | "tailwindcss": "npm:tailwindcss@3.4.1", |
30 | 37 | "tailwindcss/": "npm:/tailwindcss@3.4.1/", |
31 | 38 | "tailwindcss/plugin": "npm:/tailwindcss@3.4.1/plugin.js", |
32 | | - "$std/": "https://deno.land/std@0.208.0/", |
33 | 39 | "stripe": "npm:/stripe@13.5.0", |
34 | 40 | "kv_oauth/": "https://deno.land/x/deno_kv_oauth@v0.9.1/", |
35 | 41 | "tabler_icons_tsx/": "https://deno.land/x/tabler_icons_tsx@0.0.4/tsx/", |
36 | 42 | "fresh_charts/": "https://deno.land/x/fresh_charts@0.3.1/" |
37 | 43 | }, |
38 | | - "exclude": ["coverage/", "_fresh/", "**/_fresh/*"], |
39 | | - "lint": { "rules": { "tags": ["fresh", "recommended"] } }, |
| 44 | + "lint": { "rules": { "tags": ["fresh", "recommended", "jsx", "react"] } }, |
40 | 45 | "unstable": [ |
41 | 46 | "kv" |
42 | 47 | ] |
|
0 commit comments