@devfellowship/components 1.2.2 → 1.3.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/cli.js +737 -0
- package/dist/index.cjs +446 -55
- package/dist/index.d.cts +73 -1
- package/dist/index.d.ts +73 -1
- package/dist/index.js +442 -57
- package/package.json +21 -3
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@devfellowship/components",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.3.0",
|
|
4
4
|
"description": "DFL Design System — UI components, hooks, utils and providers",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"sideEffects": [
|
|
@@ -35,11 +35,16 @@
|
|
|
35
35
|
"main": "./dist/index.cjs",
|
|
36
36
|
"module": "./dist/index.js",
|
|
37
37
|
"types": "./dist/index.d.ts",
|
|
38
|
+
"bin": {
|
|
39
|
+
"dfl-components": "./dist/cli.js"
|
|
40
|
+
},
|
|
38
41
|
"files": [
|
|
39
42
|
"dist"
|
|
40
43
|
],
|
|
41
44
|
"scripts": {
|
|
42
|
-
"build": "tsup",
|
|
45
|
+
"build": "tsup && tsup --config tsup.cli.config.ts",
|
|
46
|
+
"build:lib": "tsup",
|
|
47
|
+
"build:cli": "tsup --config tsup.cli.config.ts",
|
|
43
48
|
"build:watch": "tsup --watch",
|
|
44
49
|
"typecheck": "tsc --noEmit",
|
|
45
50
|
"test": "vitest run",
|
|
@@ -72,6 +77,9 @@
|
|
|
72
77
|
"@tailwindcss/vite": "^4.2.2",
|
|
73
78
|
"@testing-library/jest-dom": "^6.9.1",
|
|
74
79
|
"@testing-library/react": "^16.3.2",
|
|
80
|
+
"@types/fs-extra": "^11.0.4",
|
|
81
|
+
"@types/node": "^20.0.0",
|
|
82
|
+
"@types/prompts": "^2.4.9",
|
|
75
83
|
"@types/react": "^18.3.28",
|
|
76
84
|
"@types/react-dom": "^18.3.7",
|
|
77
85
|
"@vitejs/plugin-react": "^4.7.0",
|
|
@@ -114,20 +122,30 @@
|
|
|
114
122
|
"@radix-ui/react-toggle-group": "^1.1.11",
|
|
115
123
|
"@radix-ui/react-tooltip": "^1.1.4",
|
|
116
124
|
"@testing-library/dom": "^10.4.1",
|
|
125
|
+
"ajv": "^8.17.1",
|
|
126
|
+
"ajv-formats": "^3.0.1",
|
|
127
|
+
"chalk": "^5.3.0",
|
|
117
128
|
"class-variance-authority": "^0.7.1",
|
|
118
129
|
"clsx": "^2.1.1",
|
|
119
130
|
"cmdk": "^1.1.1",
|
|
131
|
+
"commander": "^12.0.0",
|
|
132
|
+
"cosmiconfig": "^9.0.0",
|
|
120
133
|
"date-fns": "^3.6.0",
|
|
121
134
|
"embla-carousel-react": "^8.6.0",
|
|
135
|
+
"fs-extra": "^11.2.0",
|
|
122
136
|
"input-otp": "^1.4.2",
|
|
123
137
|
"lucide-react": "^0.462.0",
|
|
124
138
|
"next-themes": "^0.4.6",
|
|
139
|
+
"node-fetch": "^3.3.2",
|
|
140
|
+
"ora": "^8.0.1",
|
|
141
|
+
"prompts": "^2.4.2",
|
|
125
142
|
"react-day-picker": "^8.10.1",
|
|
126
143
|
"react-hook-form": "^7.72.1",
|
|
127
144
|
"react-resizable-panels": "^2.1.9",
|
|
128
145
|
"recharts": "^2.15.0",
|
|
129
146
|
"sonner": "^2.0.7",
|
|
130
147
|
"tailwind-merge": "^2.5.2",
|
|
131
|
-
"vaul": "^1.1.2"
|
|
148
|
+
"vaul": "^1.1.2",
|
|
149
|
+
"zod": "^3.23.8"
|
|
132
150
|
}
|
|
133
151
|
}
|