-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.76 KB
/
Copy pathpackage.json
File metadata and controls
49 lines (49 loc) · 1.76 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
{
"name": "stack-effect",
"private": true,
"license": "MIT",
"overrides": {
"@effect/platform-node-shared": "4.0.0-rc.115"
},
"scripts": {
"build": "turbo run build",
"catalog:diff-workspace": "bun run start -- catalog workspace diff --root workspace/catalog-built",
"catalog:reset-workspace": "bun run start -- catalog workspace reset --root workspace/catalog-built",
"catalog:validate-workspace": "bun run start -- catalog workspace validate --root workspace/catalog-built",
"clean": "turbo run clean && git clean -xdf node_modules .cache .turbo dist tsconfig.tsbuildinfo playwright-report test-results",
"dev": "turbo run dev",
"docs:check": "bun run docs:generate && git diff --exit-code -- apps/docs/app/content/reference/cli",
"docs:generate": "bun run --cwd apps/cli docs:generate",
"lint": "biome lint .",
"format": "biome check --write .",
"format:check": "biome check .",
"prepare": "effect-tsgo patch --typescript --no-oxlint",
"test": "turbo run test",
"test:e2e": "vitest run --config vitest.e2e.config.ts --root apps/cli",
"start": "bun apps/cli/src/index.ts",
"type-check": "turbo run type-check",
"complexity": "bun run scripts/complexity-report.ts",
"okf:check": "okf-graph validate .okf --json"
},
"devDependencies": {
"@biomejs/biome": "2.5.14",
"@changesets/cli": "^2.31.1",
"@effect/language-service": "^0.87.2",
"@effect/platform-bun": "4.0.0-rc.115",
"@types/bun": "^1.4.2",
"effect": "4.0.0-rc.115",
"turbo": "^2.11.2",
"typescript": "7.0.2",
"vitest": "^5.0.1",
"@effect/tsgo": "0.45.0",
"okf-graph": "0.3.0"
},
"engines": {
"node": ">=24"
},
"packageManager": "bun@1.4.2",
"workspaces": [
"apps/*",
"packages/*"
]
}