forked from bolt-foundry/gambit
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdeno.json
More file actions
41 lines (41 loc) · 1.09 KB
/
deno.json
File metadata and controls
41 lines (41 loc) · 1.09 KB
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
{
"$schema": "https://deno.land/x/deno/cli/schemas/config-file.v1.json",
"name": "@bolt-foundry/gambit",
"version": "0.1.0",
"license": "Apache-2.0",
"exports": {
".": "./mod.ts",
"./cli": "./src/cli.ts"
},
"tasks": {
"fmt": "deno fmt",
"lint": "deno lint",
"test": "deno test --allow-all",
"ci": "deno fmt --check && deno lint && deno test --allow-all",
"fix": "deno fmt && deno lint --fix && deno test --allow-all",
"compile": "deno compile -A --output dist/gambit src/cli.ts",
"precommit": "deno fmt && deno lint && deno check && deno test -A"
},
"lint": {
"include": [
"src"
],
"rules": {
"tags": [
"recommended"
]
}
},
"fmt": {
"lineWidth": 80
},
"imports": {
"@std/front-matter": "jsr:@std/front-matter@^1.0.9",
"@std/path": "jsr:@std/path@^1.0.6",
"@std/assert": "jsr:@std/assert@^1.0.6",
"@std/front_matter": "jsr:@std/front_matter@^0.224.4",
"zod": "npm:zod@^3.23.8",
"zod-to-json-schema": "npm:zod-to-json-schema@^3.23.0",
"@openai/openai": "npm:openai@^4.78.1"
}
}