-
Notifications
You must be signed in to change notification settings - Fork 191
/
deno.json
42 lines (42 loc) · 1.33 KB
/
deno.json
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
36
37
38
39
40
41
42
{
"imports": {
"@orama/wc-components/": "https://unpkg.com/@orama/[email protected]/",
"@std/assert": "jsr:@std/assert@^1.0.6",
"@std/dotenv": "jsr:@std/dotenv@^0.225.2",
"@std/fs": "jsr:@std/fs@^0.229.3",
"@std/html": "jsr:@std/html@^1.0.3",
"@std/media-types": "jsr:@std/media-types@^1.0.3",
"@std/path": "jsr:@std/path@^1.0.8",
"ga4": "https://raw.githubusercontent.com/denoland/ga4/04a1ce209116f158b5ef1658b957bdb109db68ed/mod.ts",
"lume/": "https://deno.land/x/[email protected]/",
"@orama/wc-components/": "https://unpkg.com/@orama/[email protected]/",
"googleapis": "npm:googleapis@^144.0.0",
"prismjs": "npm:[email protected]",
"tailwindcss": "npm:tailwindcss@^3.4.9"
},
"tasks": {
"build": "deno run -A lume.ts",
"serve": "deno run -A lume.ts -s",
"debug": "deno task build && deno task prod",
"prod": "cd _site && deno run --allow-read --allow-env --allow-net server.ts",
"reference": "cd reference_gen && deno task types && deno task doc",
"lume": "echo \"import 'lume/cli.ts'\" | deno run -A -",
"test": "deno test -A"
},
"compilerOptions": {
"types": [
"lume/types.ts"
],
"jsx": "precompile",
"jsxImportSource": "npm:preact"
},
"test": {
"exclude": [
"middleware"
]
},
"exclude": [
"_site",
"reference_gen"
]
}