-
Notifications
You must be signed in to change notification settings - Fork 176
/
deno.json
31 lines (31 loc) · 1018 Bytes
/
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
{
"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/media-types": "jsr:@std/media-types@^1.0.3",
"ga4": "https://raw.githubusercontent.com/denoland/ga4/04a1ce209116f158b5ef1658b957bdb109db68ed/mod.ts",
"googleapis": "npm:googleapis@^144.0.0",
"lume/": "https://deno.land/x/[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"
},
"compilerOptions": {
"types": [
"lume/types.ts"
],
"jsx": "precompile",
"jsxImportSource": "npm:preact"
},
"exclude": [
"_site",
"reference_gen"
]
}