-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
182 lines (182 loc) · 8.78 KB
/
package.json
File metadata and controls
182 lines (182 loc) · 8.78 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
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
{
"name": "veloria-ui",
"version": "0.1.5",
"private": false,
"description": "Veloria UI — Build anything. Ship faster. Accessible, composable React components with Tailwind CSS.",
"keywords": [
"react", "ui", "components", "veloria-ui", "design-system", "accessible",
"aria", "tailwind", "tailwindcss", "nextjs", "typescript", "dark-mode",
"radix-ui", "component-library", "react-hook-form", "rhf", "form-adapter",
"sparkline", "gauge", "pricing", "typewriter", "aurora", "rich-text-editor",
"tiptap", "data-grid", "animation", "motion", "web-animations-api",
"framer-alternative", "zero-dependency-animation"
],
"homepage": "https://ui-veloria.vercel.app/",
"repository": { "type": "git", "url": "https://github.com/JohnDev19/Veloria-UI.git" },
"bugs": { "url": "https://github.com/JohnDev19/Veloria-UI/issues" },
"license": "MIT",
"author": { "name": "JohnDev19", "url": "https://github.com/JohnDev19" },
"sideEffects": ["**/*.css"],
"exports": {
".": { "types": "./dist/index.d.ts", "import": "./dist/index.mjs", "require": "./dist/index.js" },
"./rhf": { "types": "./dist/rhf.d.ts", "import": "./dist/rhf.mjs", "require": "./dist/rhf.js" },
"./motion": { "types": "./dist/motion.d.ts", "import": "./dist/motion.mjs", "require": "./dist/motion.js" },
"./styles": "./dist/styles/veloria.css",
"./tailwind": "./dist/tailwind.js",
"./provider": { "types": "./dist/provider.d.ts", "import": "./dist/provider.mjs", "require": "./dist/provider.js" },
"./cli": "./dist/cli/index.js"
},
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"bin": { "veloria-ui": "./dist/cli/index.js" },
"files": ["dist", "src", "README.md", "CHANGELOG.md", "LICENSE"],
"scripts": {
"build": "tsup",
"dev": "tsup --watch",
"lint": "eslint src --ext .ts,.tsx",
"typecheck": "tsc --noEmit",
"clean": "rm -rf dist",
"prepublishOnly": "npm run build"
},
"dependencies": {
"chalk": "^4.1.2",
"commander": "^11.1.0",
"execa": "^5.1.1",
"fs-extra": "^11.2.0",
"ora": "^5.4.1",
"prompts": "^2.4.2"
},
"devDependencies": {
"@types/fs-extra": "^11.0.4",
"@types/node": "^20.11.5",
"@types/prompts": "^2.4.9",
"@types/react": "^18.2.48",
"@types/react-dom": "^18.2.18",
"class-variance-authority": "^0.7.0",
"clsx": "^2.1.0",
"tailwind-merge": "^2.2.1",
"tailwindcss": "^4.0.0",
"tsup": "^8.5.1",
"typescript": "^5.9.3",
"@radix-ui/react-slot": "^1.0.2",
"@radix-ui/react-avatar": "^1.0.4",
"@radix-ui/react-checkbox": "^1.0.4",
"@radix-ui/react-context-menu": "^2.1.5",
"@radix-ui/react-dialog": "^1.0.5",
"@radix-ui/react-dropdown-menu": "^2.0.6",
"@radix-ui/react-hover-card": "^1.0.7",
"@radix-ui/react-navigation-menu": "^1.1.4",
"@radix-ui/react-popover": "^1.0.7",
"@radix-ui/react-progress": "^1.0.3",
"@radix-ui/react-radio-group": "^1.1.3",
"@radix-ui/react-scroll-area": "^1.0.5",
"@radix-ui/react-select": "^2.0.0",
"@radix-ui/react-separator": "^1.0.3",
"@radix-ui/react-slider": "^1.1.2",
"@radix-ui/react-switch": "^1.0.3",
"@radix-ui/react-tabs": "^1.0.4",
"@radix-ui/react-toast": "^1.1.5",
"@radix-ui/react-tooltip": "^1.0.7",
"@radix-ui/react-aspect-ratio": "^1.0.3",
"cmdk": "^0.2.1",
"lucide-react": "^0.309.0",
"@tiptap/react": "^2.4.0",
"@tiptap/starter-kit": "^2.4.0",
"@tiptap/extension-placeholder": "^2.4.0",
"@tiptap/extension-link": "^2.4.0",
"@tiptap/extension-underline": "^2.4.0",
"@tiptap/extension-text-align": "^2.4.0",
"@tiptap/extension-code-block-lowlight": "^2.4.0",
"lowlight": "^3.1.0"
},
"peerDependencies": {
"react": "^18.0.0",
"react-dom": "^18.0.0",
"react-hook-form": "^7.0.0",
"@radix-ui/react-accessible-icon": "^1.0.3",
"@radix-ui/react-alert-dialog": "^1.0.5",
"@radix-ui/react-aspect-ratio": "^1.0.3",
"@radix-ui/react-avatar": "^1.0.4",
"@radix-ui/react-checkbox": "^1.0.4",
"@radix-ui/react-collapsible": "^1.0.3",
"@radix-ui/react-context-menu": "^2.1.5",
"@radix-ui/react-dialog": "^1.0.5",
"@radix-ui/react-dropdown-menu": "^2.0.6",
"@radix-ui/react-hover-card": "^1.0.7",
"@radix-ui/react-label": "^2.0.2",
"@radix-ui/react-navigation-menu": "^1.1.4",
"@radix-ui/react-popover": "^1.0.7",
"@radix-ui/react-portal": "^1.0.4",
"@radix-ui/react-progress": "^1.0.3",
"@radix-ui/react-radio-group": "^1.1.3",
"@radix-ui/react-scroll-area": "^1.0.5",
"@radix-ui/react-select": "^2.0.0",
"@radix-ui/react-separator": "^1.0.3",
"@radix-ui/react-slider": "^1.1.2",
"@radix-ui/react-slot": "^1.0.2",
"@radix-ui/react-switch": "^1.0.3",
"@radix-ui/react-tabs": "^1.0.4",
"@radix-ui/react-toast": "^1.1.5",
"@radix-ui/react-toggle": "^1.0.3",
"@radix-ui/react-tooltip": "^1.0.7",
"class-variance-authority": "^0.7.0",
"clsx": "^2.1.0",
"tailwind-merge": "^2.2.1",
"cmdk": "^0.2.1",
"lucide-react": "^0.309.0",
"tailwindcss": ">=3.0.0",
"@tiptap/react": "^2.0.0",
"@tiptap/starter-kit": "^2.0.0",
"@tiptap/extension-placeholder": "^2.0.0",
"@tiptap/extension-link": "^2.0.0",
"@tiptap/extension-underline": "^2.0.0",
"@tiptap/extension-text-align": "^2.0.0",
"@tiptap/extension-code-block-lowlight": "^2.0.0",
"lowlight": "^3.0.0"
},
"peerDependenciesMeta": {
"react-hook-form": { "optional": true },
"@radix-ui/react-accessible-icon": { "optional": true },
"@radix-ui/react-alert-dialog": { "optional": true },
"@radix-ui/react-aspect-ratio": { "optional": true },
"@radix-ui/react-avatar": { "optional": true },
"@radix-ui/react-checkbox": { "optional": true },
"@radix-ui/react-collapsible": { "optional": true },
"@radix-ui/react-context-menu": { "optional": true },
"@radix-ui/react-dialog": { "optional": true },
"@radix-ui/react-dropdown-menu": { "optional": true },
"@radix-ui/react-hover-card": { "optional": true },
"@radix-ui/react-label": { "optional": true },
"@radix-ui/react-navigation-menu": { "optional": true },
"@radix-ui/react-popover": { "optional": true },
"@radix-ui/react-portal": { "optional": true },
"@radix-ui/react-progress": { "optional": true },
"@radix-ui/react-radio-group": { "optional": true },
"@radix-ui/react-scroll-area": { "optional": true },
"@radix-ui/react-select": { "optional": true },
"@radix-ui/react-separator": { "optional": true },
"@radix-ui/react-slider": { "optional": true },
"@radix-ui/react-slot": { "optional": true },
"@radix-ui/react-switch": { "optional": true },
"@radix-ui/react-tabs": { "optional": true },
"@radix-ui/react-toast": { "optional": true },
"@radix-ui/react-toggle": { "optional": true },
"@radix-ui/react-tooltip": { "optional": true },
"class-variance-authority": { "optional": true },
"clsx": { "optional": true },
"tailwind-merge": { "optional": true },
"cmdk": { "optional": true },
"lucide-react": { "optional": true },
"tailwindcss": { "optional": true },
"@tiptap/react": { "optional": true },
"@tiptap/starter-kit": { "optional": true },
"@tiptap/extension-placeholder": { "optional": true },
"@tiptap/extension-link": { "optional": true },
"@tiptap/extension-underline": { "optional": true },
"@tiptap/extension-text-align": { "optional": true },
"@tiptap/extension-code-block-lowlight": { "optional": true },
"lowlight": { "optional": true }
},
"engines": { "node": ">=18.0.0" }
}