@gonsin/gview 1.1.18 → 2.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/package.json CHANGED
@@ -1,98 +1,67 @@
1
1
  {
2
- "name": "@gonsin/gview",
3
- "version": "1.1.18",
4
- "main": "dist/index.js",
5
- "files": [
6
- "dist",
7
- "types",
8
- "index.d.ts",
9
- "README.md"
10
- ],
11
- "repository": {
12
- "type": "git",
13
- "url": "https://gitee.com/dwdyoung/gview.git"
14
- },
15
- "scripts": {
16
- "serve": "vue-cli-service serve",
17
- "prebuild": "rimraf devDist",
18
- "build": "npm run prebuild && cross-env NODE_ENV=production rollup -c",
19
- "lint": "vue-cli-service lint"
20
- },
21
- "dependencies": {
22
- "@babel/runtime": "^7.14.8",
23
- "@gonsin/glicense": "^0.3.0",
24
- "@gonsin/gview": "^1.1.16",
25
- "@vue/composition-api": "^1.7.1",
26
- "axios": "^1.2.1",
27
- "core-js": "^3.8.3",
28
- "dayjs": "^1.11.7",
29
- "he": "^1.2.0",
30
- "lodash-es": "^4.17.21",
31
- "mustache": "^4.2.0",
32
- "nanoid": "^4.0.1",
33
- "nprogress": "^0.2.0",
34
- "qs": "^6.11.0",
35
- "tdesign-vue": "^1.2.0",
36
- "vue": "^2.6.14",
37
- "vue-property-decorator": "^9.1.2",
38
- "vue-qr": "^4.0.9",
39
- "vue-quill-editor": "^3.0.6",
40
- "vue-router": "^3.5.1",
41
- "vuex": "^3.6.2"
42
- },
43
- "devDependencies": {
44
- "@babel/cli": "^7.5.5",
45
- "@babel/core": "~7.16.0",
46
- "@babel/plugin-proposal-class-properties": "^7.16.0",
47
- "@babel/plugin-transform-modules-commonjs": "^7.9.6",
48
- "@babel/plugin-transform-object-assign": "^7.2.0",
49
- "@babel/plugin-transform-runtime": "^7.14.5",
50
- "@babel/preset-env": "^7.5.5",
51
- "@rollup/plugin-babel": "^5.1.0",
52
- "@rollup/plugin-commonjs": "^18.0.0",
53
- "@rollup/plugin-eslint": "^9.0.1",
54
- "@rollup/plugin-json": "^4.1.0",
55
- "@rollup/plugin-node-resolve": "^11.2.1",
56
- "@rollup/plugin-replace": "^2.4.2",
57
- "@rollup/plugin-url": "^5.0.1",
58
- "@types/node": "^18.11.11",
59
- "@typescript-eslint/eslint-plugin": "^5.4.0",
60
- "@typescript-eslint/parser": "^5.4.0",
61
- "@vue/babel-helper-vue-jsx-merge-props": "^1.4.0",
62
- "@vue/babel-preset-jsx": "^1.4.0",
63
- "@vue/cli-plugin-babel": "~5.0.0",
64
- "@vue/cli-plugin-eslint": "~5.0.0",
65
- "@vue/cli-plugin-router": "~5.0.0",
66
- "@vue/cli-plugin-typescript": "~5.0.0",
67
- "@vue/cli-plugin-vuex": "~5.0.0",
68
- "@vue/cli-service": "~5.0.0",
69
- "@vue/eslint-config-typescript": "^9.1.0",
70
- "cross-env": "^7.0.3",
71
- "eslint": "^7.32.0",
72
- "eslint-config-prettier": "^8.3.0",
73
- "eslint-plugin-prettier": "^4.0.0",
74
- "eslint-plugin-vue": "^8.0.3",
75
- "lint-staged": "^11.1.2",
76
- "node-sass": "^7.0.3",
77
- "prettier": "^2.4.1",
78
- "rimraf": "^3.0.2",
79
- "rollup": "^2.53.2",
80
- "rollup-plugin-analyzer": "^3.3.0",
81
- "rollup-plugin-esbuild": "^4.8.2",
82
- "rollup-plugin-ignore-import": "^1.3.2",
83
- "rollup-plugin-multi-input": "^1.1.1",
84
- "rollup-plugin-postcss": "^4.0.1",
85
- "rollup-plugin-scss": "^4.0.0",
86
- "rollup-plugin-static-import": "^0.1.1",
87
- "rollup-plugin-styles": "^4.0.0",
88
- "rollup-plugin-terser": "~7.0.2",
89
- "rollup-plugin-vue": "^5.1.9",
90
- "sass": "^1.32.7",
91
- "sass-loader": "^12.0.0",
92
- "typescript": "~4.5.5",
93
- "vue-template-compiler": "2.6.14"
94
- },
95
- "gitHooks": {
96
- "pre-commit": "lint-staged"
97
- }
2
+ "name": "@gonsin/gview",
3
+ "version": "2.0.0",
4
+ "main": "dist/index.js",
5
+ "files": [
6
+ "dist",
7
+ "README.md"
8
+ ],
9
+ "scripts": {
10
+ "dev": "cd develop && vite --host",
11
+ "preview": "cd develop && vite preview",
12
+ "prebuild": "pnpm lint && pnpm format",
13
+ "build": "pnpm prebuild && run-p type-check build-only",
14
+ "build:tsc": "tsc packages/index.ts --emitDeclarationOnly -d --outDir dist/types/",
15
+ "build-only": "vite build",
16
+ "type-check": "vue-tsc --noEmit",
17
+ "lint:eslint": "eslint . --ext .vue,.js,.jsx,.cjs,.mjs,.ts,.tsx,.cts,.mts --fix --ignore-path .gitignore",
18
+ "lint:style": "stylelint --cache --fix \"**/*.{html,vue,css,scss}\" --cache --cache-location node_modules/.cache/stylelint/",
19
+ "lint": "pnpm lint:eslint && pnpm lint:style",
20
+ "format": "prettier --write develop/ && prettier --write packages/"
21
+ },
22
+ "dependencies": {
23
+ "axios": "^1.3.4",
24
+ "dayjs": "^1.11.7",
25
+ "he": "^1.2.0",
26
+ "lodash-es": "^4.17.21",
27
+ "mustache": "^4.2.0",
28
+ "nanoid": "^4.0.1",
29
+ "nprogress": "^0.2.0",
30
+ "pinia": "^2.0.32",
31
+ "qs": "^6.11.1",
32
+ "tdesign-vue-next": "^1.1.1",
33
+ "vue": "^3.2.47",
34
+ "vue-qr": "^4.0.9",
35
+ "vue-router": "^4.1.6"
36
+ },
37
+ "devDependencies": {
38
+ "@rushstack/eslint-patch": "^1.2.0",
39
+ "@types/lodash-es": "^4.17.7",
40
+ "@types/node": "^18.14.2",
41
+ "@vitejs/plugin-vue": "^4.0.0",
42
+ "@vitejs/plugin-vue-jsx": "^3.0.0",
43
+ "@vue/eslint-config-prettier": "^7.1.0",
44
+ "@vue/eslint-config-typescript": "^11.0.2",
45
+ "@vue/tsconfig": "^0.1.3",
46
+ "eslint": "^8.34.0",
47
+ "eslint-plugin-vue": "^9.9.0",
48
+ "npm-run-all": "^4.1.5",
49
+ "postcss": "^8.4.21",
50
+ "postcss-html": "^1.5.0",
51
+ "postcss-scss": "^4.0.6",
52
+ "prettier": "^2.8.4",
53
+ "sass": "^1.59.2",
54
+ "stylelint": "^14.8.5",
55
+ "stylelint-config-html": "^1.0.0",
56
+ "stylelint-config-prettier": "^9.0.3",
57
+ "stylelint-config-recess-order": "^3.0.0",
58
+ "stylelint-config-recommended-scss": "^6.0.0",
59
+ "stylelint-config-recommended-vue": "^1.4.0",
60
+ "stylelint-config-standard": "^25.0.0",
61
+ "stylelint-config-standard-scss": "^3.0.0",
62
+ "typescript": "~4.8.4",
63
+ "vite": "^4.1.4",
64
+ "vite-svg-loader": "^4.0.0",
65
+ "vue-tsc": "^1.2.0"
66
+ }
98
67
  }