-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
27 lines (27 loc) · 867 Bytes
/
Copy pathpackage.json
File metadata and controls
27 lines (27 loc) · 867 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
{
"name": "@prodkit/monorepo",
"private": true,
"packageManager": "pnpm@11.5.0",
"type": "module",
"engines": {
"node": ">=24.14.0",
"pnpm": ">=11.5.0 <12"
},
"scripts": {
"build": "turbo run build --log-order=grouped",
"test": "turbo run test --log-order=grouped",
"typecheck": "turbo run typecheck --log-order=grouped",
"lint": "turbo run lint --log-order=grouped",
"fmt": "turbo run fmt --log-order=grouped",
"fmt:check": "turbo run fmt:check --log-order=grouped",
"gate": "pnpm --filter @prodkit/tools run gate",
"bench": "turbo run codspeed:bench --filter=@prodkit/benchmarks --log-order=grouped",
"build:size": "pnpm --filter @prodkit/op run build:size",
"clean": "git clean -Xfd"
},
"devDependencies": {
"oxlint": "catalog:",
"oxlint-tsgolint": "catalog:",
"turbo": "^2.10.8"
}
}