-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
29 lines (29 loc) · 995 Bytes
/
Copy pathpackage.json
File metadata and controls
29 lines (29 loc) · 995 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
{
"private": true,
"scripts": {
"build": "pnpm --filter './packages/*' --if-present build",
"dev": "pnpm --filter './packages/*' --parallel --if-present dev",
"lint": "oxlint packages",
"lint:fix": "oxlint --fix packages",
"test": "pnpm --filter './packages/*' --if-present test",
"format": "oxfmt --write .",
"format:check": "oxfmt --check .",
"clean": "pnpm -r exec rm -rf dist && rm -rf node_modules",
"changeset": "changeset",
"version-packages": "changeset version",
"release": "pnpm --filter './packages/*' --if-present build && oxlint packages && pnpm --filter './packages/*' --if-present test && changeset version && changeset publish"
},
"devDependencies": {
"@changesets/changelog-github": "^0.4.8",
"@changesets/cli": "^2.22.0",
"oxfmt": "^0.53.0",
"oxlint": "^1.68.0",
"oxlint-tsgolint": "^0.23.0"
},
"pnpm": {
"overrides": {
"@types/react": "18.3.3"
}
},
"packageManager": "pnpm@9.4.0"
}