-
Notifications
You must be signed in to change notification settings - Fork 0
/
deno.json
37 lines (37 loc) · 1.03 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
{
"name": "@frontside/revolution",
"exports": "./mod.ts",
"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"
},
"lint": {
"rules": {
"exclude": ["prefer-const", "require-yield"]
}
},
"compilerOptions": {
"lib": ["dom", "dom.iterable", "dom.asynciterable", "deno.ns"],
"jsx": "react-jsx",
"jsxImportSource": "revolution"
},
"imports": {
"deno-dom": "jsr:@b-fuze/[email protected]",
"esbuild": "npm:[email protected]",
"effection": "jsr:@effection/[email protected]",
"@std/assert": "jsr:@std/[email protected]",
"@std/path": "jsr:@std/[email protected]",
"@std/http": "jsr:@std/[email protected]",
"hast": "npm:@types/hast@^3.0.0",
"@std/testing": "jsr:@std/[email protected]",
"revolution/jsx-runtime": "./jsx-runtime.ts",
"path-to-regexp": "npm:[email protected]"
}
}