access-layers-wallet 1.0.2
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 +213 -0
- package/dist/index.d.mts +168 -0
- package/dist/index.d.ts +168 -0
- package/dist/index.js +3392 -0
- package/dist/index.js.map +1 -0
- package/dist/index.mjs +3346 -0
- package/dist/index.mjs.map +1 -0
- package/package.json +80 -0
package/package.json
ADDED
|
@@ -0,0 +1,80 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "access-layers-wallet",
|
|
3
|
+
"version": "1.0.2",
|
|
4
|
+
"description": "Multi-wallet connection library for Supra blockchain supporting Starkey and Ribbit wallets",
|
|
5
|
+
"main": "./dist/index.js",
|
|
6
|
+
"module": "./dist/index.mjs",
|
|
7
|
+
"types": "./dist/index.d.ts",
|
|
8
|
+
"exports": {
|
|
9
|
+
".": {
|
|
10
|
+
"types": "./dist/index.d.ts",
|
|
11
|
+
"import": "./dist/index.mjs",
|
|
12
|
+
"require": "./dist/index.js"
|
|
13
|
+
}
|
|
14
|
+
},
|
|
15
|
+
"files": [
|
|
16
|
+
"dist"
|
|
17
|
+
],
|
|
18
|
+
"scripts": {
|
|
19
|
+
"dev": "next dev",
|
|
20
|
+
"build": "tsup",
|
|
21
|
+
"build:package": "tsup",
|
|
22
|
+
"start": "next start",
|
|
23
|
+
"lint": "eslint",
|
|
24
|
+
"prepublishOnly": "npm run build:package"
|
|
25
|
+
},
|
|
26
|
+
"dependencies": {
|
|
27
|
+
"@radix-ui/react-dialog": "^1.1.15",
|
|
28
|
+
"@radix-ui/react-slot": "^1.2.4",
|
|
29
|
+
"@radix-ui/react-visually-hidden": "^1.2.4",
|
|
30
|
+
"class-variance-authority": "^0.7.1",
|
|
31
|
+
"clsx": "^2.1.1",
|
|
32
|
+
"framer-motion": "^12.23.26",
|
|
33
|
+
"lucide-react": "^0.562.0",
|
|
34
|
+
"next": "16.1.1",
|
|
35
|
+
"next-themes": "^0.4.6",
|
|
36
|
+
"react": "^18.0.0 || ^19.0.0",
|
|
37
|
+
"react-dom": "^18.0.0 || ^19.0.0",
|
|
38
|
+
"ribbit-wallet-connect": "^1.2.7",
|
|
39
|
+
"sonner": "^2.0.7",
|
|
40
|
+
"supra-l1-sdk-core": "^2.0.1",
|
|
41
|
+
"tailwind-merge": "^3.4.0",
|
|
42
|
+
"tweetnacl": "^1.0.3"
|
|
43
|
+
},
|
|
44
|
+
"devDependencies": {
|
|
45
|
+
"@tailwindcss/postcss": "^4",
|
|
46
|
+
"@types/node": "^20",
|
|
47
|
+
"@types/react": "^19",
|
|
48
|
+
"@types/react-dom": "^19",
|
|
49
|
+
"eslint": "^9",
|
|
50
|
+
"eslint-config-next": "16.1.1",
|
|
51
|
+
"tailwindcss": "^4",
|
|
52
|
+
"tsup": "^8.5.1",
|
|
53
|
+
"typescript": "^5"
|
|
54
|
+
},
|
|
55
|
+
"peerDependencies": {
|
|
56
|
+
"react": "^18.0.0 || ^19.0.0",
|
|
57
|
+
"react-dom": "^18.0.0 || ^19.0.0"
|
|
58
|
+
},
|
|
59
|
+
"keywords": [
|
|
60
|
+
"supra",
|
|
61
|
+
"wallet",
|
|
62
|
+
"walletconnect",
|
|
63
|
+
"starkey",
|
|
64
|
+
"ribbit",
|
|
65
|
+
"blockchain",
|
|
66
|
+
"crypto"
|
|
67
|
+
],
|
|
68
|
+
"license": "MIT",
|
|
69
|
+
"author": {
|
|
70
|
+
"name": "Karan Kadiya",
|
|
71
|
+
"url": "https://www.npmjs.com/~karankadiya"
|
|
72
|
+
},
|
|
73
|
+
"repository": {
|
|
74
|
+
"type": "git",
|
|
75
|
+
"url": "git+https://github.com/karankadiya/walletconnect.git"
|
|
76
|
+
},
|
|
77
|
+
"publishConfig": {
|
|
78
|
+
"access": "public"
|
|
79
|
+
}
|
|
80
|
+
}
|