forked from denoland/docs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
deno.json
22 lines (22 loc) · 802 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
{
"imports": {
"@std/fs": "jsr:@std/fs@^0.229.3",
"autoprefixer": "npm:autoprefixer@^10.4.20",
"ga4": "https://raw.githubusercontent.com/denoland/ga4/04a1ce209116f158b5ef1658b957bdb109db68ed/mod.ts",
"lume/": "https://cdn.jsdelivr.net/gh/lumeland/lume@864fb83b508b4164afa8cedef100db672b883152/",
"postcss": "npm:postcss@^8.4.41",
"tailwindcss": "npm:tailwindcss@^3.4.9"
},
"tasks": {
"build": "deno run -A lume.ts",
"serve": "deno run -A lume.ts -s",
"prod": "cd _site && deno run --allow-read=. --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"]
}