-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdeno.json
41 lines (41 loc) · 1.13 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
{
"name": "@frontside/revolution",
"license": "ISC",
"publish": {
"exclude": [
"test"
]
},
"tasks": {
"test": "deno test --allow-read --allow-write --allow-env --allow-run --allow-net",
"build:npm": "deno run -A tasks/build-npm.ts",
"build:jsr": "deno run -A tasks/build-jsr.ts"
},
"exports": {
".": "./mod.ts",
"./jsx-runtime": "./jsx-runtime.ts"
},
"lint": {
"rules": {
"exclude": ["prefer-const", "require-yield", "no-slow-types"]
}
},
"compilerOptions": {
"lib": ["dom", "dom.iterable", "dom.asynciterable", "deno.ns"],
"jsx": "react-jsx",
"jsxImportSource": "revolution"
},
"imports": {
"deno-dom": "jsr:@b-fuze/deno-dom@0.1.48",
"esbuild": "npm:esbuild@0.24.2",
"effection": "jsr:@effection/effection@3.1.0",
"@std/assert": "jsr:@std/assert@1.0.10",
"@std/path": "jsr:@std/path@1.0.8",
"@std/http": "jsr:@std/http@1.0.12",
"hast": "npm:@types/hast@^3.0.0",
"hastx": "npm:hastx@0.0.11",
"@std/testing": "jsr:@std/testing@1.0.8",
"revolution/jsx-runtime": "./jsx-runtime.ts",
"path-to-regexp": "npm:path-to-regexp@8.2.0"
}
}