@gonsin/gview 1.1.17 → 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/README.md +2 -366
- package/dist/index-19b57506.mjs +7086 -0
- package/dist/index-250d68c8.js +1 -0
- package/dist/index-33bed53b.js +7 -0
- package/dist/index-913d5238.mjs +15 -0
- package/dist/index.js +1 -2
- package/dist/index.mjs +82 -0
- package/dist/style.css +1 -0
- package/package.json +65 -96
- package/dist/index.js.map +0 -1
- package/index.d.ts +0 -5
package/package.json
CHANGED
|
@@ -1,98 +1,67 @@
|
|
|
1
1
|
{
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
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
|
}
|