-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
26 lines (26 loc) · 769 Bytes
/
Copy pathpackage.json
File metadata and controls
26 lines (26 loc) · 769 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
{
"private": true,
"type": "module",
"engines": {
"node": ">=24"
},
"packageManager": "pnpm@11.8.0",
"scripts": {
"build": "turbo run build",
"lint": "turbo run lint",
"lint:fix": "turbo run lint:fix",
"format": "prettier --check \"**/*.{yaml,yml,md}\" && biome check *.json",
"format:fix": "prettier --write \"**/*.{yaml,yml,md}\" && biome check --write *.json",
"typecheck": "turbo run typecheck",
"test:ci": "turbo run test:ci --concurrency=1",
"changeset": "changeset",
"version-packages": "changeset version",
"release": "turbo run build && changeset publish"
},
"devDependencies": {
"@biomejs/biome": "^2.3.8",
"@changesets/cli": "^2.29.7",
"prettier": "^3.6.2",
"turbo": "^2.6.1"
}
}