-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
73 lines (73 loc) · 2.68 KB
/
package.json
File metadata and controls
73 lines (73 loc) · 2.68 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
{
"name": "gent",
"private": true,
"workspaces": [
"packages/*",
"apps/*"
],
"type": "module",
"scripts": {
"typecheck": "turbo run typecheck",
"lint": "env -u FORCE_COLOR NO_COLOR=1 concurrently -n oxlint,guards \"env -u FORCE_COLOR NO_COLOR=1 oxlint --ignore-path=.oxlintignore\" \"bun packages/tooling/src/check-guardrails.ts\"",
"lint:fix": "env -u FORCE_COLOR NO_COLOR=1 oxlint --ignore-path=.oxlintignore --fix",
"fmt": "env -u FORCE_COLOR NO_COLOR=1 oxfmt --ignore-path=.oxlintignore",
"fmt:check": "env -u FORCE_COLOR NO_COLOR=1 oxfmt --ignore-path=.oxlintignore --check",
"build": "turbo run build",
"test": "env -u FORCE_COLOR NO_COLOR=1 bun packages/tooling/src/workspace-test-runner.ts",
"test:diagnose": "bun packages/tooling/src/test-diagnose.ts --slow-ms=5000 -- bun run test",
"test:e2e": "turbo run test:e2e",
"gate": "env -u FORCE_COLOR NO_COLOR=1 concurrently -n type,style,build \"bun run typecheck\" \"bun run lint && bun run fmt\" \"bun run build\" && bun run test",
"clean": "rm -rf .turbo */.turbo */*/.turbo",
"smoke": "bun run --cwd apps/tui dev -H 'Say hi in 3 words'",
"prepare": "lefthook install && effect-tsgo patch"
},
"dependencies": {
"msgpackr": "catalog:",
"multipasta": "catalog:"
},
"devDependencies": {
"@effect/platform-bun": "catalog:",
"@effect/sql-pg": "catalog:",
"@effect/sql-sqlite-bun": "catalog:",
"@effect/tsgo": "0.5.2",
"@types/bun": "^1.3.13",
"@types/picomatch": "catalog:",
"@typescript/native-preview": "7.0.0-dev.20260507.1",
"concurrently": "^9.2.1",
"effect": "catalog:",
"effect-bun-test": "catalog:",
"lefthook": "^2.1.6",
"oxfmt": "^0.48.0",
"oxlint": "^1.63.0",
"oxlint-tsgolint": "^0.22.1",
"turbo": "^2.9.10",
"typescript": "^6.0.3"
},
"overrides": {
"@effect/ai-anthropic": "4.0.0-beta.64",
"@effect/ai-openai": "4.0.0-beta.64",
"@effect/ai-openai-compat": "4.0.0-beta.64",
"@effect/platform-node-shared": "4.0.0-beta.64",
"effect": "4.0.0-beta.64"
},
"packageManager": "bun@1.3.6",
"catalog": {
"effect": "4.0.0-beta.64",
"@effect/platform-bun": "4.0.0-beta.64",
"@effect/sql-pg": "4.0.0-beta.64",
"@effect/sql-sqlite-bun": "4.0.0-beta.64",
"effect-encore": "0.12.7",
"effect-wide-event": "0.3.0",
"msgpackr": "^2.0.1",
"multipasta": "^0.2.7",
"picomatch": "^4.0.4",
"@types/picomatch": "^4.0.3",
"effect-bun-test": "0.3.0",
"solid-js": "^1.9.11",
"@effect/ai-anthropic": "4.0.0-beta.64",
"@effect/ai-openai": "4.0.0-beta.64",
"@effect/ai-openai-compat": "4.0.0-beta.64",
"@ff-labs/fff-bun": "0.7.2"
},
"patchedDependencies": {}
}