@statsig/expo-bindings 1.0.0 → 1.1.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.
Files changed (2) hide show
  1. package/README.md +45 -3
  2. package/package.json +4 -4
package/README.md CHANGED
@@ -1,5 +1,47 @@
1
- # Statsig - Expo
1
+ <h1 align="center">
2
+ <a href="https://statsig.com/?ref=gh_jsm">
3
+ <img src="https://github.com/statsig-io/js-client-monorepo/assets/95646168/ae5499ed-20ff-4584-bf21-8857f800d485" />
4
+ </a>
5
+ <div />
6
+ <a href="https://statsig.com/?ref=gh_jsm">Statsig</a>
7
+ </h1>
2
8
 
3
- Expo specific additions for use with a Statsig Javascript SDK.
9
+ <p align="center">
10
+ <a href="https://github.com/statsig-io/js-client-monorepo/blob/main/LICENSE">
11
+ <img src="https://img.shields.io/badge/license-ISC-blue.svg?colorA=1b2528&colorB=ccfbc7&style=for-the-badge">
12
+ </a>
13
+ <a href="https://www.npmjs.com/package/@statsig/js-client">
14
+ <img src="https://img.shields.io/npm/v/@statsig/js-client.svg?colorA=1b2528&colorB=b2d3ff&style=for-the-badge">
15
+ </a>
16
+ <a href="https://statsig.com/community?ref=gh_jsm">
17
+ <img src="https://img.shields.io/badge/slack-statsig-brightgreen.svg?logo=slack&colorA=1b2528&colorB=FFF8BA&style=for-the-badge">
18
+ </a>
19
+ </p>
4
20
 
5
- Learn more by visiting: https://docs.statsig.com/client/javascript-sdk
21
+ Statsig helps you move faster with feature gates (feature flags), and/or dynamic configs. It also allows you to run A/B/n tests to validate your new features and understand their impact on your KPIs. If you're new to Statsig, check out our product and create an account at [statsig.com](https://www.statsig.com/?ref=gh_jsm).
22
+
23
+ ## Getting Started
24
+
25
+ Read through the [Documentation](https://docs.statsig.com/client/javascript-sdk?ref=gh_jsm) or check out the [Samples](samples/).
26
+
27
+ ## Packages
28
+
29
+ Clients
30
+
31
+ - [Precomputed Evaluations (Recommended)](packages/js-client/README.md)
32
+ - [On Device Evaluations](packages/js-on-device-eval-client/README.md)
33
+
34
+ Product Bundles
35
+
36
+ - [Session Replay](packages/session-replay/README.md)
37
+ - [Web Analytics](packages/web-analytics/README.md)
38
+
39
+ Framework Specific Bindings
40
+
41
+ - [React](packages/react-bindings/README.md)
42
+ - [React Native](packages/react-native-bindings/README.md)
43
+ - [React Native (Expo)](packages/expo-bindings/README.md)
44
+
45
+ ## Community
46
+
47
+ If you need any assitance or just have a question, feel free to reach out to us on [Slack](https://statsig.com/community?ref=gh_jsm).
package/package.json CHANGED
@@ -1,10 +1,10 @@
1
1
  {
2
2
  "name": "@statsig/expo-bindings",
3
- "version": "1.0.0",
3
+ "version": "1.1.0",
4
4
  "dependencies": {
5
- "@statsig/client-core": "1.0.0",
6
- "@statsig/react-bindings": "1.0.0",
7
- "@statsig/react-native-core": "1.0.0"
5
+ "@statsig/client-core": "1.1.0",
6
+ "@statsig/react-bindings": "1.1.0",
7
+ "@statsig/react-native-core": "1.1.0"
8
8
  },
9
9
  "peerDependencies": {
10
10
  "react": "^16.6.3 || ^17.0.0 || ^18.0.0",