-
Notifications
You must be signed in to change notification settings - Fork 0
/
jsr.jsonc
42 lines (42 loc) · 905 Bytes
/
jsr.jsonc
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
{
"$schema": "https://deno.land/x/deno/cli/schemas/config-file.v1.json",
"name": "@hugoalh/is-special-type",
"version": "0.2.0",
"exports": {
"./async-function": "./async_function.ts",
"./async-generator-function": "./async_generator_function.ts",
"./async-generator": "./async_generator.ts",
"./sync-function": "./sync_function.ts",
"./sync-generator-function": "./sync_generator_function.ts",
"./sync-generator": "./sync_generator.ts",
".": "./mod.ts"
},
"imports": {
},
"publish": {
"exclude": [
"**/*_bench.ts",
"**/*_bench.tsx",
"**/*_test.ts",
"**/*_test.tsx",
"**/*.bench.ts",
"**/*.bench.tsx",
"**/*.test.ts",
"**/*.test.tsx",
"**/bench.ts",
"**/bench.tsx",
"**/test.ts",
"**/test.tsx",
"npm/**",
".dnt.ts"
],
"include": [
"**/*.json",
"**/*.ts",
"**/*.tsx",
"jsr.jsonc",
"LICENSE*.md",
"README*.md"
]
}
}