-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdeno.json
More file actions
55 lines (55 loc) · 2.06 KB
/
deno.json
File metadata and controls
55 lines (55 loc) · 2.06 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
{
"name": "mtchat",
"version": "0.0.1",
"exports": "./main.tsx",
"nodeModulesDir": "auto",
"tasks": {
"build:css": "deno run -A npm:@tailwindcss/cli@^4.2.2 -i client/styles.css -o static/styles.css --minify",
"watch:css": "deno run -A npm:@tailwindcss/cli@^4.2.2 -i client/styles.css -o static/styles.css --watch",
"build:client": "deno bundle --config deno-client.json --platform browser --minify --code-splitting --sourcemap=linked --outdir static client/admin.tsx client/chat.tsx",
"watch:client": "deno bundle --config deno-client.json --platform browser --code-splitting --sourcemap=linked --outdir static --watch client/admin.tsx client/chat.tsx",
"build": "deno task build:css && deno task build:client",
"dev": "deno task build && deno run --allow-net --allow-read --allow-env --watch main.tsx",
"start": "deno task build && deno run --allow-net --allow-read --allow-env main.tsx",
"test": "deno test --allow-read --allow-env",
"fmt": "deno fmt",
"lint": "deno lint"
},
"compilerOptions": {
"jsx": "precompile",
"jsxImportSource": "hono/jsx",
"lib": ["dom", "dom.iterable", "deno.ns"]
},
"imports": {
"hono": "jsr:@hono/hono@^4.6.0",
"hono/jsx": "jsr:@hono/hono@^4.6.0/jsx",
"hono/jsx-renderer": "jsr:@hono/hono@^4.6.0/jsx-renderer",
"@std/assert": "jsr:@std/assert@^1.0.0",
"@std/ulid": "jsr:@std/ulid@^1.0.0",
"react": "npm:react@^19.0.0",
"react-dom": "npm:react-dom@^19.0.0",
"react-dom/client": "npm:react-dom@^19.0.0/client",
"@datasketch/monkeytab": "npm:@datasketch/monkeytab@^0.2.0",
"@assistant-ui/react": "npm:@assistant-ui/react@^0.12.24",
"tailwindcss": "npm:tailwindcss@^4.2.2",
"@tailwindcss/cli": "npm:@tailwindcss/cli@^4.2.2",
"tw-animate-css": "npm:tw-animate-css@^1.4.0"
},
"fmt": {
"useTabs": false,
"lineWidth": 100,
"indentWidth": 2,
"semiColons": true,
"singleQuote": true
},
"lint": {
"rules": {
"exclude": ["no-explicit-any"]
}
},
"exclude": [
"static/",
".firecrawl/",
"node_modules/"
]
}