-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdeno.json
More file actions
34 lines (34 loc) · 1.04 KB
/
deno.json
File metadata and controls
34 lines (34 loc) · 1.04 KB
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
{
"name": "@d2verb/pera",
"version": "0.0.16-rc.1",
"license": "MIT",
"tasks": {
"test": "deno test -A --coverage=coverage",
"check": "deno check src/ tests/ examples/",
"configure-lefthook": "lefthook install"
},
"nodeModulesDir": "auto",
"exports": {
".": "./src/mod.ts",
"./cli": "./src/cli.ts"
},
"compilerOptions": {
"jsx": "react-jsx",
"jsxImportSource": "preact"
},
"imports": {
"@cliffy/command": "jsr:@cliffy/command@^1.0.0-rc.8",
"@cliffy/prompt": "jsr:@cliffy/prompt@^1.0.0-rc.8",
"@deno/emit": "jsr:@deno/emit@^0.46.0",
"@hono/hono": "jsr:@hono/hono@^4.9.10",
"@std/assert": "jsr:@std/assert@1",
"@std/async": "jsr:@std/async@^1.0.14",
"@std/path": "jsr:@std/path@^1.1.2",
"@std/testing": "jsr:@std/testing@^1.0.15",
"lefthook": "npm:lefthook@^1.13.6",
"preact": "npm:preact@10.27.2",
"preact/jsx-runtime": "npm:preact@10.27.2/jsx-runtime",
"preact/hooks": "npm:preact@10.27.2/hooks",
"preact-render-to-string": "npm:preact-render-to-string@6.6.2"
}
}