@screeb/sdk-react 0.1.0 → 0.1.2

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.
Files changed (2) hide show
  1. package/README.md +5 -3
  2. package/package.json +10 -10
package/README.md CHANGED
@@ -73,9 +73,9 @@ const HomePage = () => {
73
73
 
74
74
  const onButtonClicked = React.useCallback(
75
75
  () => eventTrack(
76
- "screeb-sdk-react-example started",
77
- { test: 123 }
78
- );
76
+ "screeb-sdk-react-example started",
77
+ { test: 123 }
78
+ );
79
79
  );
80
80
 
81
81
  return (
@@ -86,6 +86,8 @@ const HomePage = () => {
86
86
  };
87
87
  ```
88
88
 
89
+ For a working example, see our [Screeb Angular SDK example app](https://github.com/ScreebApp/sdk-js/tree/master/packages/screeb-sdk-react-example).
90
+
89
91
  For a more advanced usage and a complete API documentation, see [documentation generated from source files](https://github.com/ScreebApp/sdk-js/tree/master/packages/screeb-sdk-react/docs).
90
92
 
91
93
  For further information, see [our developper documentation](https://github.com/ScreebApp/developers).
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@screeb/sdk-react",
3
- "version": "0.1.0",
3
+ "version": "0.1.2",
4
4
  "description": "Screeb's browser sdk, optimized for React.",
5
5
  "keywords": [
6
6
  "product discovery",
@@ -14,7 +14,7 @@
14
14
  "homepage": "https://screeb.app",
15
15
  "bugs": {
16
16
  "url": "https://github.com/ScreebApp/sdk-js/issues",
17
- "email": "suuport@screeb.app"
17
+ "email": "support@screeb.app"
18
18
  },
19
19
  "repository": {
20
20
  "type": "git",
@@ -45,10 +45,13 @@
45
45
  "lint": "eslint .",
46
46
  "test": "echo '@TODO'"
47
47
  },
48
+ "dependencies": {
49
+ "@screeb/sdk-browser": "^0.1.9"
50
+ },
48
51
  "devDependencies": {
49
- "@screeb/eslint-config": "^0.1.4",
52
+ "@screeb/eslint-config": "^0.1.5",
50
53
  "@screeb/sdk-browser": "^0.1.6",
51
- "@screeb/typescript-config": "^0.1.4",
54
+ "@screeb/typescript-config": "^0.1.5",
52
55
  "@types/jest": "^29.5.1",
53
56
  "@types/node": "^18.11.19",
54
57
  "@types/react": "^18.0.20",
@@ -67,14 +70,11 @@
67
70
  "typedoc": "^0.24.7",
68
71
  "typedoc-plugin-markdown": "^3.15.3"
69
72
  },
70
- "publishConfig": {
71
- "access": "public"
72
- },
73
- "dependencies": {
74
- "@screeb/sdk-browser": "^0.1.7"
75
- },
76
73
  "peerDependencies": {
77
74
  "react": ">=16.8.0",
78
75
  "react-dom": ">=16.8.0"
76
+ },
77
+ "publishConfig": {
78
+ "access": "public"
79
79
  }
80
80
  }