forked from joe-bell/cva
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
35 lines (35 loc) · 1.25 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
{
"private": true,
"scripts": {
"check": "pnpm run --filter './packages/*' --parallel check",
"build": "pnpm run --filter './packages/*' build",
"dev": "pnpm run --filter './packages/*' --parallel dev",
"docs": "pnpm run --filter docs dev",
"format": "pnpm prettier -- --check .",
"lint": "pnpm run --filter './packages/*' --parallel lint",
"lint-staged": "lint-staged --config .config/lint-staged.config.mjs",
"preinstall": "npx only-allow pnpm && corepack enable",
"prepare": "run-p -s prepare:*",
"prepare:husky": "if-env VERCEL=1 && echo 'Skipping prepare' || husky install",
"prepare:packages": "pnpm build",
"prettier": "prettier --ignore-unknown --no-error-on-unmatched-pattern",
"syncpack": "syncpack list-mismatches --config .config/.syncpackrc",
"test": "pnpm run --filter './packages/*' --parallel test"
},
"devDependencies": {
"husky": "8.0.1",
"if-env": "1.0.4",
"lint-staged": "13.0.1",
"npm-run-all": "4.1.5",
"prettier": "2.6.2",
"prettier-plugin-astro": "0.8.0",
"prettier-plugin-packagejson": "2.4.2",
"prettier-plugin-tailwindcss": "0.2.2",
"syncpack": "8.4.11"
},
"packageManager": "pnpm@8.1.1",
"engines": {
"node": "18",
"pnpm": "8"
}
}