summaryrefslogtreecommitdiffhomepage
path: root/vhosts/blog/deno.jsonc
blob: e0df1d1bd9204c8e9391d24b117a88f08f80f087 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
{
  "imports": {
    "@std/assert": "jsr:@std/assert@^1.0.12",
    "@std/cli": "jsr:@std/cli@^1.0.15",
    "@std/fs": "jsr:@std/fs@^1.0.15",
    "@std/http": "jsr:@std/http@^1.0.13",
    "@std/path": "jsr:@std/path@^1.0.8",
    "@std/toml": "jsr:@std/toml@^1.0.3",
    "checksum/": "https://deno.land/x/checksum@1.4.0/",
    "highlight.js": "npm:highlight.js@11.11.1",
    "zod/": "https://deno.land/x/zod@v3.24.2/",
    "myjsx/jsx-runtime": "./nuldoc-src/jsx/jsx-runtime.ts",
    "myjsx-types/jsx-runtime": "./nuldoc-src/jsx/types.d.ts",
  },
  "compilerOptions": {
    "jsx": "react-jsx",
    "jsxImportSource": "myjsx",
    "jsxImportSourceTypes": "myjsx-types",
  },
  "tasks": {
    "check": "deno check nuldoc-src/main.ts && deno lint -- nuldoc-src/ && deno fmt --check -- nuldoc-src/",
    "fmt": "deno fmt -- nuldoc-src",
  },
}