-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdeno.json
More file actions
29 lines (29 loc) · 828 Bytes
/
deno.json
File metadata and controls
29 lines (29 loc) · 828 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
{
"workspace": ["./packages/http", "./example/deno", "./apps/docs"],
"nodeModulesDir": "auto",
"imports": {
"@std/assert": "jsr:@std/assert@1",
"clsx": "npm:clsx@^2.1.1",
"tailwind-merge": "npm:tailwind-merge@^3.4.0",
"hast": "npm:@types/hast@^3.0.4",
"unist-util-visit": "npm:unist-util-visit@^5.0.0"
},
"tasks": {
"test": "deno test --allow-net packages/http/tests",
"lint": "deno lint",
"fmt": "deno fmt",
"fmt:check": "deno fmt --check",
"bench": "cd benchmarks && ./run.sh",
"example": "deno task --cwd example/deno dev",
"example:bun": "cd example/bun && bun run dev",
"docs": "npm run dev --prefix apps/docs"
},
"allowScripts": [
"npm:esbuild@0.25.12",
"npm:fsevents@2.3.3",
"npm:sharp@0.34.5"
],
"fmt": {
"exclude": ["**/*.md"]
}
}