-
Notifications
You must be signed in to change notification settings - Fork 138
/
Copy pathpackage.json
56 lines (56 loc) · 1.65 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
45
46
47
48
49
50
51
52
53
54
55
56
{
"name": "root",
"type": "module",
"private": true,
"workspaces": [
"packages/*",
"templates/**",
"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",
"format": "bun prettier --write .",
"lint": "turbo run lint",
"test": "turbo run test:ci --concurrency=1",
"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",
"@release-it/keep-a-changelog": "7.0.0",
"@types/bun": "1.2.10",
"lefthook": "1.11.11",
"release-it": "19.0.1",
"prettier": "3.5.3",
"prettier-plugin-svelte": "3.3.3",
"turbo": "2.5.2",
"typescript": "5.8.3",
"vercel": "41.6.2"
},
"packageManager": "bun@1.2.10",
"trustedDependencies": [
"@ark-ui/website"
],
"patchedDependencies": {
"happy-dom@17.4.4": "patches/happy-dom@17.4.4.patch"
},
"overrides": {
"flexsearch": "0.8.158"
}
}