-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdeno.json
55 lines (55 loc) · 1.55 KB
/
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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
{
"compilerOptions": {
"lib": [
"esnext",
"dom",
"dom.asynciterable",
"deno.ns",
"deno.unstable"
],
"jsx": "react-jsx",
"jsxImportSource": "react",
"jsxImportSourceTypes": "@types/react",
"noUncheckedIndexedAccess": true
},
"exclude": [
"dist"
],
"lint": {
"rules": {
"include": [
"eqeqeq",
"no-await-in-loop"
]
}
},
"lock": false,
"nodeModulesDir": "auto",
"tasks": {
"check": "deno fmt --check && deno lint && deno check .",
"convert_to_webp": "deno run -R=. -W=. scripts/convert_to_webp.ts",
"dev": "vite",
"build": "vite build --mode client && vite build",
"preview": "deno serve -ENR=. dist/index.js"
},
"imports": {
"@deno/vite-plugin": "npm:@deno/vite-plugin@^1.0.4",
"@hono/react-renderer": "npm:@hono/react-renderer@^0.3.0",
"@hono/vite-build": "npm:@hono/vite-build@^1.3.0",
"@hono/vite-dev-server": "npm:@hono/vite-dev-server@^0.18.1",
"@tailwindcss/vite": "npm:@tailwindcss/vite@^4.0.7",
"@types/react": "npm:@types/react@^19.0.10",
"hono": "npm:hono@^4.7.2",
"honox": "npm:honox@^0.1.34",
"react": "npm:react@^19.0.0",
"react-dom": "npm:react-dom@^19.0.0",
"react-icons": "npm:react-icons@^5.5.0",
"tailwindcss": "npm:tailwindcss@^4.0.7",
"vite": "npm:vite@^6.1.1",
"@/": "./app/",
"@core/unknownutil": "jsr:@core/unknownutil@^4.3.0",
"@std/crypto": "jsr:@std/crypto@^1.0.4",
"@std/encoding": "jsr:@std/encoding@^1.0.7",
"@std/http": "jsr:@std/http@^1.0.13"
}
}