-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (64 loc) · 2.04 KB
/
Copy pathpackage.json
File metadata and controls
64 lines (64 loc) · 2.04 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
{
"$schema": "https://json.schemastore.org/package.json",
"name": "fold",
"private": true,
"license": "MIT",
"type": "module",
"packageManager": "bun@1.3.14",
"scripts": {
"build": "bun run build:packages",
"build:packages": "bun run scripts/build/packages.ts",
"build:binaries": "bun run scripts/build/binaries.ts",
"release:tag-info": "bun run scripts/release/tag-info.ts",
"release:prepare": "bun run scripts/release/prepare.ts",
"release:validate": "bun run scripts/release/validate-manifest.ts",
"release:publish": "bun run scripts/release/publish.ts",
"typecheck": "bun run --parallel --if-present --filter './packages/*' typecheck",
"test": "bun run --parallel --if-present --filter './packages/*' test",
"test:watch": "bun run --parallel --if-present --filter './packages/*' test:watch",
"lint": "oxlint --type-aware",
"lint:fix": "oxlint --type-aware --fix",
"format": "oxfmt",
"format:check": "oxfmt --check",
"prepare": "effect-language-service patch"
},
"workspaces": {
"packages": [
"packages/*"
],
"catalog": {
"@kitlangton/terminal-control": "0.3.1",
"@opentui/core": "0.4.3",
"@opentui/keymap": "0.4.3",
"@opentui/solid": "0.4.3",
"solid-js": "1.9.12",
"effect": "4.0.0-beta.93",
"@effect/ai-openai": "4.0.0-beta.93",
"@effect/ai-openai-compat": "4.0.0-beta.93",
"@effect/platform-node": "4.0.0-beta.93",
"@effect/vitest": "4.0.0-beta.93",
"@silvia-odwyer/photon-node": "0.3.4",
"yaml": "2.9.0",
"vitest": "4.1.9",
"@vitest/coverage-v8": "4.1.9",
"typescript": "6.0.3",
"@types/bun": "1.3.14",
"@types/node": "26.1.0",
"@effect/ai-anthropic": "4.0.0-beta.93"
}
},
"devDependencies": {
"@effect/language-service": "0.86.2",
"@types/bun": "catalog:",
"@types/node": "catalog:",
"@vitest/coverage-v8": "catalog:",
"oxfmt": "0.57.0",
"oxlint": "1.72.0",
"oxlint-tsgolint": "0.24.0",
"typescript": "catalog:",
"vitest": "catalog:"
},
"patchedDependencies": {
"@effect/ai-openai@4.0.0-beta.93": "patches/@effect%2Fai-openai@4.0.0-beta.93.patch"
}
}