-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathdeno.json
More file actions
25 lines (25 loc) · 747 Bytes
/
deno.json
File metadata and controls
25 lines (25 loc) · 747 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
25
{
"compilerOptions": {
"jsx": "react-jsx",
"jsxImportSource": "preact",
"types": [
"lume/types.ts"
]
},
"tasks": {
"lume": "echo \"import 'lume/cli.ts'\" | deno run -A -",
"build": "deno task lume",
"serve": "deno task lume -s",
"test": "deno test --allow-read=src/"
},
"imports": {
"@std/assert": "jsr:@std/assert@^1.0.9",
"@std/path": "jsr:@std/path@^1.0.8",
"@std/yaml": "jsr:@std/yaml@^1.0.5",
"esbuild/": "https://deno.land/x/esbuild@v0.24.0/",
"lume/": "https://deno.land/x/lume@v2.4.2/",
"preact": "https://esm.sh/preact@10.25.1",
"preact/": "https://esm.sh/preact@10.25.1/",
"@preact/signals": "https://esm.sh/@preact/signals@1.3.1?deps=preact@10.25.1"
}
}