-
Notifications
You must be signed in to change notification settings - Fork 0
/
deno.json
48 lines (48 loc) · 1.26 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
47
48
{
"name": "@crosshatch/structured-outputs",
"version": "0.0.0-local.0",
"exports": "./mod.ts",
"exclude": ["target", "docs"],
"tasks": {
"test": "deno test -A",
"test:update": "deno task test -- --update"
},
"lock": false,
"imports": {
"@deno/dnt": "jsr:@deno/dnt@^0.41.3",
"@std/assert": "jsr:@std/assert@1",
"@std/async": "jsr:@std/async@^1.0.7",
"@std/cli": "jsr:@std/cli@^1.0.6",
"@std/collections": "jsr:@std/collections@^1.0.9",
"@std/dotenv": "jsr:@std/dotenv@^0.225.2",
"@std/fs": "jsr:@std/fs@^1.0.4",
"@std/path": "jsr:@std/path@^1.0.6",
"@std/testing": "jsr:@std/testing@^1.0.3",
"openai": "npm:openai@^4.68.1",
"test_util": "./test_util.ts"
},
"scopes": {
"./examples/": {
"structured-outputs": "./mod.ts"
}
},
"lint": {
"rules": {
"include": ["ban-untagged-todo", "guard-for-in"],
"exclude": [
"ban-types",
"ban-untagged-todo",
"no-empty",
"no-explicit-any",
"no-inner-declarations",
"no-namespace"
]
}
},
"compilerOptions": {
"lib": ["deno.window", "dom", "dom.iterable"],
"noFallthroughCasesInSwitch": true,
"noPropertyAccessFromIndexSignature": false,
"noUncheckedIndexedAccess": true
}
}