-
Notifications
You must be signed in to change notification settings - Fork 0
/
deno.json
48 lines (46 loc) · 1.51 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
{
"name": "@neuf/neuf",
"version": "0.9.29",
"license": "MIT",
"xRegistry": "jsr.io",
"exports": {
".": "./mod.ts",
"./control-codes": "./src/features/control-codes.ts",
"./decorators": "./src/features/decorators.ts",
"./listen": "./src/listen/index.ts",
"./log": "./src/lib/log.ts",
"./router": "./src/router/index.ts",
"./serve": "./src/serve/index.ts",
"./types": "./src/lib/types.ts"
},
"imports": {
"@cross/deepmerge": "jsr:@cross/deepmerge@^1.0.0",
"@exts/list": "jsr:@exts/list@^0.3.5",
"@hikyu/colors": "jsr:@hikyu/colors@^0.1.20",
"@std/http": "jsr:@std/http@^1.0.11",
"@std/media-types": "jsr:@std/media-types@^1.1.0",
"@std/path": "jsr:@std/path@^1.0.8",
"preact": "npm:preact@^10.25.0",
"preact-render-to-string": "npm:preact-render-to-string@^6.5.11"
},
"lint": {
"rules": {
"include": [
"camelcase",
"default-param-last",
"eqeqeq",
"explicit-module-boundary-types",
"guard-for-in",
"no-boolean-literal-for-arguments",
"no-eval",
"no-inferrable-types",
"no-sparse-arrays",
"no-sync-fn-in-async-fn",
"no-throw-literal",
"single-var-declarator",
"triple-slash-reference",
"verbatim-module-syntax"
]
}
}
}