-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
37 lines (37 loc) · 1.03 KB
/
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
{
"name": "wizardify",
"version": "1.0.0",
"private": true,
"type": "module",
"description": "Configurable multi steps wizard",
"author": "Vitalii Tsisaruk<https://github.com/tsiotska>",
"main": "dist/multi-step-wizard.cjs.js",
"module": "dist/multi-step-wizard.es.js",
"browser": "dist/multi-step-wizard.umd.js",
"types": "dist/main.d.ts",
"scripts": {
"dev": "vite --config ./playground/vite.config.js",
"build": "vite build"
},
"dependencies": {
"@headlessui/vue": "^1.7.23",
"lucide-vue-next": "^0.95.0",
"tailwind-merge": "^2.5.4",
"typescript": "^5.6.3",
"vite-plugin-lib-inject-css": "^2.1.1",
"vite-svg-loader": "^5.1.0",
"vue": "^3.5.12",
"vue-router": "^4.4.5",
"@vuelidate/components": "^1.2.6",
"@vuelidate/core": "^2.0.3",
"@vuelidate/validators": "^2.0.4"
},
"devDependencies": {
"@types/vue": "^2.0.0",
"@vitejs/plugin-vue": "^5.1.4",
"autoprefixer": "^10.4.20",
"postcss": "^8.4.47",
"tailwindcss": "^3.4.14",
"vite": "^5.4.10"
}
}