-
Notifications
You must be signed in to change notification settings - Fork 1
/
deno.json
33 lines (33 loc) · 907 Bytes
/
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
{
"name": "@oak/acorn",
"version": "1.1.1",
"exports": { ".": "./mod.ts" },
"publish": {
"exclude": [
"_examples",
".github",
".vscode",
"testing_utils.ts",
"**/*.test.ts",
"**/*.bench.ts"
]
},
"tasks": {
"bench": "deno bench --allow-write --allow-read",
"check": "deno check mod.ts",
"example": "deno run --allow-net --allow-env --unstable-kv _examples/server.ts",
"test": "deno test --allow-net --allow-env"
},
"imports": {
"@oak/commons": "jsr:@oak/commons@^1.0",
"@std/assert": "jsr:@std/assert@^1.0",
"@std/http": "jsr:@std/http@^1.0",
"@std/log": "jsr:@std/log@^0.224",
"@std/media-types": "jsr:@std/media-types@^1.0",
"@valibot/valibot": "jsr:@valibot/valibot@^0.42",
"hyperid": "npm:hyperid@^3.3",
"path-to-regexp": "npm:path-to-regexp@^8.2",
"qs": "npm:qs@^6.13"
},
"lock": false
}