@bbearai/react-native 0.1.0 → 0.1.1

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 +4 -4
  2. package/package.json +8 -2
package/README.md CHANGED
@@ -1,19 +1,19 @@
1
- # @bugbearai/react-native
1
+ # @bbearai/react-native
2
2
 
3
3
  BugBear QA widget for React Native mobile apps.
4
4
 
5
5
  ## Installation
6
6
 
7
7
  ```bash
8
- npm install @bugbearai/react-native @bugbearai/core
8
+ npm install @bbearai/react-native @bbearai/core
9
9
  # or
10
- yarn add @bugbearai/react-native @bugbearai/core
10
+ yarn add @bbearai/react-native @bbearai/core
11
11
  ```
12
12
 
13
13
  ## Quick Start
14
14
 
15
15
  ```tsx
16
- import { BugBearProvider, BugBearWidget } from '@bugbearai/react-native';
16
+ import { BugBearProvider, BugBearWidget } from '@bbearai/react-native';
17
17
 
18
18
  function App() {
19
19
  return (
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@bbearai/react-native",
3
- "version": "0.1.0",
3
+ "version": "0.1.1",
4
4
  "description": "BugBear React Native components for mobile apps",
5
5
  "main": "./dist/index.js",
6
6
  "module": "./dist/index.mjs",
@@ -25,7 +25,13 @@
25
25
  "directory": "packages/react-native"
26
26
  },
27
27
  "license": "MIT",
28
- "keywords": ["bugbear", "qa", "testing", "react-native", "mobile"],
28
+ "keywords": [
29
+ "bugbear",
30
+ "qa",
31
+ "testing",
32
+ "react-native",
33
+ "mobile"
34
+ ],
29
35
  "scripts": {
30
36
  "build": "tsup src/index.tsx --format cjs,esm --dts --external react --external react-native",
31
37
  "dev": "tsup src/index.tsx --format cjs,esm --dts --external react --external react-native --watch",