@kg-ui/kg-ui 0.1.7 → 0.1.9
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 +54 -54
- package/lib/main.common.js +386 -271
- package/lib/main.css +1 -1
- package/lib/main.umd.js +386 -271
- package/lib/main.umd.min.js +3 -3
- package/package.json +83 -83
package/package.json
CHANGED
|
@@ -1,83 +1,83 @@
|
|
|
1
|
-
{
|
|
2
|
-
"name": "@kg-ui/kg-ui",
|
|
3
|
-
"version": "0.1.
|
|
4
|
-
"private": false,
|
|
5
|
-
"main": "lib/main.umd.js",
|
|
6
|
-
"files": [
|
|
7
|
-
"lib"
|
|
8
|
-
],
|
|
9
|
-
"author": {
|
|
10
|
-
"name": "kg"
|
|
11
|
-
},
|
|
12
|
-
"license": "MIT",
|
|
13
|
-
"scripts": {
|
|
14
|
-
"start": "vue-cli-service serve",
|
|
15
|
-
"build": "vue-cli-service build --target lib --name main --dest lib --entry ./packages/index.js",
|
|
16
|
-
"build:all": "vue-cli-service build"
|
|
17
|
-
},
|
|
18
|
-
"dependencies": {
|
|
19
|
-
"@microsoft/fetch-event-source": "^2.0.1",
|
|
20
|
-
"core-js": "^3.33.1",
|
|
21
|
-
"dompurify": "^3.0.10",
|
|
22
|
-
"highlight.js": "^11.9.0",
|
|
23
|
-
"marked": "^5.0.0",
|
|
24
|
-
"pinyin-match": "^1.2.4",
|
|
25
|
-
"vue": "^2.6.11"
|
|
26
|
-
},
|
|
27
|
-
"devDependencies": {
|
|
28
|
-
"@fullhuman/postcss-purgecss": "3.0.0",
|
|
29
|
-
"@tailwindcss/postcss7-compat": "2.2.17",
|
|
30
|
-
"@vue/cli-plugin-babel": "~4.5.0",
|
|
31
|
-
"@vue/cli-plugin-eslint": "~4.5.0",
|
|
32
|
-
"@vue/cli-service": "4.5.0",
|
|
33
|
-
"@vue/compiler-sfc": "^3.2.45",
|
|
34
|
-
"autoprefixer": "9",
|
|
35
|
-
"axios": "^0.26.0",
|
|
36
|
-
"babel-eslint": "^10.1.0",
|
|
37
|
-
"element-ui": "2.13.1",
|
|
38
|
-
"eslint": "^6.7.2",
|
|
39
|
-
"eslint-plugin-vue": "^6.2.2",
|
|
40
|
-
"markdown-it": "^13.0.1",
|
|
41
|
-
"markdown-it-anchor": "^8.6.5",
|
|
42
|
-
"markdown-it-chain": "^1.3.0",
|
|
43
|
-
"markdown-it-container": "^3.0.0",
|
|
44
|
-
"node-sass": "npm:sass",
|
|
45
|
-
"postcss": "7",
|
|
46
|
-
"postcss-import": "12.0.1",
|
|
47
|
-
"prettier": "^2.5.1",
|
|
48
|
-
"sass-loader": "6.0.0",
|
|
49
|
-
"tailwindcss": "npm:@tailwindcss/postcss7-compat",
|
|
50
|
-
"transliteration": "^2.3.5",
|
|
51
|
-
"vue-datepicker-local": "^1.0.19",
|
|
52
|
-
"vue-router": "^3.0.6",
|
|
53
|
-
"vue-template-compiler": "^2.6.11",
|
|
54
|
-
"vuex": "3.6.2"
|
|
55
|
-
},
|
|
56
|
-
"publishConfig": {
|
|
57
|
-
"access": "public",
|
|
58
|
-
"registry": "https://registry.npmjs.org/"
|
|
59
|
-
},
|
|
60
|
-
"eslintConfig": {
|
|
61
|
-
"root": true,
|
|
62
|
-
"env": {
|
|
63
|
-
"node": true
|
|
64
|
-
},
|
|
65
|
-
"extends": [
|
|
66
|
-
"plugin:vue/essential",
|
|
67
|
-
"eslint:recommended"
|
|
68
|
-
],
|
|
69
|
-
"parserOptions": {
|
|
70
|
-
"parser": "babel-eslint"
|
|
71
|
-
},
|
|
72
|
-
"rules": {}
|
|
73
|
-
},
|
|
74
|
-
"browserslist": [
|
|
75
|
-
"> 1%",
|
|
76
|
-
"last 2 versions",
|
|
77
|
-
"not dead"
|
|
78
|
-
],
|
|
79
|
-
"volta": {
|
|
80
|
-
"node": "16.13.1",
|
|
81
|
-
"yarn": "1.22.19"
|
|
82
|
-
}
|
|
83
|
-
}
|
|
1
|
+
{
|
|
2
|
+
"name": "@kg-ui/kg-ui",
|
|
3
|
+
"version": "0.1.9",
|
|
4
|
+
"private": false,
|
|
5
|
+
"main": "lib/main.umd.js",
|
|
6
|
+
"files": [
|
|
7
|
+
"lib"
|
|
8
|
+
],
|
|
9
|
+
"author": {
|
|
10
|
+
"name": "kg"
|
|
11
|
+
},
|
|
12
|
+
"license": "MIT",
|
|
13
|
+
"scripts": {
|
|
14
|
+
"start": "vue-cli-service serve",
|
|
15
|
+
"build": "vue-cli-service build --target lib --name main --dest lib --entry ./packages/index.js",
|
|
16
|
+
"build:all": "vue-cli-service build"
|
|
17
|
+
},
|
|
18
|
+
"dependencies": {
|
|
19
|
+
"@microsoft/fetch-event-source": "^2.0.1",
|
|
20
|
+
"core-js": "^3.33.1",
|
|
21
|
+
"dompurify": "^3.0.10",
|
|
22
|
+
"highlight.js": "^11.9.0",
|
|
23
|
+
"marked": "^5.0.0",
|
|
24
|
+
"pinyin-match": "^1.2.4",
|
|
25
|
+
"vue": "^2.6.11"
|
|
26
|
+
},
|
|
27
|
+
"devDependencies": {
|
|
28
|
+
"@fullhuman/postcss-purgecss": "3.0.0",
|
|
29
|
+
"@tailwindcss/postcss7-compat": "2.2.17",
|
|
30
|
+
"@vue/cli-plugin-babel": "~4.5.0",
|
|
31
|
+
"@vue/cli-plugin-eslint": "~4.5.0",
|
|
32
|
+
"@vue/cli-service": "4.5.0",
|
|
33
|
+
"@vue/compiler-sfc": "^3.2.45",
|
|
34
|
+
"autoprefixer": "9",
|
|
35
|
+
"axios": "^0.26.0",
|
|
36
|
+
"babel-eslint": "^10.1.0",
|
|
37
|
+
"element-ui": "2.13.1",
|
|
38
|
+
"eslint": "^6.7.2",
|
|
39
|
+
"eslint-plugin-vue": "^6.2.2",
|
|
40
|
+
"markdown-it": "^13.0.1",
|
|
41
|
+
"markdown-it-anchor": "^8.6.5",
|
|
42
|
+
"markdown-it-chain": "^1.3.0",
|
|
43
|
+
"markdown-it-container": "^3.0.0",
|
|
44
|
+
"node-sass": "npm:sass",
|
|
45
|
+
"postcss": "7",
|
|
46
|
+
"postcss-import": "12.0.1",
|
|
47
|
+
"prettier": "^2.5.1",
|
|
48
|
+
"sass-loader": "6.0.0",
|
|
49
|
+
"tailwindcss": "npm:@tailwindcss/postcss7-compat",
|
|
50
|
+
"transliteration": "^2.3.5",
|
|
51
|
+
"vue-datepicker-local": "^1.0.19",
|
|
52
|
+
"vue-router": "^3.0.6",
|
|
53
|
+
"vue-template-compiler": "^2.6.11",
|
|
54
|
+
"vuex": "3.6.2"
|
|
55
|
+
},
|
|
56
|
+
"publishConfig": {
|
|
57
|
+
"access": "public",
|
|
58
|
+
"registry": "https://registry.npmjs.org/"
|
|
59
|
+
},
|
|
60
|
+
"eslintConfig": {
|
|
61
|
+
"root": true,
|
|
62
|
+
"env": {
|
|
63
|
+
"node": true
|
|
64
|
+
},
|
|
65
|
+
"extends": [
|
|
66
|
+
"plugin:vue/essential",
|
|
67
|
+
"eslint:recommended"
|
|
68
|
+
],
|
|
69
|
+
"parserOptions": {
|
|
70
|
+
"parser": "babel-eslint"
|
|
71
|
+
},
|
|
72
|
+
"rules": {}
|
|
73
|
+
},
|
|
74
|
+
"browserslist": [
|
|
75
|
+
"> 1%",
|
|
76
|
+
"last 2 versions",
|
|
77
|
+
"not dead"
|
|
78
|
+
],
|
|
79
|
+
"volta": {
|
|
80
|
+
"node": "16.13.1",
|
|
81
|
+
"yarn": "1.22.19"
|
|
82
|
+
}
|
|
83
|
+
}
|