forked from denoland/docs
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdeno.json
More file actions
63 lines (63 loc) · 2.62 KB
/
deno.json
File metadata and controls
63 lines (63 loc) · 2.62 KB
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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
{
"imports": {
"@std/assert": "jsr:@std/assert@^1.0.6",
"@std/dotenv": "jsr:@std/dotenv@^0.225.2",
"@std/fs": "jsr:@std/fs@^1.0.16",
"@std/front-matter": "jsr:@std/front-matter@1.0.9",
"@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",
"@deno/doc": "jsr:@deno/doc@0.169.1",
"@tailwindcss/cli": "npm:@tailwindcss/cli@^4.1.11",
"@tailwindcss/postcss": "npm:@tailwindcss/postcss@^4.1.11",
"ga4": "https://raw.githubusercontent.com/denoland/ga4/04a1ce209116f158b5ef1658b957bdb109db68ed/mod.ts",
"lume/": "https://deno.land/x/lume@v2.4.1/",
"googleapis": "npm:googleapis@^144.0.0",
"postcss": "npm:postcss@^8.5.6",
"prismjs": "npm:prismjs@1.29.0",
"tailwindcss": "npm:tailwindcss@^4.1.11",
"@orama/core": "jsr:@orama/core@^1.2.4",
"@octokit/core": "npm:@octokit/core@^5.2.0",
"leo-profanity": "npm:leo-profanity@^1.7.0"
},
"tasks": {
"dev": "LUME_LOGS=WARN deno run --env-file -A lume.ts -s",
"serve": "deno task dev",
"serve:style": "BUILD_TYPE=FULL deno task lume -s --config=_config-styleguide.ts",
"start": "deno task dev",
"build": "deno task generate:reference && BUILD_TYPE=FULL deno run --env-file -A lume.ts && tailwindcss -i styles.css -o _site/styles.css --minify",
"build:light": "deno run --env-file -A lume.ts",
"prod": "deno run --allow-read --allow-env --allow-net server.ts",
"test": "deno test -A",
"check:links": "deno run --no-lock --allow-net --allow-env .github/workflows/better_link_checker.ts",
"check:links:local": "deno run --allow-net --allow-env check_links_local.ts",
"install:hooks": "bash scripts/install-pre-commit-hook.sh",
"lint:update": "deno run -A update_lint_rules.ts",
"generate:search": "deno run -A orama/generate_orama_index_full.ts",
"generate:search:docs-only": "deno run -A orama/generate.ts",
"generate:llms": "deno run -A generate_llms_files.ts",
"generate:llms:site": "deno run -A generate_llms_files.ts _site",
"generate:reference": "cd reference_gen && deno task types && deno task doc",
"cache:clear": "rm -f reference_gen/.gen-cache*.json reference_gen/.node-incremental-cache.json",
"search:upload": "deno run -A orama/upload_orama_index.ts --full",
"search:analyze": "deno run -A orama/analyze_orama_index.ts"
},
"compilerOptions": {
"types": [
"lume/types.ts"
],
"jsx": "react-jsx",
"jsxImportSource": "npm:preact"
},
"test": {
"exclude": [
"middleware"
]
},
"exclude": [
"_site",
"reference_gen",
"orama"
],
"nodeModulesDir": "auto"
}