-
Notifications
You must be signed in to change notification settings - Fork 75
/
package.json
34 lines (34 loc) · 1.26 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
{
"name": "root",
"type": "module",
"private": true,
"workspaces": ["components/*", "packages/*", "scripts", "website"],
"scripts": {
"postinstall": "lefthook install",
"scripts": "bun run --cwd scripts",
"web": "bun run --cwd website",
"cli": "bun run --cwd packages/cli",
"panda": "bun run --cwd packages/panda",
"react": "bun run --cwd components/react",
"solid": "bun run --cwd components/solid",
"vue": "bun run --cwd components/vue",
"lint": "turbo run lint",
"typecheck": "turbo run typecheck",
"sync:components": "rsync -av ./components/react/src/components/ui ./website/src/components",
"sync:demos": "rsync -av --delete ./components/react/src/demos ./website/src/",
"sync:blocks": "rsync -av --delete ./components/react/src/plus/blocks ./website/src/components",
"setup": "vc link -p park-ui -y && vc env pull --environment development website/.env",
"mdx:format": "prettier --write ./website/src/**/*.mdx"
},
"dependencies": {
"@biomejs/biome": "1.9.4",
"@types/bun": "1.1.13",
"lefthook": "1.8.4",
"turbo": "2.3.0",
"typescript": "5.6.3",
"vercel": "39.0.3",
"vercel-submodules": "1.0.10"
},
"packageManager": "[email protected]",
"trustedDependencies": ["@park-ui/website"]
}