@hypercard-ai/hyper-jump 0.1.5 → 0.2.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 +2 -1
  2. package/package.json +4 -3
package/README.md CHANGED
@@ -17,7 +17,7 @@ A React PDF viewer built for RAG (Retrieval-Augmented Generation). Originally de
17
17
  ## Installation
18
18
 
19
19
  ```bash
20
- npm install @hypercard-ai/hyper-jump
20
+ npm install @hypercard-ai/hyper-jump react-pdf
21
21
  ```
22
22
 
23
23
  ## Usage
@@ -59,6 +59,7 @@ Pass a zero-indexed `page` prop to scroll directly to a page:
59
59
  ## Requirements
60
60
 
61
61
  - React 19+
62
+ - react-pdf 10+
62
63
 
63
64
  ## Development
64
65
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@hypercard-ai/hyper-jump",
3
- "version": "0.1.5",
3
+ "version": "0.2.0",
4
4
  "description": "Document viewer built for RAG",
5
5
  "license": "MIT",
6
6
  "author": "HyperCard AI",
@@ -55,7 +55,8 @@
55
55
  },
56
56
  "peerDependencies": {
57
57
  "react": ">=19.0.0",
58
- "react-dom": ">=19.0.0"
58
+ "react-dom": ">=19.0.0",
59
+ "react-pdf": ">=10.0.0"
59
60
  },
60
61
  "devDependencies": {
61
62
  "@biomejs/biome": "2.3.15",
@@ -68,13 +69,13 @@
68
69
  "jsdom": "^28.0.0",
69
70
  "react": "^19.2.4",
70
71
  "react-dom": "^19.2.4",
72
+ "react-pdf": "10.3.0",
71
73
  "storybook": "^10.2.8",
72
74
  "tsup": "^8.5.1",
73
75
  "typescript": "^5.9.3",
74
76
  "vitest": "^4.0.18"
75
77
  },
76
78
  "dependencies": {
77
- "react-pdf": "10.3.0",
78
79
  "react-window": "^2.2.7"
79
80
  }
80
81
  }