-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
68 lines (68 loc) · 2.45 KB
/
package.json
File metadata and controls
68 lines (68 loc) · 2.45 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
{
"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,effect \"env -u FORCE_COLOR NO_COLOR=1 oxlint --ignore-path=.oxlintignore\" \"turbo run lint\"",
"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 turbo run test",
"test:e2e": "turbo run test:e2e",
"gate": "env -u FORCE_COLOR NO_COLOR=1 concurrently -n type,style,build,test \"bun run typecheck\" \"bun run lint && bun run fmt:check\" \"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"
},
"dependencies": {
"effect-machine": "catalog:",
"msgpackr": "catalog:",
"multipasta": "catalog:"
},
"devDependencies": {
"@effect/language-service": "^0.85.1",
"@effect/platform-bun": "catalog:",
"@effect/sql-pg": "catalog:",
"@effect/sql-sqlite-bun": "catalog:",
"@types/bun": "^1.3.11",
"concurrently": "^9.2.1",
"effect": "catalog:",
"effect-bun-test": "catalog:",
"lefthook": "^2.1.6",
"oxfmt": "^0.46.0",
"oxlint": "^1.61.0",
"oxlint-tsgolint": "^0.21.1",
"turbo": "^2.9.6",
"typescript": "^6.0.3"
},
"overrides": {
"@effect/ai-anthropic": "4.0.0-beta.52",
"@effect/ai-openai": "4.0.0-beta.52",
"@effect/ai-openai-compat": "4.0.0-beta.52",
"effect": "4.0.0-beta.52"
},
"packageManager": "bun@1.3.6",
"catalog": {
"effect": "4.0.0-beta.52",
"@effect/platform-bun": "4.0.0-beta.52",
"@effect/sql-pg": "4.0.0-beta.52",
"@effect/sql-sqlite-bun": "4.0.0-beta.52",
"effect-machine": "file:/Users/cvr/Developer/personal/effect-machine",
"effect-wide-event": "file:/Users/cvr/Developer/personal/effect-wide-event",
"msgpackr": "^1.11.10",
"multipasta": "^0.2.7",
"effect-bun-test": "0.3.0",
"solid-js": "^1.9.11",
"@effect/ai-anthropic": "4.0.0-beta.52",
"@effect/ai-openai": "4.0.0-beta.52",
"@effect/ai-openai-compat": "4.0.0-beta.52",
"@ff-labs/fff-bun": "0.6.1"
},
"patchedDependencies": {}
}