tax-mega 0.0.1

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/package.json ADDED
@@ -0,0 +1,101 @@
1
+ {
2
+ "name": "tax-mega",
3
+ "version": "0.0.1",
4
+ "description": "a mega lib",
5
+ "main": "./dist/mega-lib.umd.js",
6
+ "module": "./dist/mega-lib.es.js",
7
+ "license": "MIT",
8
+ "files": [
9
+ "dist",
10
+ "src/lib/style"
11
+ ],
12
+ "scripts": {
13
+ "dev": "vite",
14
+ "start": "npm run dev",
15
+ "build": "vue-tsc --noEmit && vite build",
16
+ "serve": "vite preview",
17
+ "lint": "eslint --ext .js,.jsx,.vue,.ts,.tsx src --fix",
18
+ "minor-beta": "npm version preminor --preid beta && npm run build && npm publish",
19
+ "minor-pro": "npm version minor && npm run build && npm publish",
20
+ "beta": "npm version prerelease --preid beta && npm run build && npm publish",
21
+ "release": "npm version patch && npm run build && npm publish"
22
+ },
23
+ "dependencies": {
24
+ "@ant-design/icons-vue": "^6.0.1",
25
+ "@vueuse/components": "^7.5.3",
26
+ "@vueuse/core": "^7.5.3",
27
+ "@vueuse/integrations": "^7.5.3",
28
+ "tax-expression-parser": "^0.0.1",
29
+ "ant-design-vue": "^3.2.1",
30
+ "axios": "^0.21.4",
31
+ "datecompare-picker": "^0.1.1",
32
+ "dayjs": "^1.10.7",
33
+ "echarts": "^5.3.2",
34
+ "lodash-es": "^4.17.21",
35
+ "lz-string": "^1.4.4",
36
+ "mitt": "^3.0.0",
37
+ "numeral": "^2.0.6",
38
+ "vue": "^3.2.31",
39
+ "vue-grid-layout": "3.0.0-beta1",
40
+ "vue-request": "^1.2.4",
41
+ "vuedraggable": "4.1.0",
42
+ "vxe-table": "4.2.3",
43
+ "xe-utils": "3.5.4"
44
+ },
45
+ "devDependencies": {
46
+ "@babel/core": "^7.15.5",
47
+ "@babel/preset-env": "^7.15.6",
48
+ "@types/js-cookie": "^3.0.0",
49
+ "@types/lodash-es": "^4.17.5",
50
+ "@types/node": "^16.11.17",
51
+ "@types/nprogress": "^0.2.0",
52
+ "@types/numeral": "^2.0.2",
53
+ "@typescript-eslint/eslint-plugin": "^4.31.2",
54
+ "@typescript-eslint/parser": "^4.31.2",
55
+ "@vitejs/plugin-legacy": "^1.5.3",
56
+ "@vitejs/plugin-vue": "^1.8.1",
57
+ "@vitejs/plugin-vue-jsx": "^1.1.8",
58
+ "@vue/babel-plugin-jsx": "^1.0.7",
59
+ "@vue/compiler-sfc": "^3.2.12",
60
+ "@vue/eslint-config-prettier": "^7.0.0",
61
+ "@vue/eslint-config-typescript": "^7.0.0",
62
+ "tax-mega-push": "^0.0.1",
63
+ "autoprefixer": "^10.3.4",
64
+ "babel-plugin-dynamic-import-node": "^2.3.3",
65
+ "consola": "^2.15.3",
66
+ "cross-env": "^7.0.3",
67
+ "eslint": "^7.32.0",
68
+ "eslint-plugin-prettier": "^4.0.0",
69
+ "eslint-plugin-vue": "^7.18.0",
70
+ "figlet": "^1.5.2",
71
+ "husky": "^7.0.4",
72
+ "less": "^4.1.1",
73
+ "lint-staged": "^11.1.2",
74
+ "mockjs": "^1.1.0",
75
+ "postcss": "^8.3.6",
76
+ "postcss-pxtorem": "^6.0.0",
77
+ "prettier": "^2.4.1",
78
+ "rollup-plugin-visualizer": "^5.5.4",
79
+ "typescript": "^4.4.3",
80
+ "unplugin-auto-import": "^0.5.11",
81
+ "unplugin-vue-components": "^0.17.13",
82
+ "vite": "^2.6.14",
83
+ "vite-plugin-cdn-import": "^0.3.5",
84
+ "vite-plugin-html": "^2.1.1",
85
+ "vite-plugin-mock": "^2.9.6",
86
+ "vite-plugin-style-import": "^2.0.0",
87
+ "vite-svg-loader": "^3.1.1",
88
+ "vue-eslint-parser": "^7.11.0",
89
+ "vue-global-api": "^0.4.1",
90
+ "vue-tsc": "^0.3.0",
91
+ "yorkie": "^2.0.0"
92
+ },
93
+ "lint-staged": {
94
+ "*.{js,jsx,vue,ts,tsx}": [
95
+ "npm run lint"
96
+ ]
97
+ },
98
+ "engines": {
99
+ "node": ">=14.0.0"
100
+ }
101
+ }