forked from chakra-ui/ark
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 1.98 KB
/
Copy pathpackage.json
File metadata and controls
60 lines (60 loc) · 1.98 KB
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
57
58
59
60
{
"name": "root",
"type": "module",
"private": true,
"workspaces": [
"packages/*",
"templates/**",
"scripts",
"website"
],
"scripts": {
"postinstall": "lefthook install",
"build": "bun run --filter='./packages/*' build",
"check:anatomy": "bun scripts check:anatomy",
"check:exports": "bun scripts check:exports",
"check:zag": "bun scripts check:zag",
"clean": "find . -name 'node_modules' -type d -prune -exec rm -rf {} \\;",
"exports:sync": "bun scripts exports:sync",
"local:sync": "bun scripts local:sync",
"local:sync:full": "bun scripts local:sync --full-clean",
"local:revert": "bun scripts local:sync --revert",
"format": "bun prettier --write .",
"lint": "bun run --filter='*' lint",
"test": "bun run --sequential --filter='*' test:ci",
"typecheck": "bun run --filter='*' 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",
"mcp": "bun run --cwd packages/mcp",
"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",
"changeset": "changeset",
"version": "changeset version && node .changeset/postprocess-changelogs.cjs",
"release": "changeset publish"
},
"devDependencies": {
"@biomejs/biome": "2.5.8",
"@changesets/cli": "3.0.1",
"@shikijs/langs": "4.4.3",
"@shikijs/themes": "4.4.3",
"@types/bun": "1.3.14",
"lefthook": "2.1.10",
"next": "15.5.23",
"prettier": "3.9.6",
"prettier-plugin-svelte": "4.1.1",
"typescript": "6.0.3",
"vercel": "59.1.4"
},
"packageManager": "bun@1.3.14",
"trustedDependencies": [
"@ark-ui/website"
],
"overrides": {
"flexsearch": "0.8.212",
"vite": "8.2.1"
}
}