@tuwaio/nova-connect 1.0.0-fix-test-alpha.51.1ef6db6
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/LICENSE +201 -0
- package/README.md +142 -0
- package/dist/evm/index.cjs +2 -0
- package/dist/evm/index.cjs.map +1 -0
- package/dist/evm/index.d.cts +31 -0
- package/dist/evm/index.d.ts +31 -0
- package/dist/evm/index.js +2 -0
- package/dist/evm/index.js.map +1 -0
- package/dist/hooks/index.cjs +2 -0
- package/dist/hooks/index.cjs.map +1 -0
- package/dist/hooks/index.js +2 -0
- package/dist/hooks/index.js.map +1 -0
- package/dist/index.cjs +12 -0
- package/dist/index.cjs.map +1 -0
- package/dist/index.css +2126 -0
- package/dist/index.d.cts +1607 -0
- package/dist/index.d.ts +1607 -0
- package/dist/index.js +12 -0
- package/dist/index.js.map +1 -0
- package/dist/providers/index.cjs +6 -0
- package/dist/providers/index.cjs.map +1 -0
- package/dist/providers/index.d.cts +190 -0
- package/dist/providers/index.d.ts +190 -0
- package/dist/providers/index.js +6 -0
- package/dist/providers/index.js.map +1 -0
- package/dist/solana/index.cjs +2 -0
- package/dist/solana/index.cjs.map +1 -0
- package/dist/solana/index.js +2 -0
- package/dist/solana/index.js.map +1 -0
- package/package.json +162 -0
package/package.json
ADDED
|
@@ -0,0 +1,162 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@tuwaio/nova-connect",
|
|
3
|
+
"version": "1.0.0-fix-test-alpha.51.1ef6db6",
|
|
4
|
+
"private": false,
|
|
5
|
+
"author": "Oleksandr Tkach",
|
|
6
|
+
"license": "Apache-2.0",
|
|
7
|
+
"description": "React components, hooks and providers for wallet connection and blockchain interactions across multiple chains and wallet types. Build on @tuwaio/satellite-react",
|
|
8
|
+
"type": "module",
|
|
9
|
+
"main": "./dist/index.js",
|
|
10
|
+
"module": "./dist/index.cjs",
|
|
11
|
+
"types": "./dist/index.d.ts",
|
|
12
|
+
"exports": {
|
|
13
|
+
".": {
|
|
14
|
+
"types": "./dist/index.d.ts",
|
|
15
|
+
"import": "./dist/index.cjs",
|
|
16
|
+
"default": "./dist/index.js"
|
|
17
|
+
},
|
|
18
|
+
"./hooks": {
|
|
19
|
+
"types": "./dist/hooks/index.d.ts",
|
|
20
|
+
"import": "./dist/hooks/index.cjs",
|
|
21
|
+
"default": "./dist/hooks/index.js"
|
|
22
|
+
},
|
|
23
|
+
"./providers": {
|
|
24
|
+
"types": "./dist/providers/index.d.ts",
|
|
25
|
+
"import": "./dist/providers/index.cjs",
|
|
26
|
+
"default": "./dist/providers/index.js"
|
|
27
|
+
},
|
|
28
|
+
"./evm": {
|
|
29
|
+
"types": "./dist/evm/index.d.ts",
|
|
30
|
+
"import": "./dist/evm/index.cjs",
|
|
31
|
+
"default": "./dist/evm/index.js"
|
|
32
|
+
},
|
|
33
|
+
"./solana": {
|
|
34
|
+
"types": "./dist/solana/index.d.ts",
|
|
35
|
+
"import": "./dist/solana/index.cjs",
|
|
36
|
+
"default": "./dist/solana/index.js"
|
|
37
|
+
},
|
|
38
|
+
"./dist/index.css": "./dist/index.css"
|
|
39
|
+
},
|
|
40
|
+
"publishConfig": {
|
|
41
|
+
"access": "public"
|
|
42
|
+
},
|
|
43
|
+
"files": [
|
|
44
|
+
"dist"
|
|
45
|
+
],
|
|
46
|
+
"keywords": [
|
|
47
|
+
"web3",
|
|
48
|
+
"connect",
|
|
49
|
+
"wallet",
|
|
50
|
+
"wagmi",
|
|
51
|
+
"viem",
|
|
52
|
+
"zustand",
|
|
53
|
+
"react",
|
|
54
|
+
"ui",
|
|
55
|
+
"i18n",
|
|
56
|
+
"modal",
|
|
57
|
+
"toast",
|
|
58
|
+
"design-system",
|
|
59
|
+
"nova",
|
|
60
|
+
"tuwa"
|
|
61
|
+
],
|
|
62
|
+
"repository": {
|
|
63
|
+
"type": "git",
|
|
64
|
+
"url": "git+https://github.com/TuwaIO/nova-uikit.git",
|
|
65
|
+
"directory": "packages/nova-connect"
|
|
66
|
+
},
|
|
67
|
+
"homepage": "https://github.com/TuwaIO/nova-uikit",
|
|
68
|
+
"bugs": {
|
|
69
|
+
"url": "https://github.com/TuwaIO/nova-uikit/issues"
|
|
70
|
+
},
|
|
71
|
+
"contributors": [
|
|
72
|
+
{
|
|
73
|
+
"name": "Oleksandr Tkach",
|
|
74
|
+
"url": "https://github.com/Argeare5"
|
|
75
|
+
}
|
|
76
|
+
],
|
|
77
|
+
"peerDependencies": {
|
|
78
|
+
"@bgd-labs/react-web3-icons": ">=1.5",
|
|
79
|
+
"@heroicons/react": "2.x.x",
|
|
80
|
+
"@radix-ui/react-dialog": "1.x.x",
|
|
81
|
+
"@radix-ui/react-select": "2.x.x",
|
|
82
|
+
"@tuwaio/orbit-core": ">=0",
|
|
83
|
+
"@tuwaio/orbit-evm": ">=0",
|
|
84
|
+
"@tuwaio/orbit-solana": ">=0",
|
|
85
|
+
"@tuwaio/satellite-core": ">=0",
|
|
86
|
+
"@tuwaio/satellite-evm": ">=0",
|
|
87
|
+
"@tuwaio/satellite-react": ">=0",
|
|
88
|
+
"@tuwaio/satellite-solana": ">=0",
|
|
89
|
+
"@tuwaio/pulsar-core": ">=0",
|
|
90
|
+
"@tuwaio/nova-core": ">=0",
|
|
91
|
+
"@tuwaio/nova-transactions": ">=0",
|
|
92
|
+
"@wallet-standard/app": "1.x.x",
|
|
93
|
+
"@wallet-standard/base": "1.x.x",
|
|
94
|
+
"@wallet-standard/features": "1.x.x",
|
|
95
|
+
"@wallet-standard/core": "1.x.x",
|
|
96
|
+
"@wallet-standard/ui": "1.x.x",
|
|
97
|
+
"@wallet-standard/ui-registry": "1.x.x",
|
|
98
|
+
"@wagmi/core": "2.x.x",
|
|
99
|
+
"@wagmi/connectors": "6.x.x",
|
|
100
|
+
"gill": ">=0.12",
|
|
101
|
+
"dayjs": "1.x.x",
|
|
102
|
+
"immer": "10.x.x",
|
|
103
|
+
"ethereum-blockies-base64": "1.x.x",
|
|
104
|
+
"framer-motion": "12.x.x",
|
|
105
|
+
"@emotion/is-prop-valid": "1.x.x",
|
|
106
|
+
"react": "19.x.x",
|
|
107
|
+
"react-toastify": "11.x.x",
|
|
108
|
+
"viem": "2.x.x",
|
|
109
|
+
"zustand": "5.x.x"
|
|
110
|
+
},
|
|
111
|
+
"devDependencies": {
|
|
112
|
+
"@bgd-labs/react-web3-icons": "^1.51.0",
|
|
113
|
+
"@heroicons/react": "^2.2.0",
|
|
114
|
+
"@radix-ui/react-dialog": "^1.1.15",
|
|
115
|
+
"@radix-ui/react-select": "^2.2.6",
|
|
116
|
+
"@tuwaio/pulsar-core": "1.0.0-fix-orbit-integration-alpha.18.e3594e7",
|
|
117
|
+
"@tuwaio/nova-core": "1.0.0-fix-integrate-orbit-alpha.28.5540261",
|
|
118
|
+
"@tuwaio/nova-transactions": "1.0.0-fix-integrate-orbit-alpha.28.5540261",
|
|
119
|
+
"@wallet-standard/app": "^1.1.0",
|
|
120
|
+
"@wallet-standard/base": "^1.1.0",
|
|
121
|
+
"@wallet-standard/features": "^1.1.0",
|
|
122
|
+
"@wallet-standard/core": "^1.1.1",
|
|
123
|
+
"@wallet-standard/ui": "^1.0.1",
|
|
124
|
+
"@wallet-standard/ui-registry": "^1.0.1",
|
|
125
|
+
"@wagmi/core": "^2.22.1",
|
|
126
|
+
"@wagmi/connectors": "^6.0.1",
|
|
127
|
+
"gill": "^0.12.0",
|
|
128
|
+
"clsx": "^2.1.1",
|
|
129
|
+
"dayjs": "^1.11.18",
|
|
130
|
+
"immer": "^10.1.3",
|
|
131
|
+
"ethereum-blockies-base64": "^1.0.2",
|
|
132
|
+
"framer-motion": "^12.23.24",
|
|
133
|
+
"react": "^19.2.0",
|
|
134
|
+
"react-toastify": "^11.0.5",
|
|
135
|
+
"tailwind-merge": "^3.3.1",
|
|
136
|
+
"viem": "^2.38.2",
|
|
137
|
+
"zustand": "^5.0.8",
|
|
138
|
+
"@tailwindcss/postcss": "^4.1.14",
|
|
139
|
+
"@tailwindcss/vite": "^4.1.14",
|
|
140
|
+
"@types/react": "^19.2.2",
|
|
141
|
+
"autoprefixer": "^10.4.21",
|
|
142
|
+
"postcss": "^8.5.6",
|
|
143
|
+
"postcss-cli": "^11.0.1",
|
|
144
|
+
"tailwindcss": "^4.1.14",
|
|
145
|
+
"@emotion/is-prop-valid": "^1.4.0",
|
|
146
|
+
"tw-animate-css": "^1.4.0",
|
|
147
|
+
"typescript": "^5.9.3",
|
|
148
|
+
"tsup": "^8.5.0",
|
|
149
|
+
"@tuwaio/orbit-solana": "^1.0.0-fix-test-alpha.51.1ef6db6",
|
|
150
|
+
"@tuwaio/orbit-evm": "^1.0.0-fix-test-alpha.51.1ef6db6",
|
|
151
|
+
"@tuwaio/orbit-core": "^1.0.0-fix-test-alpha.51.1ef6db6",
|
|
152
|
+
"@tuwaio/satellite-core": "^1.0.0-fix-test-alpha.51.1ef6db6",
|
|
153
|
+
"@tuwaio/satellite-react": "^1.0.0-fix-test-alpha.51.1ef6db6",
|
|
154
|
+
"@tuwaio/satellite-evm": "^1.0.0-fix-test-alpha.51.1ef6db6",
|
|
155
|
+
"@tuwaio/satellite-solana": "^1.0.0-fix-test-alpha.51.1ef6db6"
|
|
156
|
+
},
|
|
157
|
+
"scripts": {
|
|
158
|
+
"start": "tsup src/index.ts --watch",
|
|
159
|
+
"build": "tsup && pnpm exec postcss ./src/styles/app.css -o ./dist/index.css",
|
|
160
|
+
"test": "vitest"
|
|
161
|
+
}
|
|
162
|
+
}
|