blob: 1a7ee5cd9ffb2a1dd49d8ffa569230a41d64fff0 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
{
"imports": {
"myjsx/jsx-runtime": "./nuldoc-src/jsx/jsx-runtime.ts",
"myjsx-types/jsx-runtime": "./nuldoc-src/jsx/types.d.ts",
"checksum/": "https://deno.land/x/checksum@1.4.0/",
"highlight.js": "npm:highlight.js@11.9.0",
"std/": "https://deno.land/std@0.224.0/",
"zod/": "https://deno.land/x/zod@v3.23.8/",
},
"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",
},
}
|