-
Notifications
You must be signed in to change notification settings - Fork 191
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 2.02 KB
/
package.json
File metadata and controls
62 lines (62 loc) · 2.02 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
61
62
{
"name": "root",
"type": "module",
"private": true,
"workspaces": [
"packages/*",
"templates/**",
"scripts",
"website"
],
"scripts": {
"postinstall": "lefthook install",
"build": "turbo run build --filter='!./templates/**' --filter='!./website/**'",
"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": "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",
"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/format-changelogs.cjs",
"release": "changeset publish"
},
"devDependencies": {
"@biomejs/biome": "2.4.9",
"@changesets/cli": "2.30.0",
"@shikijs/langs": "4.0.2",
"@shikijs/themes": "4.0.2",
"@types/bun": "1.3.9",
"lefthook": "2.1.1",
"next": "15.5.12",
"prettier": "3.8.1",
"prettier-plugin-svelte": "3.5.1",
"turbo": "2.8.10",
"typescript": "5.9.3",
"vercel": "50.22.1",
"website": "0.1.1"
},
"packageManager": "bun@1.3.3",
"trustedDependencies": [
"@ark-ui/website"
],
"overrides": {
"flexsearch": "0.8.212",
"vite": "7.3.1"
}
}