wallet-connect-button-react 1.0.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/dist/NLWalletButton.d.ts +27 -0
- package/dist/NLWalletButtonWithRouter.d.ts +3 -0
- package/dist/index.d.ts +3 -0
- package/dist/index.esm.js +7722 -0
- package/dist/index.esm.js.map +1 -0
- package/dist/index.js +7727 -0
- package/dist/index.js.map +1 -0
- package/dist/nl-wallet-web.d.ts +4 -0
- package/dist/nl-wallet-web.js +7068 -0
- package/dist/useSearchParams.d.ts +1 -0
- package/package.json +51 -0
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export declare function useSearchParams(): readonly [URLSearchParams, (params: Record<string, string>) => void, (paramName: string) => void];
|
package/package.json
ADDED
|
@@ -0,0 +1,51 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "wallet-connect-button-react",
|
|
3
|
+
"version": "1.0.0",
|
|
4
|
+
"description": "A React component for NL Wallet integration",
|
|
5
|
+
"main": "dist/index.js",
|
|
6
|
+
"module": "dist/index.esm.js",
|
|
7
|
+
"types": "dist/index.d.ts",
|
|
8
|
+
"files": [
|
|
9
|
+
"dist"
|
|
10
|
+
],
|
|
11
|
+
"scripts": {
|
|
12
|
+
"build": "rollup -c",
|
|
13
|
+
"dev": "rollup -c -w",
|
|
14
|
+
"lint": "eslint src --ext .ts,.tsx",
|
|
15
|
+
"typecheck": "tsc --noEmit"
|
|
16
|
+
},
|
|
17
|
+
"keywords": [
|
|
18
|
+
"react",
|
|
19
|
+
"nl-wallet",
|
|
20
|
+
"component",
|
|
21
|
+
"wallet",
|
|
22
|
+
"button"
|
|
23
|
+
],
|
|
24
|
+
"author": "Michiel Mayer",
|
|
25
|
+
"license": "MIT",
|
|
26
|
+
"peerDependencies": {
|
|
27
|
+
"react": ">=16.8.0",
|
|
28
|
+
"react-dom": ">=16.8.0",
|
|
29
|
+
"axios": ">=1.0.0"
|
|
30
|
+
},
|
|
31
|
+
"devDependencies": {
|
|
32
|
+
"@rollup/plugin-commonjs": "^25.0.0",
|
|
33
|
+
"rollup-plugin-copy": "^3.5.0",
|
|
34
|
+
"@rollup/plugin-json": "^6.0.0",
|
|
35
|
+
"@rollup/plugin-node-resolve": "^15.0.0",
|
|
36
|
+
"@rollup/plugin-typescript": "^11.0.0",
|
|
37
|
+
"@types/react": "^18.0.0",
|
|
38
|
+
"@types/react-dom": "^18.0.0",
|
|
39
|
+
"eslint": "^8.0.0",
|
|
40
|
+
"eslint-plugin-react": "^7.0.0",
|
|
41
|
+
"eslint-plugin-react-hooks": "^4.0.0",
|
|
42
|
+
"rollup": "^4.0.0",
|
|
43
|
+
"typescript": "^5.0.0",
|
|
44
|
+
"tslib": "^2.0.0"
|
|
45
|
+
},
|
|
46
|
+
"repository": {
|
|
47
|
+
"type": "git",
|
|
48
|
+
"url": "https://github.com/michielmayer/wallet-connect-button-react.git"
|
|
49
|
+
},
|
|
50
|
+
"homepage": "https://github.com/michielmayer/wallet-connect-button-react"
|
|
51
|
+
}
|