@golocalinteractive/golocal-cloud-wrapper 1.0.1 → 1.0.3

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 +8 -1
  2. package/package.json +9 -4
package/README.md CHANGED
@@ -5,7 +5,13 @@ A React provider component for Go Local Interactive's cloud services.
5
5
  ## Installation
6
6
 
7
7
  ```bash
8
- npm install golocal-cloud-wrapper
8
+ npm install @golocalinteractive/golocal-cloud-wrapper
9
+ ```
10
+
11
+ This package requires the following peer dependencies to be installed in your project:
12
+
13
+ ```bash
14
+ npm install react react-dom react-router-dom
9
15
  ```
10
16
 
11
17
  ## Usage
@@ -27,6 +33,7 @@ function App() {
27
33
  ## Requirements
28
34
 
29
35
  - React 19+
36
+ - React Router DOM 7+
30
37
  - TypeScript (recommended)
31
38
 
32
39
  ## License
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@golocalinteractive/golocal-cloud-wrapper",
3
- "version": "1.0.1",
3
+ "version": "1.0.3",
4
4
  "description": "A React provider component for Go Local Interactive's cloud services",
5
5
  "license": "ISC",
6
6
  "author": "Tanner Barrett",
@@ -28,6 +28,8 @@
28
28
  "build-storybook": "storybook build"
29
29
  },
30
30
  "devDependencies": {
31
+ "@jest/globals": "^29.7.0",
32
+ "@testing-library/react": "^16.3.0",
31
33
  "@types/jest": "^29.5.14",
32
34
  "@types/react": "^19.1.0",
33
35
  "@types/react-router-dom": "^5.3.3",
@@ -40,6 +42,7 @@
40
42
  "playwright": "^1.53.1",
41
43
  "postcss": "^8.5.6",
42
44
  "react": "^19.1.0",
45
+ "react-router-dom": "^7.6.2",
43
46
  "storybook": "^9.0.12",
44
47
  "tailwindcss": "^4.1.10",
45
48
  "ts-jest": "^29.3.1",
@@ -48,19 +51,21 @@
48
51
  "vite": "^6.3.5",
49
52
  "vitest": "^3.2.4"
50
53
  },
54
+ "peerDependencies": {
55
+ "react": "^19.0.0",
56
+ "react-dom": "^19.0.0",
57
+ "react-router-dom": "^7.0.0"
58
+ },
51
59
  "dependencies": {
52
60
  "@auth0/nextjs-auth0": "^4.7.0",
53
- "@jest/globals": "^29.7.0",
54
61
  "@radix-ui/react-dialog": "^1.1.14",
55
62
  "@radix-ui/react-dropdown-menu": "^2.1.15",
56
63
  "@radix-ui/react-separator": "^1.1.7",
57
64
  "@radix-ui/react-slot": "^1.2.3",
58
65
  "@radix-ui/react-tooltip": "^1.2.7",
59
- "@testing-library/react": "^16.3.0",
60
66
  "class-variance-authority": "^0.7.1",
61
67
  "clsx": "^2.1.1",
62
68
  "lucide-react": "^0.522.0",
63
- "react-router-dom": "^7.6.2",
64
69
  "tailwind-merge": "^3.3.1"
65
70
  }
66
71
  }