-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 868 Bytes
/
package.json
File metadata and controls
33 lines (33 loc) · 868 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
{
"name": "fern-github-actions",
"private": true,
"version": "0.0.0",
"description": "Monorepo for Fern GitHub Actions",
"scripts": {
"build": "pnpm -r --filter '!./packages/**' run build",
"build:all": "pnpm -r run build",
"test": "pnpm -r run test",
"typecheck": "pnpm -r run typecheck",
"lint": "biome lint .",
"lint:fix": "biome lint --write .",
"format": "biome format --write .",
"format:check": "biome format .",
"check": "biome check .",
"check:fix": "biome check --write .",
"postinstall": "lefthook install"
},
"devDependencies": {
"@biomejs/biome": "^1.9.0",
"lefthook": "^1.7.0",
"typescript": "^5.5.0",
"vitest": "^2.0.0"
},
"packageManager": "pnpm@10.33.0",
"engines": {
"node": ">=20",
"pnpm": ">=10"
},
"pnpm": {
"onlyBuiltDependencies": ["esbuild"]
}
}