-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
112 lines (112 loc) · 3.25 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
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
{
"name": "vuersatile-components",
"descrption": "A Vue 3 component library with a CSS framework integrated",
"version": "0.2.1",
"scripts": {
"dev": "vite",
"build": "npm run build:vite && npm run build:scss && npm run minify:css",
"build:vite": "vite build",
"build:scss": "bundle-scss -m \"./lib/scss/custom/base-theme/support/index.scss\" -d \"./dist/style.scss\"",
"minify:css": "csso ./dist/style.css --output ./dist/style.css",
"preview": "vite preview",
"test:unit": "vitest",
"test:e2e": "start-server-and-test preview http://localhost:4173 'cypress run --e2e'",
"test:e2e:dev": "start-server-and-test 'vite dev --port 4173' http://localhost:4173 'cypress open --e2e'",
"lint": "eslint . --ext .vue,.js,.jsx,.cjs,.mjs --fix --ignore-path .gitignore",
"stylelint": "stylelint \"**/*.scss\"",
"utils:outdated": "npm outdated",
"utils:updates": "ncu",
"utils:upgrades": "ncu -u",
"docs:dev": "vitepress dev docs",
"docs:build": "vitepress build docs",
"docs:preview": "vitepress preview docs",
"docs:server": "http-server ./docs/.vitepress/dist --cors"
},
"dependencies": {
"calendar-data-generate": "^1.0.3",
"dayjs": "^1.11.7",
"pug": "^3.0.2",
"vue-i18n": "^9.2.2"
},
"devDependencies": {
"@babel/core": "^7.21.8",
"@fortawesome/fontawesome-pro": "^6.4.0",
"@vitejs/plugin-vue": "^4.2.3",
"@vue/test-utils": "^2.3.2",
"bundle-scss": "^1.5.1",
"csso-cli": "^4.0.2",
"cypress": "^12.12.0",
"eslint": "^8.40.0",
"eslint-plugin-cypress": "^2.13.3",
"eslint-plugin-vue": "^9.12.0",
"flexsearch": "^0.7.31",
"http-server": "^14.1.1",
"jsdom": "^22.0.0",
"npm-check-updates": "^16.10.12",
"pinia": "^2.0.36",
"sass": "^1.62.1",
"start-server-and-test": "^2.0.0",
"stylelint": "^15.6.1",
"stylelint-config-standard": "^33.0.0",
"stylelint-config-standard-scss": "^9.0.0",
"unplugin-fonts": "^1.0.3",
"vite": "^4.3.5",
"vitepress": "^1.0.0-alpha.75",
"vitepress-plugin-search": "^1.0.4-alpha.20",
"vitest": "^0.31.0",
"vue": "^3.3.2",
"vue-loader": "^17.1.1",
"vue-router": "^4.2.0"
},
"engines": {
"node": "^16.x"
},
"type": "module",
"files": [
"dist/vuersatile-components.js",
"dist/style.css",
"dist/style.scss",
"dist/fonts/fa-solid-900.woff2",
"dist/fonts/fa-solid-900.ttf",
"README.md",
"LICENSE"
],
"main": "./dist/vuersatile-components.js",
"module": "./dist/vuersatile-components.js",
"exports": {
".": {
"import": "./dist/vuersatile-components.js"
}
},
"keywords": [
"javascript",
"css",
"components",
"vuejs",
"validation",
"vue",
"scss",
"css-framework",
"vue-components",
"form-validation",
"styles",
"fields",
"scss-framework",
"vuejs-components",
"input-validation",
"validation-library",
"vue3",
"components-library",
"vitepress",
"vue3-components"
],
"repository": {
"type": "git",
"url": "https://github.com/Brugarolas/vuersatile-components.git"
},
"bugs": {
"url": "https://github.com/Brugarolas/vuersatile-components/issues"
},
"homepage": "https://www.andres-brugarolas.com/vuersatile-components/",
"license": "GNU v3"
}