@chrryai/pepper 1.1.79 → 1.1.80
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/README.md +4 -4
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -14,7 +14,7 @@
|
|
|
14
14
|
## 📦 Installation
|
|
15
15
|
|
|
16
16
|
```bash
|
|
17
|
-
npm install @
|
|
17
|
+
npm install @chrryai/pepper
|
|
18
18
|
```
|
|
19
19
|
|
|
20
20
|
## 🚀 Quick Start
|
|
@@ -22,7 +22,7 @@ npm install @askvex/pepper
|
|
|
22
22
|
### Web (with View Transitions)
|
|
23
23
|
|
|
24
24
|
```tsx
|
|
25
|
-
import { HistoryRouterProvider, useNavigation } from "@
|
|
25
|
+
import { HistoryRouterProvider, useNavigation } from "@chrryai/pepper/web"
|
|
26
26
|
|
|
27
27
|
function App() {
|
|
28
28
|
return (
|
|
@@ -42,7 +42,7 @@ function YourComponent() {
|
|
|
42
42
|
### React Native
|
|
43
43
|
|
|
44
44
|
```tsx
|
|
45
|
-
import { HistoryRouterProvider, useNavigation } from "@
|
|
45
|
+
import { HistoryRouterProvider, useNavigation } from "@chrryai/pepper/native"
|
|
46
46
|
|
|
47
47
|
function App() {
|
|
48
48
|
return (
|
|
@@ -56,7 +56,7 @@ function App() {
|
|
|
56
56
|
### Browser Extension
|
|
57
57
|
|
|
58
58
|
```tsx
|
|
59
|
-
import { HistoryRouterProvider, useNavigation } from "@
|
|
59
|
+
import { HistoryRouterProvider, useNavigation } from "@chrryai/pepper/extension"
|
|
60
60
|
|
|
61
61
|
function App() {
|
|
62
62
|
return (
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@chrryai/pepper",
|
|
3
|
-
"version": "1.1.
|
|
3
|
+
"version": "1.1.80",
|
|
4
4
|
"description": "Universal router for React - works in web, React Native, and browser extensions with built-in view transitions",
|
|
5
5
|
"main": "./dist/index.js",
|
|
6
6
|
"module": "./dist/index.mjs",
|