-
Notifications
You must be signed in to change notification settings - Fork 1
/
deno.jsonc
29 lines (29 loc) · 1.44 KB
/
deno.jsonc
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
{
"unstable": [
"http",
"kv"
],
"tasks": {
"dev": "DOLCE_LOG_LEVEL=DEBUG DOLCE_DEBUG=true deno run --unstable-http --unstable-kv --unstable-cron --unstable-temporal --allow-read=/var/run/docker.sock,./templates,/var/run/dolce/ --allow-write=/var/run/docker.sock,/var/run/dolce/ --allow-env --allow-run --watch main.ts",
"bmp": "deno run --allow-read=. --allow-write=. --allow-run=git https://deno.land/x/bmp@v0.2.0/cli.ts",
"test": "deno test --unstable-http --unstable-temporal --allow-read test/ --allow-net=127.0.0.1 --allow-write $TMPDIR --allow-env",
"changelog": "deno run --allow-read --allow-env --allow-run=git --allow-sys=uid --allow-write=CHANGELOG.md npm:auto-changelog --ignore-commit-pattern chore: --hide-credit && deno fmt",
"docs": "mkdocs serve"
},
"fmt": {
"indentWidth": 4,
"lineWidth": 120
},
"imports": {
"@std/io": "jsr:@std/io@0.224.8",
"@std/log": "jsr:@std/log@0.224.7",
"@std/front-matter": "jsr:@std/front-matter@1.0.5",
"@std/path": "jsr:@std/path@1.0.6",
"@std/async": "jsr:@std/async@1.0.5",
"@std/streams": "jsr:@std/streams@1.0.5",
"@std/ulid": "jsr:@std/ulid@1.0.0",
"eta": "https://deno.land/x/eta@v3.5.0/src/index.ts",
"eta/file-handling": "https://deno.land/x/eta@v3.5.0/src/file-handling.ts",
"@b-fuze/deno-dom": "jsr:@b-fuze/deno-dom@0.1.48"
}
}