@stsdti/funky-ui-kit 1.16.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/README.md +7 -0
- package/dist/funky-fonts.css +1 -0
- package/dist/funky-fonts.es.js +2 -0
- package/dist/funky-fonts.es.js.map +1 -0
- package/dist/funky-ui-kit.css +9 -0
- package/dist/funky-ui-kit.es.js +84477 -0
- package/dist/funky-ui-kit.es.js.map +1 -0
- package/package.json +70 -0
- package/web-types.json +6162 -0
package/package.json
ADDED
|
@@ -0,0 +1,70 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@stsdti/funky-ui-kit",
|
|
3
|
+
"version": "1.16.0",
|
|
4
|
+
"description": "A library with all our UI reusable components and helper functions to help speed up Vue development",
|
|
5
|
+
"files": [
|
|
6
|
+
"dist",
|
|
7
|
+
"web-types.json"
|
|
8
|
+
],
|
|
9
|
+
"type": "module",
|
|
10
|
+
"web-types": "./web-types.json",
|
|
11
|
+
"module": "./dist/funky-ui-kit.es.js",
|
|
12
|
+
"exports": {
|
|
13
|
+
".": {
|
|
14
|
+
"import": "./dist/funky-ui-kit.es.js"
|
|
15
|
+
},
|
|
16
|
+
"./package.json": "./package.json",
|
|
17
|
+
"./dist/*": "./dist/*"
|
|
18
|
+
},
|
|
19
|
+
"scripts": {
|
|
20
|
+
"start": "npm run dev",
|
|
21
|
+
"dev": "vite --open",
|
|
22
|
+
"build": "vite build",
|
|
23
|
+
"build:watch": "vite build -w",
|
|
24
|
+
"preview": "vite preview",
|
|
25
|
+
"build:package": "vite build --mode package",
|
|
26
|
+
"lint": "eslint resources/js --ext .vue,.js,.jsx,.cjs,.mjs --fix --ignore-path .gitignore",
|
|
27
|
+
"format": "prettier --write resources/js",
|
|
28
|
+
"post-processing": "node --trace-uncaught scripts/append-composables.mjs"
|
|
29
|
+
},
|
|
30
|
+
"author": "STS - DTI",
|
|
31
|
+
"dependencies": {
|
|
32
|
+
"@degjs/scroll-to": "^2.0.0",
|
|
33
|
+
"@tabler/icons-vue": "^3.2.0",
|
|
34
|
+
"@vuepic/vue-datepicker": "^11.0.2",
|
|
35
|
+
"@vueuse/components": "^10.5.0",
|
|
36
|
+
"@vueuse/core": "^10.4.1",
|
|
37
|
+
"date-fns": "^2.30.0",
|
|
38
|
+
"docx-preview": "^0.3.2",
|
|
39
|
+
"dompurify": "^3.3.0",
|
|
40
|
+
"gsap": "^3.12.2",
|
|
41
|
+
"lodash": "^4.17.21",
|
|
42
|
+
"pdfjs-dist": "^4.10.38",
|
|
43
|
+
"sweetalert2": "^11.7.32",
|
|
44
|
+
"viewerjs": "^1.11.6",
|
|
45
|
+
"vue-multiselect": "^2.1.7",
|
|
46
|
+
"vue-tippy": "^6.3.1",
|
|
47
|
+
"vue-toast-notification": "^3.1.2",
|
|
48
|
+
"vue3-toastify": "^0.1.14",
|
|
49
|
+
"vuedraggable": "^4.1.0"
|
|
50
|
+
},
|
|
51
|
+
"devDependencies": {
|
|
52
|
+
"@rushstack/eslint-patch": "^1.10.5",
|
|
53
|
+
"@vitejs/plugin-vue": "^5.2.1",
|
|
54
|
+
"@vue/eslint-config-prettier": "^8.0.0",
|
|
55
|
+
"axios": "^1.8.1",
|
|
56
|
+
"prettier": "^3.5.3",
|
|
57
|
+
"sass": "^1.85.1",
|
|
58
|
+
"vee-validate": "^4.12.6",
|
|
59
|
+
"vite": "^6.4.0",
|
|
60
|
+
"vite-plugin-eslint": "^1.8.1",
|
|
61
|
+
"vue": "^3.5.22",
|
|
62
|
+
"vue-router": "^4.5.0",
|
|
63
|
+
"yup": "^1.6.1"
|
|
64
|
+
},
|
|
65
|
+
"peerDependencies": {
|
|
66
|
+
"axios": "^1.6.0",
|
|
67
|
+
"vue": "^3.5.22",
|
|
68
|
+
"vue-router": "^4.2.4"
|
|
69
|
+
}
|
|
70
|
+
}
|