-
Notifications
You must be signed in to change notification settings - Fork 3
/
deno.json
41 lines (41 loc) · 1.14 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
{
"name": "@soundify/web-api",
"version": "1.1.5",
"exports": {
".": "./mod.ts",
"./pagination": "./pagination.ts",
"./auth": "./auth.ts"
},
"publish": {
"include": [
"client.ts",
"auth.ts",
"LICENSE",
"README.md",
"endpoints/**/*.ts",
"mod.ts",
"pagination.ts",
"shared.ts"
],
"exclude": ["endpoints/**/*.test.ts", "endpoints/**/*.schemas.ts"]
},
"imports": {
"zod": "https://deno.land/x/[email protected]/mod.ts",
"oauth4webapi": "https://deno.land/x/[email protected]/mod.ts",
"oak": "https://deno.land/x/[email protected]/mod.ts",
"oak/deps.ts": "https://deno.land/x/[email protected]/deps.ts",
"std/": "https://deno.land/[email protected]/",
"@soundify/web-api": "./mod.ts",
"@soundify/web-api/pagination": "./pagination.ts",
"@soundify/web-api/auth": "./auth.ts",
"mock_fetch": "https://deno.land/x/[email protected]/mod.ts",
"preact": "https://esm.sh/[email protected]",
"preact/": "https://esm.sh/[email protected]/",
"preact-render-to-string": "https://esm.sh/[email protected]?external=preact"
},
"fmt": { "useTabs": true },
"compilerOptions": {
"jsx": "react-jsx",
"jsxImportSource": "preact"
}
}