-
Notifications
You must be signed in to change notification settings - Fork 6
/
deno.json
67 lines (66 loc) · 2.76 KB
/
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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
{
"imports": {
"$fresh/": "https://denopkg.com/denoland/fresh@1.6.8/",
"preact": "npm:preact@10.23.1",
"preact-render-to-string": "https://esm.sh/*preact-render-to-string@6.2.0",
"@preact/signals": "https://esm.sh/*@preact/signals@1.1.3",
"@preact/signals-core": "https://esm.sh/@preact/signals-core@1.3.0",
"std/": "https://deno.land/std@0.204.0/",
"partytown/": "https://deno.land/x/partytown@0.4.8/",
"deco-sites/std/": "https://denopkg.com/deco-sites/std@1.26.8/",
"deco/": "https://denopkg.com/deco-cx/deco@1.95.2/",
"apps/": "https://denopkg.com/deco-cx/apps@0.59.12/",
"@deco/deco": "jsr:@deco/deco@^1.98.3",
"@std/assert": "jsr:@std/assert@^1.0.2",
"@std/async": "jsr:@std/async@^0.224.1",
"@std/crypto": "jsr:@std/crypto@1.0.0-rc.1",
"@std/datetime": "jsr:@std/datetime@^0.224.0",
"@std/encoding": "jsr:@std/encoding@^1.0.0-rc.1",
"@std/flags": "jsr:@std/flags@^0.224.0",
"@std/fmt": "jsr:@std/fmt@^0.225.3",
"@std/fs": "jsr:@std/fs@^0.229.1",
"@std/http": "jsr:@std/http@^1.0.0",
"@std/io": "jsr:@std/io@^0.224.4",
"@std/log": "jsr:@std/log@^0.224.5",
"@std/media-types": "jsr:@std/media-types@^1.0.0-rc.1",
"@std/path": "jsr:@std/path@^0.225.2",
"@std/semver": "jsr:@std/semver@^0.224.3",
"@std/streams": "jsr:@std/streams@^1.0.0",
"@std/testing": "jsr:@std/testing@^1.0.0",
"@cliffy/prompt": "jsr:@cliffy/prompt@^1.0.0-rc.5",
"@core/asyncutil": "jsr:@core/asyncutil@^1.0.2",
"@deco/durable": "jsr:@deco/durable@^0.5.3",
"@deco/warp": "jsr:@deco/warp@0.3.6",
"@hono/hono": "jsr:@hono/hono@^4.5.4",
"@std/cli": "jsr:@std/cli@^1.0.3",
"@zaubrik/djwt": "jsr:@zaubrik/djwt@^3.0.2",
"fast-json-patch": "npm:fast-json-patch@^3.1.1",
"simple-git": "npm:simple-git@^3.25.0"
},
"lock": false,
"tasks": {
"check": "deno fmt && deno lint && deno check **/mod.ts",
"release": "deno eval 'import \"deco/scripts/release.ts\"'",
"start": "deno task bundle",
"bundle": "deno run -A jsr:@deco/deco/scripts/bundle app-template",
"link": "deno eval 'import \"deco/scripts/apps/link.ts\"'",
"unlink": "deno eval 'import \"deco/scripts/apps/unlink.ts\"'",
"serve": "deno eval 'import \"deco/scripts/apps/serve.ts\"'",
"watcher": "deno eval 'import \"deco/scripts/apps/watcher.ts\"'",
"update": "deno eval 'import \"deco/scripts/update.ts\"'",
"new": "deno run -A ./scripts/new.ts"
},
"githooks": {
"pre-commit": "check"
},
"exclude": [
"static",
"README.md",
"**/README.md"
],
"compilerOptions": {
"jsx": "react-jsx",
"jsxImportSource": "preact"
},
"version": "0.1.0"
}