@near-kit/react 0.8.3 → 0.9.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.
- package/README.md +2 -2
- package/package.json +9 -3
package/README.md
CHANGED
|
@@ -5,9 +5,9 @@ React bindings for [near-kit](https://github.com/r-near/near-kit) — a simple,
|
|
|
5
5
|
## Installation
|
|
6
6
|
|
|
7
7
|
```bash
|
|
8
|
-
npm install @near-kit/react
|
|
8
|
+
npm install @near-kit/react
|
|
9
9
|
# or
|
|
10
|
-
bun add @near-kit/react
|
|
10
|
+
bun add @near-kit/react
|
|
11
11
|
```
|
|
12
12
|
|
|
13
13
|
## Quick Start
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@near-kit/react",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.9.0",
|
|
4
4
|
"description": "React bindings for near-kit - hooks and providers for NEAR Protocol",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "./dist/index.js",
|
|
@@ -33,8 +33,15 @@
|
|
|
33
33
|
"web3"
|
|
34
34
|
],
|
|
35
35
|
"license": "MIT",
|
|
36
|
+
"repository": {
|
|
37
|
+
"type": "git",
|
|
38
|
+
"url": "https://github.com/r-near/near-kit",
|
|
39
|
+
"directory": "packages/react"
|
|
40
|
+
},
|
|
41
|
+
"dependencies": {
|
|
42
|
+
"near-kit": "0.9.0"
|
|
43
|
+
},
|
|
36
44
|
"peerDependencies": {
|
|
37
|
-
"near-kit": ">=0.8.3",
|
|
38
45
|
"react": ">=18.0.0"
|
|
39
46
|
},
|
|
40
47
|
"devDependencies": {
|
|
@@ -42,7 +49,6 @@
|
|
|
42
49
|
"@testing-library/react": "^16.2.0",
|
|
43
50
|
"@types/react": "^19.0.0",
|
|
44
51
|
"jsdom": "^26.0.0",
|
|
45
|
-
"near-kit": "0.8.3",
|
|
46
52
|
"react": "^19.0.0",
|
|
47
53
|
"react-dom": "^19.0.0",
|
|
48
54
|
"typescript": "^5.9.3",
|