generated from ryoppippi/deno-jsr-template
-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdeno.jsonc
42 lines (42 loc) · 872 Bytes
/
deno.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
{
"name": "@ryoppippi/typiautil",
"version": "0.0.0",
"exports": {
".": "./mod.ts",
"./openai": "./openai/mod.ts"
},
"tasks": {
"dev": "deno run --watch mod.ts",
"check": "deno check ./**/*.ts && deno fmt --check",
"lint": "deno lint ./**/*.ts",
"test": "deno test -A --parallel --doc"
},
"fmt": {
"exclude": [
"*.md"
]
},
"imports": {
"@ryoppippi/typiautil": "./mod.ts",
"@ryoppippi/typiautil/openai": "./openai/mod.ts",
"@cross/test": "jsr:@cross/test@^0.0.9",
"@std/assert": "jsr:@std/assert@^1.0.0",
"openai": "npm:openai@^4.55.1",
"typia": "npm:typia@^6.7.2"
},
"publish": {
"exclude": [
".vscode",
".github",
".gitignore",
".coverage"
]
},
"keywords": [],
"exclude": [
".vscode",
"mod_test.ts",
"__snapshots__",
".github"
]
}