-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathdeno.json
More file actions
30 lines (30 loc) · 734 Bytes
/
deno.json
File metadata and controls
30 lines (30 loc) · 734 Bytes
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
{
"tasks": {
"version": "deno run -A whatGotUpdated.ts",
"publish:browser": "(cd packages/browser; deno task publish)",
"publish:server": "(cd packages/server; deno task publish)",
"example:start": "(cd example; deno run --watch -A main.ts)"
},
"fmt": {
"lineWidth": 100
},
"workspace": [
"./packages/browser",
"./packages/server"
],
"compilerOptions": {
"lib": [
"deno.ns",
"dom",
"dom.iterable",
"dom.asynciterable"
]
},
"imports": {
"@deno/dnt": "jsr:@deno/dnt@^0.41.3",
"@std/assert": "jsr:@std/assert@^1.0.9",
"@std/encoding": "jsr:@std/encoding@^1.0.10",
"@std/testing": "jsr:@std/testing@^1.0.6",
"hono": "npm:hono@^4.7.2"
}
}