-
Notifications
You must be signed in to change notification settings - Fork 119
/
package.json
45 lines (45 loc) · 1.21 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
{
"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",
"format": "bun prettier --write .",
"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"
},
"dependencies": {
"root": "."
},
"devDependencies": {
"@biomejs/biome": "1.9.4",
"@types/bun": "1.1.14",
"lefthook": "1.10.1",
"prettier": "3.4.2",
"prettier-plugin-svelte": "3.3.2",
"turbo": "2.3.3",
"typescript": "5.7.2",
"vercel": "39.2.6"
},
"packageManager": "[email protected]",
"trustedDependencies": [
"@ark-ui/website"
]
}