-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 890 Bytes
/
package.json
File metadata and controls
35 lines (35 loc) · 890 Bytes
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
{
"name": "ralph",
"private": true,
"scripts": {
"build": "turbo run build",
"dev": "turbo run dev",
"dev:docs": "turbo run dev --filter=docs",
"test": "turbo run test",
"check": "biome check",
"check:types": "turbo run check:types",
"version:packages": "changeset version",
"release:build": "bun run scripts/release/build-binaries.ts",
"release:stage": "bun run scripts/release/stage-npm.ts",
"release:publish": "bun run scripts/release/publish-npm.ts",
"release:dry-run": "bun run scripts/release/publish-npm.ts --dry-run"
},
"devDependencies": {
"@biomejs/biome": "2.3.14",
"@changesets/changelog-git": "^0.2.1",
"@changesets/cli": "^2.29.8",
"turbo": "^2.8.3",
"typescript": "5.9.2"
},
"packageManager": "bun@1.3.10",
"engines": {
"bun": ">=1.0.0"
},
"catalog": {
"typescript": "^5.9.3"
},
"workspaces": [
"apps/*",
"packages/*"
]
}