-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1.07 KB
/
package.json
File metadata and controls
44 lines (44 loc) · 1.07 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
{
"name": "ministudio-ui",
"version": "0.0.22",
"description": "Reusable React components and CLI tools for Mini Studio",
"type": "module",
"main": "dist/index.js",
"module": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"build": "tsup src/index.tsx --dts --format esm,cjs && tsup src/cli.ts --format esm,cjs"
},
"bin": {
"ministudio-ui": "./dist/cli.js"
},
"peerDependencies": {
"framer-motion": ">=11.0.0",
"lucide-react": ">=0.300.0",
"react": ">=18.0.0",
"react-dom": ">=18.0.0",
"recharts": ">=2.0.0",
"tailwindcss": ">=3.4.0"
},
"devDependencies": {
"@tailwindcss/postcss": "^4.1.16",
"@types/node": "^24.10.0",
"@types/react": "^18.2.0",
"@types/react-dom": "^18.2.0",
"autoprefixer": "^10.4.21",
"lucide-react": "^0.400.0",
"postcss": "^8.5.6",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"recharts": "^2.12.3",
"tailwindcss": "^4.1.16",
"tsup": "^8.0.0",
"typescript": "^5.0.0"
},
"dependencies": {
"chalk": "^5.6.2"
}
}