react-native-seel-widget 0.1.5 → 0.1.8
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 +5 -12
- package/src/core/index.ts +1 -0
- package/src/index.tsx +2 -3
package/package.json
CHANGED
|
@@ -1,7 +1,8 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "react-native-seel-widget",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.8",
|
|
4
4
|
"description": "React-Native SeelWidget",
|
|
5
|
+
"main": "./src/index.tsx",
|
|
5
6
|
"exports": {
|
|
6
7
|
".": {
|
|
7
8
|
"source": "./src/index.tsx",
|
|
@@ -32,7 +33,6 @@
|
|
|
32
33
|
"scripts": {
|
|
33
34
|
"example": "yarn workspace react-native-seel-widget-example",
|
|
34
35
|
"clean": "del-cli lib",
|
|
35
|
-
"prepare": "bob build",
|
|
36
36
|
"typecheck": "tsc",
|
|
37
37
|
"lint": "eslint \"**/*.{js,ts,tsx}\"",
|
|
38
38
|
"test": "jest",
|
|
@@ -47,11 +47,12 @@
|
|
|
47
47
|
"type": "git",
|
|
48
48
|
"url": "git+https://github.com/seelinc/react-native-seel-widget.git"
|
|
49
49
|
},
|
|
50
|
-
"
|
|
50
|
+
"author": "qingmingzhang <qingming.zhang@seel.com> (https://github.com/seelinc)",
|
|
51
|
+
"license": "MIT",
|
|
51
52
|
"bugs": {
|
|
52
53
|
"url": "https://github.com/seelinc/react-native-seel-widget/issues"
|
|
53
54
|
},
|
|
54
|
-
"
|
|
55
|
+
"homepage": "https://github.com/seelinc/react-native-seel-widget#readme",
|
|
55
56
|
"publishConfig": {
|
|
56
57
|
"registry": "https://registry.npmjs.org/"
|
|
57
58
|
},
|
|
@@ -156,13 +157,5 @@
|
|
|
156
157
|
},
|
|
157
158
|
"dependencies": {
|
|
158
159
|
"@react-native-async-storage/async-storage": "^2.2.0"
|
|
159
|
-
},
|
|
160
|
-
"author": "qingming.zhang",
|
|
161
|
-
"main": "./src/index.tsx",
|
|
162
|
-
"directories": {
|
|
163
|
-
"example": "example"
|
|
164
|
-
},
|
|
165
|
-
"scripts": {
|
|
166
|
-
"test": "jest"
|
|
167
160
|
}
|
|
168
161
|
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from './SeelWidgetSDK';
|
package/src/index.tsx
CHANGED
|
@@ -1,3 +1,2 @@
|
|
|
1
|
-
export
|
|
2
|
-
|
|
3
|
-
}
|
|
1
|
+
export * from './core';
|
|
2
|
+
export * from './ui';
|