-
Notifications
You must be signed in to change notification settings - Fork 17
Expand file tree
/
Copy pathdeno.jsonc
More file actions
150 lines (150 loc) · 5.71 KB
/
deno.jsonc
File metadata and controls
150 lines (150 loc) · 5.71 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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
{
"$schema": "https://deno.land/x/deno/cli/schemas/config-file.v1.json",
"name": "@bolt-foundry/gambit",
"description": "Agent harness framework for building, running, and verifying LLM workflows in Markdown and code.",
"version": "1.0.0-rc.2",
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "git+https://github.com/bolt-foundry/gambit.git"
},
"exports": {
".": "./mod.ts",
"./cli": "./src/cli.ts",
"./src/claude_code_preflight.ts": "./src/claude_code_preflight.ts",
"./src/cli_args.ts": "./src/cli_args.ts",
"./src/cli_utils.ts": "./src/cli_utils.ts",
"./src/codex_preflight.ts": "./src/codex_preflight.ts",
"./src/commands/check.ts": "./src/commands/check.ts",
"./src/default_runtime.ts": "./src/default_runtime.ts",
"./src/durable_streams.ts": "./src/durable_streams.ts",
"./src/gambit_id.ts": "./src/gambit_id.ts",
"./src/gambit_path.ts": "./src/gambit_path.ts",
"./src/gambit_time.ts": "./src/gambit_time.ts",
"./src/project_config.ts": "./src/project_config.ts",
"./src/test_bot.ts": "./src/test_bot.ts",
"./src/trace.ts": "./src/trace.ts",
"./src/utility_types.ts": "./src/utility_types.ts",
"./src/workspace_sqlite.ts": "./src/workspace_sqlite.ts"
},
"tasks": {
"fmt": "deno fmt",
"lint": "deno lint",
"guard:bfmono-imports": "deno run -A scripts/guard-bfmono-imports.ts",
"test": "deno test --allow-all",
"ci": "deno fmt --check && deno lint && deno task guard:bfmono-imports && deno test --allow-all",
"fix": "deno fmt && deno lint --fix && deno test --allow-all",
"compile": "deno run -A scripts/compile.ts",
"precommit": "deno fmt && deno lint && deno task guard:bfmono-imports && deno check && deno test -A",
"bundle:sim": "deno task --cwd packages/gambit-simulator bundle:sim",
"bundle:sim:sourcemap": "deno task --cwd packages/gambit-simulator bundle:sim:sourcemap",
"bundle:sim:web": "deno task --cwd packages/gambit-simulator bundle:sim:web",
"bundle:sim:web:sourcemap": "deno task --cwd packages/gambit-simulator bundle:sim:web:sourcemap",
"verify:seed-fixture": "deno task --cwd packages/gambit-simulator verify:seed-fixture",
"serve:bot": "deno task --cwd packages/gambit-simulator serve:bot",
"serve:bot:sandbox": "deno run -A scripts/serve_bot_sandbox.ts",
"build_npm": "deno run -A scripts/build_npm.ts",
"ci:gambit-core:npm-compat": "deno task --cwd packages/gambit-core build_npm"
},
"lint": {
"include": [
"src",
"packages/gambit-simulator/src"
],
"plugins": [
"./scripts/lint/examples_remote_imports.ts"
],
"rules": {
"tags": [
"recommended"
],
"exclude": [
"bolt-foundry/no-parent-directory-traversal",
"no-external-import",
"no-unversioned-import",
"verbatim-module-syntax"
],
"include": [
"gambit/init/examples-remote-imports",
"gambit/use-maybe-type",
"gambit/no-unexplained-as-unknown",
"gambit/no-useeffect-setstate"
]
}
},
"fmt": {
"lineWidth": 80,
"exclude": [
"packages/gambit-simulator/simulator-ui/__generated__",
"packages/gambit-simulator/simulator-ui/subscriptions/__generated__"
]
},
"compilerOptions": {
"jsx": "react-jsx",
"jsxImportSource": "npm:react@19.2.4",
"jsxImportSourceTypes": "npm:@types/react@^19",
"skipLibCheck": true,
"lib": [
"dom",
"dom.iterable",
"dom.asynciterable",
"webworker.importscripts",
"webworker.iterable",
"deno.ns",
"deno.unstable"
]
},
"imports": {
"@isograph/babel-plugin": "npm:@isograph/babel-plugin@0.5.2",
"@isograph/compiler": "npm:@isograph/compiler@0.5.2",
"@isograph/react": "npm:@isograph/react@0.5.2",
"@iso-gambit-sim": "./packages/gambit-simulator/simulator-ui/__generated__/__isograph/iso.ts",
"@iso-gambit-sim/": "./packages/gambit-simulator/simulator-ui/__generated__/__isograph/",
"@deno/dnt": "jsr:@deno/dnt@^0.42.3", // dev
"@std/front-matter": "jsr:@std/front-matter@^1.0.9",
"@std/fs": "jsr:@std/fs@^1.0.20",
"@std/jsonc": "jsr:@std/jsonc@^1.0.2", // dev
"@std/path": "jsr:@std/path@^1.0.6",
"@std/cli": "jsr:@std/cli@^1.0.7",
"@std/dotenv": "jsr:@std/dotenv@^0.225.5",
"@std/assert": "jsr:@std/assert@^1.0.6",
"@std/streams": "jsr:@std/streams@^1.0.10",
"@std/testing": "jsr:@std/testing@^1.0.17",
"@std/front_matter": "jsr:@std/front_matter@^0.224.4",
"@std/tar": "jsr:@std/tar@^0.1.9",
"@std/toml": "jsr:@std/toml@^1.0.9",
"@bolt-foundry/browser-runtime": "../browser-runtime/mod.ts",
"@bolt-foundry/browser-runtime/browser-cli": "../browser-runtime/src/browserCliMain.ts",
"@bolt-foundry/browser-runtime/": "../browser-runtime/",
"@bolt-foundry/gambit-core": "./packages/gambit-core/mod.ts",
"@bolt-foundry/gambit-simulator": "./packages/gambit-simulator/mod.ts",
"@bolt-foundry/gambit-simulator/": "./packages/gambit-simulator/",
"playwright-core": "npm:playwright-core@^1.57.0", // dev
"zod": "npm:zod@^3.23.8",
"zod-to-json-schema": "npm:zod-to-json-schema@^3.23.0",
"@pothos/core": "npm:@pothos/core@^4.7.3",
"@pothos/plugin-relay": "npm:@pothos/plugin-relay@^4.4.2",
"graphql": "npm:graphql@^16.11.0",
"graphql-yoga": "npm:graphql-yoga@^5.14.0",
"@openai/openai": "npm:openai@^4.78.1",
"react": "npm:react@19.2.4",
"react/jsx-runtime": "npm:react@19.2.4/jsx-runtime",
"react-dom": "npm:react-dom@19.2.4"
},
"publish": {
"include": [
"src",
"scaffolds",
"docs",
"mod.ts",
"deno.jsonc",
"README.md",
"CHANGELOG.md",
"LICENSE"
]
},
"deploy": {
"org": "boltfoundry",
"app": "gambit-demo"
}
}