-
Notifications
You must be signed in to change notification settings - Fork 103
/
package.json
38 lines (38 loc) · 1.29 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
{
"name": "root",
"type": "module",
"private": true,
"workspaces": ["packages/*", "scripts", "website"],
"scripts": {
"postinstall": "lefthook install",
"build": "turbo run build --filter='!./templates/**' --filter='!./website/**'",
"exports:check": "bun scripts check:exports",
"exports:sync": "bun scripts exports:sync",
"local:sync": "bun scripts local:sync",
"local:revert": "bun scripts local:sync --revert",
"lint": "turbo run lint",
"test": "turbo run test:ci",
"typecheck": "turbo run typecheck",
"react": "bun run --cwd packages/react",
"scripts": "bun run --cwd scripts",
"solid": "bun run --cwd packages/solid",
"svelte": "bun run --cwd packages/svelte",
"vue": "bun run --cwd packages/vue",
"web": "bun run --cwd website",
"setup": "vc link --scope=chakra-ui -p ark-docs -y && vc env pull website/.env",
"setup:prod": "vc link --scope=chakra-ui -p ark-docs -y && vc env pull --environment production website/.env"
},
"dependencies": {
"root": "."
},
"devDependencies": {
"@biomejs/biome": "1.9.4",
"@types/bun": "1.1.13",
"lefthook": "1.8.2",
"turbo": "2.2.3",
"typescript": "5.6.3",
"vercel": "37.14.0"
},
"packageManager": "[email protected]",
"trustedDependencies": ["@ark-ui/website"]
}