-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
30 lines (30 loc) · 837 Bytes
/
Copy pathpackage.json
File metadata and controls
30 lines (30 loc) · 837 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
{
"name": "boardstate-monorepo",
"private": true,
"type": "module",
"engines": {
"node": ">=22"
},
"packageManager": "pnpm@11.9.0",
"scripts": {
"build": "pnpm -r build",
"test": "vitest run",
"lint": "oxlint . && prettier --check .",
"format": "prettier --write .",
"changeset": "changeset",
"release": "pnpm build && pnpm -r publish --access public --provenance --no-git-checks && changeset tag",
"typecheck": "tsc -p tsconfig.typecheck.json --noEmit",
"build:registry": "node scripts/build-registry.mjs"
},
"devDependencies": {
"@changesets/changelog-github": "^0.7.0",
"@changesets/cli": "^2",
"@types/node": "^26.1.0",
"happy-dom": "latest",
"oxlint": "latest",
"prettier": "^3",
"tsdown": "^0.22",
"typescript": "^5.7",
"vitest": "^4"
}
}