-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 859 Bytes
/
package.json
File metadata and controls
38 lines (38 loc) · 859 Bytes
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": "ui",
"devDependencies": {
"@biomejs/biome": "^2.4.11",
"@changesets/cli": "^2.30.0",
"@total-typescript/tsconfig": "^1.0.4",
"turbo": "^2.9.5",
"typescript": "^6.0.2"
},
"license": "MIT",
"packageManager": "bun@1.2.0",
"private": true,
"overrides": {
"cva": "1.0.0-beta.4"
},
"scripts": {
"check": "biome check .",
"dev": "turbo run dev",
"deploy": "turbo run deploy --filter=playground",
"build": "turbo run build",
"fix": "biome check . --write",
"format": "biome format . --write",
"release": "turbo run build --filter=orphos && changeset publish"
},
"sideEffects": false,
"trustedDependencies": [
"@biomejs/biome",
"@tailwindcss/oxide",
"core-js",
"esbuild",
"sharp",
"workerd"
],
"type": "module",
"workspaces": [
"packages/*"
]
}