-
Notifications
You must be signed in to change notification settings - Fork 37
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 846 Bytes
/
package.json
File metadata and controls
32 lines (32 loc) · 846 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
{
"name": "@bippy/monorepo",
"type": "module",
"scripts": {
"dev": "pnpm --filter=./packages/bippy run dev",
"build": "pnpm --filter=./packages/bippy run build",
"test": "pnpm --filter=./packages/bippy run test",
"publint": "pnpm --filter=./packages/bippy run publint",
"fmt": "vp fmt",
"lint": "vp lint",
"check": "vp check",
"sherif": "sherif --fix",
"changeset": "nr build && changeset",
"version": "changeset version",
"release": "changeset publish"
},
"packageManager": "pnpm@10.12.1",
"private": true,
"pnpm": {
"overrides": {
"react": "^19.2.4",
"react-dom": "^19.2.4"
}
},
"devDependencies": {
"@antfu/ni": "^27.0.1",
"@changesets/changelog-git": "^0.2.0",
"@changesets/cli": "^2.27.11",
"sherif": "^1.2.0",
"vite-plus": "latest"
}
}