-
Notifications
You must be signed in to change notification settings - Fork 43
Expand file tree
/
Copy pathdeno.json
More file actions
24 lines (24 loc) · 907 Bytes
/
deno.json
File metadata and controls
24 lines (24 loc) · 907 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
{
"tasks": {
"build": "deno run --allow-read --allow-write --allow-run --allow-net --allow-env bundle.ts",
"watch": "deno run --watch=src/,public/ --no-clear-screen --allow-read --allow-write --allow-run --allow-net --allow-env bundle.ts",
"serve": "deno run --allow-net --allow-read dev_server.ts"
},
"imports": {
"@std/assert": "jsr:@std/assert@^1.0.15",
"@std/yaml": "jsr:@std/yaml@^1.0.10",
"solid-js": "npm:solid-js@^1.9.10",
"solid-js/web": "npm:solid-js@^1.9.10/web",
"@solidjs/router": "npm:@solidjs/router@^0.15.3",
"dagre": "npm:dagre@^0.8.5",
"graphlib": "npm:graphlib@^2.1.8",
"xterm": "npm:xterm@^5.3.0",
"xterm-addon-fit": "npm:xterm-addon-fit@^0.8.0",
"highlight.js": "npm:highlight.js@^11.11.1"
},
"compilerOptions": {
"lib": ["dom", "dom.iterable", "esnext"],
"jsx": "react-jsx",
"jsxImportSource": "solid-js"
}
}