-
-
Notifications
You must be signed in to change notification settings - Fork 111
/
package.json
39 lines (39 loc) · 1.43 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
{
"private": true,
"scripts": {
"check": "pnpm run --filter './packages/**' --parallel check",
"build": "pnpm run --filter './packages/**' build",
"dev": "vitest --config .config/vitest.config.ts",
"docs": "pnpm run --filter './docs/latest' dev",
"lint": "pnpm run --filter './packages/**' --parallel lint",
"lint-staged": "lint-staged --config .config/lint-staged.config.mjs",
"preinstall": "npx only-allow pnpm",
"prepare": "run-p -s prepare:*",
"prepare:hooks": "git config core.hooksPath .github/hooks",
"prepare:packages": "pnpm build",
"prettier": "prettier --config .prettierrc.js --ignore-unknown --no-error-on-unmatched-pattern",
"syncpack": "SYNCPACK_VERBOSE=true syncpack list-mismatches --config .config/.syncpackrc",
"test": "vitest --config .config/vitest.config.ts run --coverage",
"bundlesize": "pnpm run --filter './packages/**' --parallel bundlesize",
"sponsors": "sponsorkit"
},
"devDependencies": {
"@vitest/coverage-v8": "1.5.0",
"if-env": "1.0.4",
"lint-staged": "15.2.2",
"npm-run-all": "4.1.5",
"prettier": "3.2.5",
"prettier-plugin-astro": "0.13.0",
"prettier-plugin-packagejson": "2.5.0",
"prettier-plugin-tailwindcss": "0.5.14",
"sharp": "^0.33.2",
"sponsorkit": "^0.15.5",
"syncpack": "12.3.1",
"typescript": "5.4.5",
"vitest": "1.5.0"
},
"packageManager": "[email protected]",
"engines": {
"node": "20"
}
}