-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 loc) · 1.58 KB
/
package.json
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
33
34
35
36
37
38
39
40
41
{
"version": "0.1.0",
"private": true,
"type": "module",
"scripts": {
"build": "pnpm -r run build",
"changeset:add": "changeset",
"changeset:commit": "git add ./.changeset && git commit -m 'chore(docs): add changesets'",
"changeset:release": "pnpm run build && changeset publish",
"changeset:version-packages": "changeset version && pnpm format",
"dev": "pnpm -r --parallel run dev",
"format": "pnpm format:prettier && pnpm format:pkg",
"format:pkg": "bun run --bun sort-package-json package.json packages/*/package.json",
"format:prettier": "bun run --bun prettier --write README.md .github/ ./packages",
"lint": "pnpm typecheck && pnpm lint:prettier && pnpm lint:madge",
"lint:madge": "bun run --bun madge --circular --extensions ts,tsx packages/",
"lint:prettier": "bun run --bun prettier --check README.md .github/ ./packages",
"prepare": "pnpm format:pkg && husky",
"test": "vitest --run",
"test:watch": "vitest",
"typecheck": "pnpm -r run typecheck",
"update-deps": "pnpm -r up --latest --save",
"postupdate-deps": "pnpm install && echo 'Installed dependencies again to apply any pnpm overrides.'"
},
"devDependencies": {
"@changesets/changelog-github": "^0.5.1",
"@changesets/cli": "^2.28.1",
"@commitlint/cli": "^19.8.0",
"@commitlint/config-conventional": "^19.8.0",
"husky": "^9.1.7",
"madge": "^8.0.0",
"prettier": "^3.5.3",
"sort-package-json": "^3.0.0",
"typescript": "^5.8.2",
"vitest": "^3.1.1"
},
"packageManager": "[email protected]",
"engines": {
"node": ">=22.11.0"
}
}