-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
27 lines (27 loc) · 946 Bytes
/
package.json
File metadata and controls
27 lines (27 loc) · 946 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
{
"type": "module",
"scripts": {
"build": "turbo run build",
"deps:reinstall": "pnpm dlx rimraf node_modules pnpm-lock.yaml ./**/node_modules && pnpm install",
"deps:update": "pnpm -r update --latest && pnpm dedupe",
"test": "turbo run test",
"check": "biome check .",
"check:fix": "biome check . --write --unsafe",
"publish-packages": "turbo run check build test && changeset version && changeset publish && turbo run check:fix"
},
"private": true,
"packageManager": "pnpm@10.7.1+sha512.2d92c86b7928dc8284f53494fb4201f983da65f0fb4f0d40baafa5cf628fa31dae3e5968f12466f17df7e97310e30f343a648baea1b9b350685dafafffdf5808",
"devDependencies": {
"@biomejs/biome": "^1.9.4",
"@changesets/cli": "^2.28.1",
"@repo/tsconfig": "workspace:*",
"turbo": "^2.5.0",
"typescript": "^5.8.3"
},
"pnpm": {
"allowedDeprecatedVersions": {
"glob": "8.1.0",
"inflight": "1.0.6"
}
}
}