blob: d3237d8e2a8054877ccd32bc7674d8f638f6074c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
{
"tasks": {
"dev": "deno run --allow-net --allow-read --allow-write --allow-env --watch main.ts",
"start": "deno run --allow-net --allow-read --allow-write --allow-env main.ts",
"test": "deno test --allow-net --allow-read --allow-write --allow-env tests/",
"test:watch": "deno test --allow-net --allow-read --allow-write --allow-env --watch tests/"
},
"imports": {
"oak": "jsr:@oak/oak@^17.1.3",
"@std/assert": "jsr:@std/assert@^1"
},
"compilerOptions": {
"lib": ["deno.window"]
}
}
|