-
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathdeno.json
More file actions
28 lines (28 loc) · 665 Bytes
/
deno.json
File metadata and controls
28 lines (28 loc) · 665 Bytes
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
{
"name": "@mastrojs/mastro",
"version": "0.7.16",
"tasks": {
"publish": "deno test -RWE src && deno bench -RWE src && deno publish"
},
"exports": {
".": "./src/core/index.ts",
"./generator": "./src/generator.ts",
"./html": "./src/core/html.ts",
"./server": "./src/routers/fileRouter.ts",
"./server-programmatic": "./src/routers/programmaticRouter.ts"
},
"compilerOptions": {
"lib": ["deno.ns", "dom", "node"]
},
"lint": {
"rules": {
"exclude": ["no-explicit-any", "no-process-global"]
}
},
"fmt": {
"lineWidth": 100
},
"imports": {
"@std/media-types": "jsr:@std/media-types@^1.1.0"
}
}