-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathdeno.json
More file actions
60 lines (60 loc) · 1.79 KB
/
deno.json
File metadata and controls
60 lines (60 loc) · 1.79 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
{
"nodeModulesDir": "manual",
"workspace": ["./packages/frontend", "./packages/watcher", "./packages/lib"],
"tasks": {
"check-deps": "deno run -A jsr:@check/deps --allow-unused",
"pre-commit": "deno install --allow-scripts && deno fmt && deno lint && deno test -A"
},
"exclude": ["**/_fresh/*", "**/data/*", "**/tmp/*", "**/temp/*", "**/tools/*", "**/vendor/*"],
"imports": {
"@fresh/plugin-vite": "jsr:@fresh/plugin-vite@1.0.8",
"@fry69/vite-plugin-localcaddy": "jsr:@fry69/vite-plugin-localcaddy@0.1.6",
"@kitsuyui/luxon-ext": "npm:@kitsuyui/luxon-ext@0.2.1",
"@preact/signals": "npm:@preact/signals@2.8.1",
"@std/assert": "jsr:@std/assert@1.0.19",
"@std/fs": "jsr:@std/fs@1.0.23",
"@std/path": "jsr:@std/path@1.1.4",
"@tailwindcss/vite": "npm:@tailwindcss/vite@4.2.1",
"daisyui": "npm:daisyui@5.5.19",
"deep-diff": "jsr:@fry69/deep-diff@0.1.10",
"fresh": "jsr:@fresh/core@2.2.0",
"luxon": "npm:luxon@3.7.2",
"@types/luxon": "npm:@types/luxon@3.7.1",
"preact": "npm:preact@10.28.4",
"feed": "npm:feed@5.2.0",
"rss": "npm:rss@1.2.2",
"@types/rss": "npm:@types/rss@0.0.32",
"tailwindcss": "npm:tailwindcss@4.2.1",
"vite": "npm:vite@7.3.1"
},
"compilerOptions": {
"lib": ["dom", "dom.asynciterable", "deno.ns", "deno.unstable"],
"jsx": "precompile",
"jsxImportSource": "preact",
"jsxPrecompileSkipElements": [
"a",
"img",
"source",
"body",
"html",
"head",
"title",
"meta",
"script",
"link",
"style",
"base",
"noscript",
"template"
],
"types": ["vite/client"]
},
"fmt": {
"indentWidth": 2,
"lineWidth": 100,
"proseWrap": "preserve",
"semiColons": true,
"singleQuote": false,
"useTabs": false
}
}