-
Notifications
You must be signed in to change notification settings - Fork 108
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 915 Bytes
/
package.json
File metadata and controls
36 lines (36 loc) · 915 Bytes
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
{
"name": "root",
"type": "module",
"private": true,
"workspaces": [
"components/*",
"packages/*",
"website"
],
"scripts": {
"prepare": "bun run --filter='*' prepare",
"postinstall": "lefthook install",
"lint": "bun run --filter='*' lint",
"test": "bun run --filter='*' test",
"typecheck": "bun run --filter='*' typecheck",
"cli": "bun run --cwd packages/cli",
"preset": "bun run --cwd packages/preset",
"react": "bun run --cwd components/react",
"solid": "bun run --cwd components/solid",
"vue": "bun run --cwd components/vue",
"web": "bun run --cwd website"
},
"devDependencies": {
"@biomejs/biome": "2.3.12",
"@types/bun": "1.3.6",
"lefthook": "2.0.15"
},
"trustedDependencies": [
"@park-ui/react",
"@park-ui/website"
],
"packageManager": "bun@1.3.6",
"resolutions": {
"caniuse-lite": "1.0.30001751"
}
}