-
-
Notifications
You must be signed in to change notification settings - Fork 38
Expand file tree
/
Copy pathpackage.json
More file actions
81 lines (81 loc) · 2.16 KB
/
package.json
File metadata and controls
81 lines (81 loc) · 2.16 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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
{
"name": "smoothui-cli",
"version": "1.1.1",
"author": "educalvolpz",
"description": "CLI to install SmoothUI components - beautifully designed React components with smooth animations",
"private": false,
"license": "MIT",
"keywords": [
"cli",
"components",
"ui",
"react",
"tailwindcss",
"motion",
"framer-motion",
"shadcn",
"animations"
],
"repository": {
"type": "git",
"url": "git+https://github.com/educlopez/smoothui.git"
},
"homepage": "https://smoothui.dev",
"bugs": {
"url": "https://github.com/educlopez/smoothui/issues"
},
"bin": {
"smoothui": "dist/index.js",
"smoothui-cli": "dist/index.js"
},
"files": [
"dist/index.js",
"README.md"
],
"scripts": {
"prepublishOnly": "cp README.md README.github.md && cp README.npm.md README.md",
"postpublish": "cp README.github.md README.md && rm README.github.md",
"build": "turbo build",
"dev": "turbo dev",
"check": "ultracite check",
"fix": "ultracite fix",
"test": "turbo test",
"analyze": "turbo analyze",
"bump-deps": "npx npm-check-updates --deep -u -x shiki,next,recharts,require-in-the-middle && pnpm install",
"bump-ui": "npx shadcn@latest add --all --overwrite -c packages/shadcn-ui && npx shadcn@latest migrate radix -c packages/shadcn-ui",
"clean": "git clean -xdf node_modules",
"calculate-sizes": "npx tsx scripts/calculate-bundle-sizes.ts",
"prepare": "husky"
},
"devDependencies": {
"@auto-it/first-time-contributor": "^11.3.6",
"@biomejs/biome": "2.4.13",
"@smoothui/data": "workspace:*",
"@types/node": "^25.6.0",
"esbuild": "^0.27.7",
"husky": "^9.1.7",
"lint-staged": "^16.4.0",
"tsup": "^8.5.1",
"turbo": "^2.8.3",
"typescript": "^5.9.3",
"ultracite": "^7.6.0",
"zod": "^4.3.6"
},
"engines": {
"node": ">=18"
},
"packageManager": "pnpm@11.1.2",
"type": "module",
"lint-staged": {
"*.{ts,tsx,js,jsx}": [
"biome check --write"
],
"*.{json,css,md,mdx}": [
"biome format --write --no-errors-on-unmatched"
]
},
"dependencies": {
"@clack/prompts": "^0.11.0",
"picocolors": "^1.1.1"
}
}