-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdeno.json
More file actions
87 lines (87 loc) · 2.63 KB
/
Copy pathdeno.json
File metadata and controls
87 lines (87 loc) · 2.63 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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
{
"unstable": [
"kv",
"temporal"
],
"tasks": {
"build": "vite build",
"dev": "vite",
"e2e": "deno test -A --no-check --env e2e/ routes/",
"preview": "deno serve -A _fresh/server.js",
"screenshots": "deno run -A ./scripts/screenshots.ts",
"tunnel": "deno run --tunnel --allow-env main.ts",
"update-icons": "deno run -A ./scripts/update-icons.ts",
"update-puzzles": "deno run -A ./scripts/update-puzzles.ts"
},
"lint": {
"plugins": ["./plugins/lint-imports.ts"],
"rules": {
"tags": [
"fresh",
"recommended"
]
},
"exclude": [
"static/*",
"routes/api/solver-worker.js"
]
},
"fmt": {
"exclude": [
"CLAUDE.md",
"README.md",
"spec.md",
"static/*",
"specs/*",
"routes/api/solver-worker.js"
]
},
"exclude": [
"**/_fresh/*"
],
"imports": {
"#/": "./",
"@anthropic-ai/sdk": "npm:@anthropic-ai/sdk@^0.80",
"@annervisser/slug": "jsr:@annervisser/slug@^1.2.1",
"@opentelemetry/api": "npm:@opentelemetry/api@^1.9.1",
"@deno/esbuild-plugin": "jsr:@deno/esbuild-plugin@^1.2.1",
"@fresh/plugin-vite": "jsr:@fresh/plugin-vite@^1.0.8",
"@phosphor-icons/core": "npm:@phosphor-icons/core@^2.1.1",
"@preact/signals": "npm:@preact/signals@^2.9.0",
"@std/assert": "jsr:@std/assert@^1.0.19",
"@std/cli": "jsr:@std/cli@^1.0.28",
"@std/async": "jsr:@std/async@^1.2.0",
"@std/async/debounce": "jsr:@std/async@^1.2.0/debounce",
"@std/http/cookie": "jsr:@std/http@^1.0.25/cookie",
"@std/front-matter": "jsr:@std/front-matter@^1.0.9",
"@std/text": "jsr:@std/text@^1.0.17",
"@std/ulid": "jsr:@std/ulid@^1.0.0",
"@std/yaml": "jsr:@std/yaml@^1.0.12",
"@tailwindcss/vite": "npm:@tailwindcss/vite@^4.2.2",
"clsx/lite": "npm:clsx@^2.1.1/lite",
"esbuild": "npm:esbuild@^0.27.7",
"fresh": "jsr:@fresh/core@^2.2.2",
"idb-keyval": "npm:idb-keyval@6.2.1",
"open-props": "npm:open-props@^1.7.23",
"posthog-js": "npm:posthog-js@^1.364.7",
"posthog-node": "npm:posthog-node@^5.28.11",
"preact": "npm:preact@^10.29.1",
"preact-render-to-string": "npm:preact-render-to-string@^6.6.7",
"preact/": "npm:/preact@^10.29.1/",
"tailwindcss": "npm:tailwindcss@^4.2.2",
"vite": "npm:vite@^7.3.1",
"jose": "npm:jose@^5.10.0",
"zingtouch": "npm:zingtouch@^1.0.6",
"playwright": "npm:playwright@^1.59.1",
"playwright/test": "npm:playwright@^1.59.1/test"
},
"compilerOptions": {
"jsx": "react-jsx",
"jsxImportSource": "preact"
},
"nodeModulesDir": "auto",
"deploy": {
"org": "kasperstorgaard",
"app": "ricochet"
}
}