-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathdeno.json
More file actions
64 lines (64 loc) · 2.57 KB
/
Copy pathdeno.json
File metadata and controls
64 lines (64 loc) · 2.57 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
64
{
"tasks": {
"check": "deno fmt --check && deno lint && deno check",
"start": "deno serve -A --unstable-kv --env-file _fresh/server.js",
"dev": "deno run -A --unstable-kv --node-modules-dir npm:vite",
"build": "deno run -A --unstable-kv --node-modules-dir npm:vite build",
"test": "deno test --unstable-kv --allow-read --allow-env --allow-net --allow-write --allow-sys",
"cli": "deno run --allow-net --allow-env --allow-read cli/main.ts",
"install:cli": "deno install -g -f -n vailnote --allow-net --allow-env --allow-read cli/main.ts",
"build:cli": "deno compile --allow-net --allow-env --allow-read --output vailnote-cli cli/main.ts",
"build:npm": "deno run -A scripts/build-npm.ts",
"publish:npm": "deno task build:npm && npm publish ./npm --access public",
"update": "deno run -A -r jsr:@fresh/update .",
"preview": "deno task build && deno task start",
"clean": "rm -rf ./dist && rm -rf ./_fresh && rm -rf ./node_modules && rm -f ./deno.lock && rm -f ./package-lock.json"
},
"lint": { "rules": { "tags": ["fresh", "recommended"] } },
"exclude": ["**/_fresh/*", "npm/bin"],
"imports": {
"@/": "./",
"@deno/gfm": "jsr:@deno/gfm@^0.12.0",
"fresh": "jsr:@fresh/core@^2.3.3",
"preact": "npm:preact@^10.29.8",
"@preact/signals": "npm:@preact/signals@^2.11.0",
"@fresh/plugin-vite": "jsr:@fresh/plugin-vite@^1.1.2",
"vite": "npm:vite@^7.3.6",
"tailwindcss": "npm:tailwindcss@^4.3.3",
"@tailwindcss/vite": "npm:@tailwindcss/vite@^4.3.3",
"@valibot/valibot": "jsr:@valibot/valibot@^1.4.2",
"$std/": "https://deno.land/std@0.216.0/",
"bcrypt": "npm:bcryptjs"
},
"compilerOptions": {
"lib": ["dom", "dom.asynciterable", "dom.iterable", "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": {
"useTabs": false,
"lineWidth": 120,
"indentWidth": 4,
"singleQuote": true,
"proseWrap": "always",
"exclude": ["**/node_modules/**", "**/.git/**", "**/.vscode/**", "**/.github/**", "npm/bin/**"]
},
"nodeModulesDir": "auto"
}