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
|
{
"imports": {
"@djot/djot": "npm:@djot/djot@^0.3.2",
"@std/assert": "jsr:@std/assert@^1.0.13",
"@std/cli": "jsr:@std/cli@^1.0.20",
"@std/fs": "jsr:@std/fs@^1.0.19",
"@std/http": "jsr:@std/http@^1.0.19",
"@std/path": "jsr:@std/path@^1.1.1",
"@std/toml": "jsr:@std/toml@^1.0.8",
"checksum/": "https://deno.land/x/checksum@1.4.0/",
"shiki": "npm:shiki@^3.7.0",
"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",
},
"permissions": {
"default": {
"read": ["."],
"write": ["."],
"net": ["127.0.0.1:8000"],
"env": [
"VSCODE_TEXTMATE_DEBUG", // VSCODE_TEXTMATE_DEBUG is read by shiki.
],
},
}
"tasks": {
"check": "deno check nuldoc-src/main.ts && deno lint -- nuldoc-src/ && deno fmt --check -- nuldoc-src/",
"fmt": "deno fmt -- nuldoc-src",
},
}
|