-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdeno.json
62 lines (62 loc) · 1.32 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
{
"workspace": [
"./build",
"./element",
"./js",
"./server",
"./util"
],
"imports": {
"@classic/build": "jsr:@classic/build@0",
"@classic/element": "jsr:@classic/element@0",
"@classic/js": "jsr:@classic/js@0",
"@classic/server": "jsr:@classic/server@0",
"@classic/util": "jsr:@classic/util@0",
"@luca/esbuild-deno-loader": "jsr:@luca/esbuild-deno-loader@^0.10.3",
"@std/fs": "jsr:@std/fs@^0.229.3",
"@std/http": "jsr:@std/http@^0.224.5",
"@std/path": "jsr:@std/path@^0.225.2",
"cssnano": "npm:cssnano@^7.0.4",
"esbuild": "npm:esbuild@^0.23.0",
"hono": "jsr:@hono/hono@^4.4.8",
"hono/types": "jsr:@hono/hono@^4.4.8/types",
"postcss": "npm:postcss@^8.4.39"
},
"tasks": {
"npm": "deno run -A script/build_npm.ts",
"test": "deno test --allow-read --allow-env --allow-run",
"clean": "rm -rf npm"
},
"exclude": [
".git",
"examples"
],
"publish": {
"include": [
"LICENSE",
"README.md",
"*/README.md",
"**/*.[jt]s",
"**/*.js.map"
],
"exclude": [
"build.ts"
]
},
"compilerOptions": {
"lib": [
"deno.ns",
"DOM",
"DOM.Iterable",
"ES2021"
]
},
"lint": {
"rules": {
"exclude": [
"prefer-const",
"no-empty-interface"
]
}
}
}