-
Notifications
You must be signed in to change notification settings - Fork 0
/
deno.json
35 lines (35 loc) · 866 Bytes
/
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
{
"name": "@baetheus/pick",
"version": "0.0.5",
"compilerOptions": {
"jsx": "react-jsx",
"jsxImportSource": "preact"
},
"exports": {
"./cache": "./cache.ts",
"./context": "./context.ts",
"./endpoint": "./endpoint.ts",
"./handler": "./handler.ts",
"./logger": "./logger.ts",
"./parser": "./parser.ts",
"./response": "./response.ts",
"./route": "./route.ts",
"./router": "./router.ts"
},
"imports": {
"@jlarky/nanoid": "jsr:@jlarky/nanoid@^0.0.2",
"@std/media-types": "jsr:@std/media-types@^0.220.1",
"fun": "jsr:@baetheus/fun@^2.1.0",
"preact": "npm:[email protected]",
"preact-router": "npm:[email protected]",
"preact-render-to-string": "npm:[email protected]"
},
"include": [
"LICENSE",
"README.md",
"deno.json"
],
"exclude": [
"examples/*"
]
}