-
-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathpackage.json
40 lines (40 loc) · 1001 Bytes
/
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
{
"name": "kibo-ui",
"version": "1.0.18",
"bin": {
"kibo-ui": "dist/index.js"
},
"files": [
"dist/index.js"
],
"scripts": {
"prebuild": "bun scripts/build-registry.ts",
"build": "turbo build",
"predev": "pnpm run prebuild",
"dev": "turbo dev",
"lint": "ultracite lint",
"format": "ultracite format",
"test": "turbo test",
"analyze": "turbo analyze",
"bump-deps": "npx npm-check-updates --deep -u -x react-day-picker && pnpm install",
"bump-ui": "npx shadcn@latest add --all --overwrite -c packages/shadcn-ui",
"clean": "git clean -xdf node_modules"
},
"devDependencies": {
"@auto-it/first-time-contributor": "^11.3.0",
"@biomejs/biome": "1.9.4",
"@types/node": "^22.10.7",
"turbo": "^2.3.3",
"typescript": "^5.7.3",
"ultracite": "^4.1.15"
},
"engines": {
"node": ">=18"
},
"packageManager": "pnpm@9.15.4",
"type": "module",
"dependencies": {
"tsup": "^8.3.5",
"zod": "^3.24.1"
}
}