xba-antdv-libs 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/lib/demo.html ADDED
@@ -0,0 +1,10 @@
1
+ <meta charset="utf-8">
2
+ <title>AntdvLibs demo</title>
3
+ <script src="./AntdvLibs.umd.js"></script>
4
+
5
+ <link rel="stylesheet" href="./AntdvLibs.css">
6
+
7
+
8
+ <script>
9
+ console.log(AntdvLibs)
10
+ </script>
Binary file
package/package.json ADDED
@@ -0,0 +1,55 @@
1
+ {
2
+ "name": "xba-antdv-libs",
3
+ "version": "1.0.0",
4
+ "main": "lib/AntdvLibs.common.js",
5
+ "private": false,
6
+ "publishConfig": {
7
+ "registry": "https://registry.npmjs.org/"
8
+ },
9
+ "scripts": {
10
+ "serve": "vue-cli-service serve",
11
+ "build": "vue-cli-service build",
12
+ "lint": "vue-cli-service lint",
13
+ "lib": "vue-cli-service build --target lib --name AntdvLibs --dest lib packages/index.js",
14
+ "styleguide": "vue-styleguidist server",
15
+ "styleguide:build": "vue-styleguidist build"
16
+ },
17
+ "files": [
18
+ "/lib"
19
+ ],
20
+ "dependencies": {
21
+ "clipboard": "^2.0.8",
22
+ "core-js": "^3.6.5",
23
+ "js-cookie": "^3.0.1",
24
+ "quill": "^1.3.7",
25
+ "v-viewer": "^1.6.4",
26
+ "vue": "^2.6.11",
27
+ "vue-codemirror": "^4.0.6",
28
+ "vue-draggable-resizable": "^2.3.0",
29
+ "vuedraggable": "^2.24.3"
30
+ },
31
+ "devDependencies": {
32
+ "@babel/plugin-proposal-optional-chaining": "^7.17.12",
33
+ "@vue/cli-plugin-babel": "~4.5.0",
34
+ "@vue/cli-plugin-eslint": "~4.5.0",
35
+ "@vue/cli-service": "~4.5.0",
36
+ "@vue/eslint-config-standard": "^5.1.2",
37
+ "ant-design-vue": "^1.7.8",
38
+ "axios": "^0.21.4",
39
+ "babel-eslint": "^8.2.3",
40
+ "eslint": "^6.7.2",
41
+ "eslint-plugin-import": "^2.20.2",
42
+ "eslint-plugin-node": "^11.1.0",
43
+ "eslint-plugin-promise": "^4.2.1",
44
+ "eslint-plugin-standard": "^4.0.0",
45
+ "eslint-plugin-vue": "^6.2.2",
46
+ "less": "^3.13.1",
47
+ "less-loader": "^7.3.0",
48
+ "vue-router": "^3.5.2",
49
+ "vue-styleguidist": "^4.41.2",
50
+ "vue-template-compiler": "^2.6.11",
51
+ "vuex": "^3.6.2",
52
+ "vuex-persistedstate": "^4.0.0",
53
+ "webpack-bundle-analyzer": "^4.4.2"
54
+ }
55
+ }