distinctui-uni 0.0.12

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 ADDED
@@ -0,0 +1,22 @@
1
+ # `distinct-ui`
2
+
3
+ > 卓正医疗小程序 UI 组件库
4
+
5
+ ## Usage
6
+
7
+ ```shell
8
+ npm install distinctui-uni
9
+ // or
10
+ yarn add distinctui-uni
11
+ ```
12
+
13
+ uni-app 项目 pages.json 配置
14
+
15
+ ```js
16
+ "easycom": {
17
+ "autoscan": true,
18
+ "custom": {
19
+ "dist-(.*)": "distinctui-uni/components/distinctui/dist-$1/dist-$1.vue"
20
+ }
21
+ }
22
+ ```
@@ -0,0 +1,7 @@
1
+ 'use strict';
2
+
3
+ module.exports = distinctUi;
4
+
5
+ function distinctUi() {
6
+ return 'Hello from distinctUi';
7
+ }
package/package.json ADDED
@@ -0,0 +1,87 @@
1
+ {
2
+ "name": "distinctui-uni",
3
+ "version": "0.0.12",
4
+ "description": "Distinct MiniProgram UI",
5
+ "author": "benzheng <benzheng@distinctclinic.com>",
6
+ "scripts": {
7
+ "build": "cross-env NODE_ENV=production UNI_PLATFORM=mp-weixin vue-cli-service uni-build",
8
+ "dev": "cross-env NODE_ENV=development UNI_PLATFORM=mp-weixin vue-cli-service uni-build --watch",
9
+ "info": "node node_modules/@dcloudio/vue-cli-plugin-uni/commands/info.js",
10
+ "test": "cross-env UNI_PLATFORM=mp-weixin jest -i",
11
+ "publish": "chmod u+x publish.sh"
12
+ },
13
+ "main": "lib/distinct-ui.js",
14
+ "files": [
15
+ "lib"
16
+ ],
17
+ "keywords": [
18
+ "MiniProgram",
19
+ "UI",
20
+ "Components"
21
+ ],
22
+ "dependencies": {
23
+ "@dcloudio/uni-app": "^2.0.2-3080720230703001",
24
+ "@dcloudio/uni-app-plus": "^2.0.2-3080720230703001",
25
+ "@dcloudio/uni-h5": "^2.0.2-3080720230703001",
26
+ "@dcloudio/uni-i18n": "^2.0.2-3080720230703001",
27
+ "@dcloudio/uni-mp-360": "^2.0.2-3080720230703001",
28
+ "@dcloudio/uni-mp-alipay": "^2.0.2-3080720230703001",
29
+ "@dcloudio/uni-mp-baidu": "^2.0.2-3080720230703001",
30
+ "@dcloudio/uni-mp-jd": "^2.0.2-3080720230703001",
31
+ "@dcloudio/uni-mp-kuaishou": "^2.0.2-3080720230703001",
32
+ "@dcloudio/uni-mp-lark": "^2.0.2-3080720230703001",
33
+ "@dcloudio/uni-mp-qq": "^2.0.2-3080720230703001",
34
+ "@dcloudio/uni-mp-toutiao": "^2.0.2-3080720230703001",
35
+ "@dcloudio/uni-mp-vue": "^2.0.2-3080720230703001",
36
+ "@dcloudio/uni-mp-weixin": "^2.0.2-3080720230703001",
37
+ "@dcloudio/uni-mp-xhs": "^2.0.2-3080720230703001",
38
+ "@dcloudio/uni-quickapp-native": "^2.0.2-3080720230703001",
39
+ "@dcloudio/uni-quickapp-webview": "^2.0.2-3080720230703001",
40
+ "@dcloudio/uni-stacktracey": "^2.0.2-3080720230703001",
41
+ "@dcloudio/uni-stat": "^2.0.2-3080720230703001",
42
+ "@vue/shared": "^3.0.0",
43
+ "core-js": "^3.8.3",
44
+ "vue": ">= 2.6.14 < 2.7",
45
+ "vuex": "^3.2.0"
46
+ },
47
+ "devDependencies": {
48
+ "@dcloudio/types": "^3.3.2",
49
+ "@dcloudio/uni-automator": "^2.0.2-3080720230703001",
50
+ "@dcloudio/uni-cli-i18n": "^2.0.2-3080720230703001",
51
+ "@dcloudio/uni-cli-shared": "^2.0.2-3080720230703001",
52
+ "@dcloudio/uni-helper-json": "*",
53
+ "@dcloudio/uni-migration": "^2.0.2-3080720230703001",
54
+ "@dcloudio/uni-template-compiler": "^2.0.2-3080720230703001",
55
+ "@dcloudio/vue-cli-plugin-hbuilderx": "^2.0.2-3080720230703001",
56
+ "@dcloudio/vue-cli-plugin-uni": "^2.0.2-3080720230703001",
57
+ "@dcloudio/vue-cli-plugin-uni-optimize": "^2.0.2-3080720230703001",
58
+ "@dcloudio/webpack-uni-mp-loader": "^2.0.2-3080720230703001",
59
+ "@dcloudio/webpack-uni-pages-loader": "^2.0.2-3080720230703001",
60
+ "@vue/cli-plugin-babel": "~5.0.0",
61
+ "@vue/cli-service": "~5.0.0",
62
+ "babel-plugin-import": "^1.11.0",
63
+ "cross-env": "^7.0.2",
64
+ "jest": "^25.4.0",
65
+ "mini-types": "*",
66
+ "miniprogram-api-typings": "*",
67
+ "postcss-comment": "^2.0.0",
68
+ "vue-template-compiler": ">= 2.6.14 < 2.7"
69
+ },
70
+ "browserslist": [
71
+ "Android >= 4.4",
72
+ "ios >= 9"
73
+ ],
74
+ "directories": {
75
+ "lib": "lib",
76
+ "test": "__tests__"
77
+ },
78
+ "homepage": "",
79
+ "license": "ISC",
80
+ "repository": {
81
+ "type": "git",
82
+ "url": "https://git.distinctclinic.com/distinct-healthcare-mobile/distinct-ui"
83
+ },
84
+ "uni-app": {
85
+ "scripts": {}
86
+ }
87
+ }