evui 3.4.211 → 3.4.213
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/index.js +2967 -2796
- package/dist/index.umd.cjs +5 -5
- package/package.json +32 -7
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "evui",
|
|
3
|
-
"version": "3.4.
|
|
3
|
+
"version": "3.4.213",
|
|
4
4
|
"description": "A EXEM Library project",
|
|
5
5
|
"author": "exem <dev_client@ex-em.com>",
|
|
6
6
|
"license": "MIT",
|
|
@@ -13,7 +13,13 @@
|
|
|
13
13
|
"docs": "vite serve --config vite.config.js --port 9999",
|
|
14
14
|
"build:lib": "vite build --config vite.config.lib.js && rimraf ./dist/demo.html",
|
|
15
15
|
"build:docs": "vite build --config vite.config.js --mode production",
|
|
16
|
-
"preview": "vite preview --port 9999"
|
|
16
|
+
"preview": "vite preview --port 9999",
|
|
17
|
+
"prepare": "husky",
|
|
18
|
+
"test": "vitest",
|
|
19
|
+
"test:run": "vitest run",
|
|
20
|
+
"test:coverage": "vitest run --coverage",
|
|
21
|
+
"test:visual": "vitest --config vitest.config.browser.js",
|
|
22
|
+
"test:visual:update": "vitest --config vitest.config.browser.js --update"
|
|
17
23
|
},
|
|
18
24
|
"files": [
|
|
19
25
|
"dist"
|
|
@@ -32,19 +38,25 @@
|
|
|
32
38
|
"./package.json": "./package.json"
|
|
33
39
|
},
|
|
34
40
|
"dependencies": {
|
|
35
|
-
"@vitejs/plugin-vue": "^5.1.4",
|
|
36
41
|
"bignumber.js": "^9.3.1",
|
|
37
42
|
"dayjs": "^1.11.19",
|
|
38
43
|
"korean-regexp": "^1.0.10",
|
|
39
|
-
"
|
|
40
|
-
"vite": "^5.4.8",
|
|
44
|
+
"lodash-es": "^4.17.15",
|
|
41
45
|
"vue": "^3.5.8",
|
|
42
46
|
"vue-resize-observer": "^2.0.15",
|
|
43
|
-
"vue-router": "^4.6.3",
|
|
44
47
|
"vue3-observe-visibility": "^1.0.1"
|
|
45
48
|
},
|
|
46
49
|
"devDependencies": {
|
|
50
|
+
"@vitejs/plugin-vue": "^5.1.4",
|
|
51
|
+
"@commitlint/cli": "^20.3.1",
|
|
52
|
+
"@commitlint/config-conventional": "^20.3.1",
|
|
53
|
+
"@semantic-release/changelog": "^6.0.3",
|
|
54
|
+
"@semantic-release/git": "^10.0.1",
|
|
55
|
+
"@vitest/browser": "^4.0.18",
|
|
56
|
+
"@vitest/browser-playwright": "^4.0.18",
|
|
57
|
+
"@vitest/coverage-v8": "^4.0.18",
|
|
47
58
|
"@vue/compiler-sfc": "^3.5.8",
|
|
59
|
+
"@vue/test-utils": "^2.4.6",
|
|
48
60
|
"eslint": "^8.57.1",
|
|
49
61
|
"eslint-config-exem": "^3.0.3",
|
|
50
62
|
"eslint-config-prettier": "^10.1.8",
|
|
@@ -52,15 +64,28 @@
|
|
|
52
64
|
"eslint-plugin-vue": "^8.7.1",
|
|
53
65
|
"gh-pages": "^6.1.1",
|
|
54
66
|
"highlight.js": "^10.2.0",
|
|
67
|
+
"jsdom": "^27.4.0",
|
|
55
68
|
"lodash-es": "^4.17.15",
|
|
56
69
|
"marked": "^14.1.2",
|
|
57
70
|
"marked-gfm-heading-id": "^4.1.3",
|
|
71
|
+
"playwright": "^1.58.1",
|
|
58
72
|
"prettier": "^3.7.4",
|
|
73
|
+
"sass": "^1.94.2",
|
|
74
|
+
"husky": "^9.1.7",
|
|
75
|
+
"lint-staged": "^16.2.7",
|
|
76
|
+
"semantic-release": "^25.0.2",
|
|
59
77
|
"stylelint": "^16.9.0",
|
|
60
78
|
"stylelint-order": "^6.0.4",
|
|
61
|
-
"typescript": "^5.0.0"
|
|
79
|
+
"typescript": "^5.0.0",
|
|
80
|
+
"vite": "^5.4.8",
|
|
81
|
+
"vue-router": "^4.6.3",
|
|
82
|
+
"vitest": "^4.0.18",
|
|
83
|
+
"vitest-browser-vue": "^2.0.2"
|
|
62
84
|
},
|
|
63
85
|
"peerDependencies": {
|
|
64
86
|
"vue": "*"
|
|
87
|
+
},
|
|
88
|
+
"lint-staged": {
|
|
89
|
+
"*.{js,vue}": "eslint --fix"
|
|
65
90
|
}
|
|
66
91
|
}
|