-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdeno.json
55 lines (55 loc) · 1.56 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
{
"name": "@deno-plc/vite-plugin-deno",
"version": "2.3.0",
"exports": "./mod.ts",
"compilerOptions": {
"lib": [
"deno.window",
"deno.ns",
"ESNext",
"webworker"
]
},
"fmt": {
"indentWidth": 4,
"lineWidth": 120,
"exclude": [
"examples/**/dist/**"
]
},
"tasks": {
"check": "deno fmt && deno lint && deno publish --dry-run --allow-dirty && deno test -A --parallel",
"check-ci": "deno fmt --check && deno lint && deno publish --dry-run && deno test -A --parallel"
},
"lint": {
"rules": {
"exclude": [
"no-misused-new"
]
},
"exclude": [
"examples/**/dist/**"
]
},
"imports": {
"@deno-plc/vite-plugin-deno": "./mod.ts",
"@coderspirit/nominal": "npm:@coderspirit/nominal@^4.1.1",
"@std/assert": "jsr:@std/assert@^0.223.0",
"@std/encoding": "jsr:@std/encoding@^0.223.0",
"@std/fs": "jsr:@std/fs@^0.223.0",
"@std/path": "jsr:@std/path@^0.225.1",
"@std/semver": "jsr:@std/semver@^1.0.2",
"acorn": "npm:acorn@^8.12.1",
"acorn-walk": "npm:acorn-walk@^8.3.3",
"lebab": "npm:lebab@^3.2.4",
"resolve.exports": "npm:resolve.exports@^2.0.2",
"validate-npm-package-name": "npm:validate-npm-package-name@^5.0.1",
"vite": "npm:vite@^5.2.12",
"zod": "npm:zod@^3.22.5"
},
"publish": {
"exclude": [
"examples"
]
}
}