xxl-job-vue3 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/README.md +30 -0
- package/dist/403-D8dRpQKz.js +36 -0
- package/dist/404-DXM7nyXC.js +36 -0
- package/dist/500-BUCjxPG1.js +36 -0
- package/dist/CrontabDay-DqR3VUYR.js +4 -0
- package/dist/CrontabHour-B0Ub5MaR.js +4 -0
- package/dist/CrontabMin-DtjfCxp1.js +4 -0
- package/dist/CrontabMonth-BU6m9TVZ.js +4 -0
- package/dist/CrontabResult-DGO_apJU.js +4 -0
- package/dist/CrontabSecond-BqQGVOZ9.js +4 -0
- package/dist/CrontabWeek-DHqRjAy-.js +4 -0
- package/dist/CrontabYear-D3Z1OkFC.js +4 -0
- package/dist/EditExecutor-C-jVvoY3.js +4 -0
- package/dist/JobTaskClearDialog-CpXLIi7N.js +4 -0
- package/dist/RunOnceView-Bk8stgp6.js +4 -0
- package/dist/favicon.ico +0 -0
- package/dist/index-Bf5gEacT.js +98346 -0
- package/dist/index-Btu-nIzi.js +4 -0
- package/dist/index-CXZ4_Fnb.js +4 -0
- package/dist/index-OKUPhEWh.js +4012 -0
- package/dist/index-tWx7VrPi.js +4 -0
- package/dist/xxl-job-vue3.es.js +8 -0
- package/dist/xxl-job-vue3.umd.js +75 -0
- package/package.json +136 -0
package/package.json
ADDED
|
@@ -0,0 +1,136 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "xxl-job-vue3",
|
|
3
|
+
"private": false,
|
|
4
|
+
"version": "1.0.0",
|
|
5
|
+
"type": "module",
|
|
6
|
+
"description": "xxl-job-vue3",
|
|
7
|
+
"main": "./dist/xxl-job-vue3.umd.js",
|
|
8
|
+
"module": "./dist/xxl-job-vue3.es.js",
|
|
9
|
+
"style": "./dist/style.css",
|
|
10
|
+
"license": "MIT",
|
|
11
|
+
"files": [
|
|
12
|
+
"dist/*",
|
|
13
|
+
"README.md"
|
|
14
|
+
],
|
|
15
|
+
"exports": {
|
|
16
|
+
".": {
|
|
17
|
+
"import": "./dist/xxl-job-vue3.es.js",
|
|
18
|
+
"require": "./dist/xxl-job-vue3.umd.js",
|
|
19
|
+
"types": "./dist/index.d.ts"
|
|
20
|
+
},
|
|
21
|
+
"./dist/style.css": "./dist/style.css"
|
|
22
|
+
},
|
|
23
|
+
"scripts": {
|
|
24
|
+
"dev": "vite",
|
|
25
|
+
"serve": "vite",
|
|
26
|
+
"build:dev": "vue-tsc && vite build --mode development",
|
|
27
|
+
"build:test": "vue-tsc && vite build --mode test",
|
|
28
|
+
"build:pro": "vue-tsc && vite build --mode production",
|
|
29
|
+
"type:check": "vue-tsc --noEmit --skipLibCheck",
|
|
30
|
+
"preview": "yarn build:dev && vite preview",
|
|
31
|
+
"lint:eslint": "eslint --fix --ext .js,.ts,.vue ./src",
|
|
32
|
+
"lint:prettier": "prettier --write \"src/**/*.{js,ts,json,tsx,css,less,scss,vue,html,md}\"",
|
|
33
|
+
"lint:stylelint": "stylelint --cache --fix \"**/*.{vue,less,postcss,css,scss}\" --cache --cache-location node_modules/.cache/stylelint/",
|
|
34
|
+
"release": "standard-version"
|
|
35
|
+
},
|
|
36
|
+
"peerDependencies": {
|
|
37
|
+
"vue": "^3.4.31",
|
|
38
|
+
"element-plus": "^2.7.6",
|
|
39
|
+
"@element-plus/icons-vue": "^2.3.1",
|
|
40
|
+
"echarts": "^5.5.1",
|
|
41
|
+
"axios": "^1.7.2"
|
|
42
|
+
},
|
|
43
|
+
"dependencies": {
|
|
44
|
+
},
|
|
45
|
+
"devDependencies": {
|
|
46
|
+
"@types/md5": "^2.3.5",
|
|
47
|
+
"@types/nprogress": "^0.2.3",
|
|
48
|
+
"@types/qs": "^6.9.15",
|
|
49
|
+
"@types/sortablejs": "^1.15.8",
|
|
50
|
+
"@typescript-eslint/eslint-plugin": "^7.14.1",
|
|
51
|
+
"@typescript-eslint/parser": "^7.14.1",
|
|
52
|
+
"@vitejs/plugin-vue": "^5.0.4",
|
|
53
|
+
"@vitejs/plugin-vue-jsx": "^3.1.0",
|
|
54
|
+
"autoprefixer": "^10.4.19",
|
|
55
|
+
"eslint": "^8.57.0",
|
|
56
|
+
"eslint-config-prettier": "^9.1.0",
|
|
57
|
+
"eslint-plugin-prettier": "^5.1.3",
|
|
58
|
+
"eslint-plugin-vue": "^9.26.0",
|
|
59
|
+
"postcss": "^8.4.38",
|
|
60
|
+
"postcss-html": "^1.7.0",
|
|
61
|
+
"prettier": "^3.3.2",
|
|
62
|
+
"rollup-plugin-visualizer": "^5.12.0",
|
|
63
|
+
"sass": "^1.77.6",
|
|
64
|
+
"standard-version": "^9.5.0",
|
|
65
|
+
"stylelint": "^16.6.1",
|
|
66
|
+
"stylelint-config-html": "^1.1.0",
|
|
67
|
+
"stylelint-config-recess-order": "^5.0.1",
|
|
68
|
+
"stylelint-config-recommended-scss": "^14.0.0",
|
|
69
|
+
"stylelint-config-recommended-vue": "^1.5.0",
|
|
70
|
+
"stylelint-config-standard": "^36.0.0",
|
|
71
|
+
"stylelint-config-standard-scss": "^13.1.0",
|
|
72
|
+
"typescript": "^5.5.2",
|
|
73
|
+
"unplugin-vue-setup-extend-plus": "^1.0.1",
|
|
74
|
+
"vite": "^5.3.2",
|
|
75
|
+
"vite-plugin-compression": "^0.5.1",
|
|
76
|
+
"vite-plugin-dts": "3.9.1",
|
|
77
|
+
"vite-plugin-eslint": "^1.8.1",
|
|
78
|
+
"vite-plugin-html": "^3.2.2",
|
|
79
|
+
"vite-plugin-pwa": "^0.20.0",
|
|
80
|
+
"vite-plugin-svg-icons": "^2.0.1",
|
|
81
|
+
"vite-plugin-vue-devtools": "^7.3.5",
|
|
82
|
+
"vue-tsc": "^2.0.22",
|
|
83
|
+
"@element-plus/icons-vue": "^2.3.1",
|
|
84
|
+
"@mistjs/vite-plugin-px2viewport": "^0.0.13",
|
|
85
|
+
"@types/node": "^20.14.1",
|
|
86
|
+
"@vueuse/core": "^10.11.0",
|
|
87
|
+
"@wangeditor/editor": "^5.1.23",
|
|
88
|
+
"@wangeditor/editor-for-vue": "^5.1.12",
|
|
89
|
+
"axios": "^1.7.2",
|
|
90
|
+
"crypto-js": "^4.2.0",
|
|
91
|
+
"dayjs": "^1.11.11",
|
|
92
|
+
"driver.js": "^1.3.1",
|
|
93
|
+
"echarts": "^5.5.1",
|
|
94
|
+
"echarts-liquidfill": "^3.1.0",
|
|
95
|
+
"element-plus": "^2.7.6",
|
|
96
|
+
"md5": "^2.3.0",
|
|
97
|
+
"mitt": "^3.0.1",
|
|
98
|
+
"nprogress": "^0.2.0",
|
|
99
|
+
"pinia": "^2.1.7",
|
|
100
|
+
"pinia-plugin-persistedstate": "^3.2.1",
|
|
101
|
+
"pinyin-pro": "^3.26.0",
|
|
102
|
+
"qs": "^6.12.1",
|
|
103
|
+
"screenfull": "^6.0.2",
|
|
104
|
+
"sm-crypto": "^0.3.13",
|
|
105
|
+
"sortablejs": "^1.15.2",
|
|
106
|
+
"unplugin-auto-import": "^0.18.6",
|
|
107
|
+
"unplugin-icons": "^0.21.0",
|
|
108
|
+
"unplugin-vue-components": "^0.27.5",
|
|
109
|
+
"uuid": "^10.0.0",
|
|
110
|
+
"vue": "^3.4.31",
|
|
111
|
+
"vue-dompurify-html": "^5.0.1",
|
|
112
|
+
"vue-i18n": "^9.13.1",
|
|
113
|
+
"vue-router": "^4.4.0",
|
|
114
|
+
"vuedraggable": "^4.1.0"
|
|
115
|
+
},
|
|
116
|
+
"engines": {
|
|
117
|
+
"node": ">=16.18.0"
|
|
118
|
+
},
|
|
119
|
+
"browserslist": {
|
|
120
|
+
"production": [
|
|
121
|
+
"> 1%",
|
|
122
|
+
"not dead",
|
|
123
|
+
"not op_mini all"
|
|
124
|
+
],
|
|
125
|
+
"development": [
|
|
126
|
+
"last 1 chrome version",
|
|
127
|
+
"last 1 firefox version",
|
|
128
|
+
"last 1 safari version"
|
|
129
|
+
]
|
|
130
|
+
},
|
|
131
|
+
"config": {
|
|
132
|
+
"commitizen": {
|
|
133
|
+
"path": "node_modules/cz-git"
|
|
134
|
+
}
|
|
135
|
+
}
|
|
136
|
+
}
|