blob: ace62a672152856f6312f24c40ca1c082d15382a (
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.11.1",
"std/": "https://deno.land/std@0.224.0/",
"zod/": "https://deno.land/x/zod@v3.24.2/",
},
"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",
},
}
|