-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathdeno.json
46 lines (46 loc) · 1.03 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
{
"name": "@seasonedcc/composable-functions",
"exports": "./mod.ts",
"version": "5.0.0",
"tasks": {
"test": "deno test --allow-env --allow-net src",
"publish": "deno task build-npm && cd npm/ && npm publish",
"build-npm": "deno run -A scripts/build-npm.ts",
"docs": "deno doc --html --name='composable-functions' ./mod.ts",
"docs-lint": "deno doc --lint ./mod.ts"
},
"lint": {
"include": [
"src/"
],
"rules": {
"exclude": [
"no-explicit-any",
"ban-types"
]
}
},
"compilerOptions": {
"types": [
"./src/test.d.ts"
]
},
"fmt": {
"useTabs": false,
"lineWidth": 80,
"indentWidth": 2,
"semiColons": false,
"singleQuote": true,
"proseWrap": "preserve",
"include": [
"src/"
]
},
"imports": {
"@deno/dnt": "jsr:@deno/dnt@^0.41.3",
"@standard-schema/spec": "jsr:@standard-schema/spec@^1.0.0",
"arktype": "npm:arktype@^2.0.4",
"valibot": "npm:valibot@^1.0.0-beta.15",
"zod": "npm:zod@^3.24.1"
}
}