@e7a/everright-filter 1.0.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/LICENSE +21 -0
- package/README.md +125 -0
- package/README.zh-cn.md +125 -0
- package/dist/EverrightFilter-with-element-plus.css +1 -0
- package/dist/EverrightFilter-with-element-plus.iife.js +20 -0
- package/dist/EverrightFilter-with-element-plus.js +26159 -0
- package/dist/EverrightFilter-with-element-plus.umd.cjs +20 -0
- package/dist/EverrightFilter-without-element-plus.css +1 -0
- package/dist/EverrightFilter-without-element-plus.iife.js +6 -0
- package/dist/EverrightFilter-without-element-plus.js +13506 -0
- package/dist/EverrightFilter-without-element-plus.umd.cjs +6 -0
- package/package.json +107 -0
package/package.json
ADDED
|
@@ -0,0 +1,107 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@e7a/everright-filter",
|
|
3
|
+
"version": "1.0.0",
|
|
4
|
+
"description": "🦮Vue3 query builder/filter builder ui component for building complex queries and filters with nested conditionals.Supports filtering of multiple data types, including string, number, dropdown, cascade, region, date and time(Vue 高级ç›é€‰å™¨ç»„ä»¶)",
|
|
5
|
+
"files": [
|
|
6
|
+
"dist"
|
|
7
|
+
],
|
|
8
|
+
"packageManager": "pnpm@7.9.5",
|
|
9
|
+
"license": "MIT",
|
|
10
|
+
"keywords": [
|
|
11
|
+
"everright-filter",
|
|
12
|
+
"query-builder",
|
|
13
|
+
"query-builder-ui",
|
|
14
|
+
"everright-filter",
|
|
15
|
+
"element-plus",
|
|
16
|
+
"vuejs"
|
|
17
|
+
],
|
|
18
|
+
"repository": {
|
|
19
|
+
"type": "git",
|
|
20
|
+
"url": "git@gitlab.ops.supcon.com:ai_bigdata/front-end/everright-filter.git"
|
|
21
|
+
},
|
|
22
|
+
"type": "module",
|
|
23
|
+
"main": "./dist/EverrightFilter-without-element-plus.umd.cjs",
|
|
24
|
+
"module": "./dist/EverrightFilter-without-element-plus.js",
|
|
25
|
+
"style": "./dist/EverrightFilter-without-element-plus.css",
|
|
26
|
+
"exports": {
|
|
27
|
+
".": {
|
|
28
|
+
"import": "./dist/EverrightFilter-without-element-plus.js",
|
|
29
|
+
"require": "./dist/EverrightFilter-without-element-plus.umd.cjs"
|
|
30
|
+
},
|
|
31
|
+
"./dist/style.css": "./dist/EverrightFilter-without-element-plus.css",
|
|
32
|
+
"./dist/*": "./dist/*"
|
|
33
|
+
},
|
|
34
|
+
"unpkg": "dist/EverrightFilter-with-element-plus.iife.js",
|
|
35
|
+
"scripts": {
|
|
36
|
+
"dev:server": "nodemon server --watch server",
|
|
37
|
+
"dev": "vite --host 0.0.0.0 --port 5174",
|
|
38
|
+
"build": "pnpm run clean:dist && pnpm run build:without-element-plus && pnpm run build:with-element-plus",
|
|
39
|
+
"clean:dist": "rimraf dist",
|
|
40
|
+
"build:without-element-plus": "cross-env FORMATS='without-element-plus' vite build",
|
|
41
|
+
"build:with-element-plus": "cross-env FORMATS='with-element-plus' vite build",
|
|
42
|
+
"preview": "vite preview",
|
|
43
|
+
"lint": "eslint . --ext .js,.jsx,.vue",
|
|
44
|
+
"lint-fix": "eslint --fix . --ext .js,.jsx,.vue",
|
|
45
|
+
"prepare": "husky install",
|
|
46
|
+
"changelog": "conventional-changelog -p angular -i CHANGELOG.md -s",
|
|
47
|
+
"test": "vitest"
|
|
48
|
+
},
|
|
49
|
+
"dependencies": {
|
|
50
|
+
"@vant/area-data": "^1.4.0",
|
|
51
|
+
"@vue/shared": "^3.2.45",
|
|
52
|
+
"@vuelidate/core": "^2.0.0",
|
|
53
|
+
"@vuelidate/validators": "^2.0.0",
|
|
54
|
+
"async": "^3.2.4",
|
|
55
|
+
"axios": "^1.2.2",
|
|
56
|
+
"element-plus": "^2.2.28",
|
|
57
|
+
"lodash-es": "^4.17.21",
|
|
58
|
+
"nzh": "^1.0.8",
|
|
59
|
+
"vue": "^3.2.45",
|
|
60
|
+
"written-number": "^0.11.1"
|
|
61
|
+
},
|
|
62
|
+
"devDependencies": {
|
|
63
|
+
"@babel/core": "^7.21.0",
|
|
64
|
+
"@babel/eslint-parser": "^7.19.1",
|
|
65
|
+
"@commitlint/cli": "^17.4.4",
|
|
66
|
+
"@commitlint/config-conventional": "^17.4.4",
|
|
67
|
+
"@element-plus/icons-vue": "^2.0.10",
|
|
68
|
+
"@vitejs/plugin-vue": "^3.2.0",
|
|
69
|
+
"@vitejs/plugin-vue-jsx": "^2.1.1",
|
|
70
|
+
"@vue/test-utils": "^2.4.1",
|
|
71
|
+
"body-parser": "^1.20.1",
|
|
72
|
+
"connect-multiparty": "^2.2.0",
|
|
73
|
+
"conventional-changelog-cli": "^3.0.0",
|
|
74
|
+
"cross-env": "^7.0.3",
|
|
75
|
+
"cz-git": "^1.5.3",
|
|
76
|
+
"eslint": "^8.32.0",
|
|
77
|
+
"eslint-config-standard": "^17.0.0",
|
|
78
|
+
"eslint-plugin-import": "^2.27.5",
|
|
79
|
+
"eslint-plugin-n": "^15.6.1",
|
|
80
|
+
"eslint-plugin-promise": "^6.1.1",
|
|
81
|
+
"eslint-plugin-vue": "^9.9.0",
|
|
82
|
+
"express": "^4.18.2",
|
|
83
|
+
"husky": "^8.0.3",
|
|
84
|
+
"jsdom": "^22.1.0",
|
|
85
|
+
"lint-staged": "^13.1.2",
|
|
86
|
+
"nodemon": "^2.0.20",
|
|
87
|
+
"rimraf": "^5.0.1",
|
|
88
|
+
"sass": "^1.58.3",
|
|
89
|
+
"unplugin-vue-components": "^0.25.1",
|
|
90
|
+
"vite": "^3.2.5",
|
|
91
|
+
"vite-plugin-eslint": "^1.8.1",
|
|
92
|
+
"vitest": "^0.33.0",
|
|
93
|
+
"vue-router": "^4.2.1"
|
|
94
|
+
},
|
|
95
|
+
"peerDependencies": {
|
|
96
|
+
"element-plus": "^2.2.28",
|
|
97
|
+
"vue": "^3.2.45"
|
|
98
|
+
},
|
|
99
|
+
"lint-staged": {
|
|
100
|
+
"*.{vue,js,jsx}": "eslint --fix"
|
|
101
|
+
},
|
|
102
|
+
"config": {
|
|
103
|
+
"commitizen": {
|
|
104
|
+
"path": "node_modules/cz-git"
|
|
105
|
+
}
|
|
106
|
+
}
|
|
107
|
+
}
|