-
-
Notifications
You must be signed in to change notification settings - Fork 11
/
package.json
44 lines (44 loc) · 1.21 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
42
43
44
{
"name": "@whyframe/monorepo",
"private": true,
"type": "module",
"scripts": {
"test": "pnpm test:unit && pnpm test:e2e",
"test:unit": "pnpm --filter \"!@whyframe/tests\" run test",
"test:unit-update": "pnpm test:unit --update",
"test:e2e": "pnpm --dir tests test",
"docs-dev": "cd docs && pnpm dev",
"docs-build": "cd docs && pnpm build",
"lint": "prettier \"**/*.{js,ts,jsx,css,md,vue,svelte,astro}\" --check --cache",
"format": "prettier \"**/*.{js,ts,jsx,css,md,vue,svelte,astro}\" --write --cache"
},
"devDependencies": {
"prettier": "^3.2.5",
"prettier-plugin-astro": "^0.13.0",
"prettier-plugin-svelte": "^3.0.3",
"svelte": "^4.2.12",
"uvu": "^0.5.6"
},
"packageManager": "pnpm@8.6.12",
"pnpm": {
"overrides": {
"@whyframe/astro": "workspace:*",
"@whyframe/core": "workspace:*",
"@whyframe/jsx": "workspace:*",
"@whyframe/svelte": "workspace:*",
"@whyframe/vue": "workspace:*"
},
"peerDependencyRules": {
"ignoreMissing": [
"@algolia/client-search",
"@babel/core",
"@types/react",
"react",
"react-dom",
"rollup",
"typescript",
"vite"
]
}
}
}