-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
56 lines (56 loc) · 1.27 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
{
"name": "@use-web3wallet/cosmos",
"version": "0.0.2",
"license": "MIT",
"author": {
"name": "Ryz0nd <[email protected]>"
},
"description": "Easy-to-use Cosmos provider hook",
"keywords": [
"web3",
"wallet",
"Cosmos",
"Keplr"
],
"homepage": "https://github.com/alpha-dao/useWeb3Wallet",
"repository": {
"type": "git",
"url": "git+https://github.com/alpha-dao/useWeb3Wallet.git"
},
"bugs": {
"url": "https://github.com/alpha-dao/useWeb3Wallet/issues"
},
"scripts": {
"build": "tsc && vite build",
"preview": "vite preview"
},
"peerDependencies": {
"react": "^16.8.0 || ^17.0.0 || ^18.0.0",
"react-dom": "^16.8.0 || ^17.0.0 || ^18.0.0"
},
"devDependencies": {
"@cosmjs/proto-signing": "^0.28.11",
"@keplr-wallet/types": "^0.10.13",
"@types/react": "^17.0.0",
"@types/react-dom": "^17.0.0",
"@vitejs/plugin-react": "^2.0.0",
"typescript": "^4.7.4",
"vite": "^3.0.3",
"vite-plugin-dts": "^1.4.0"
},
"dependencies": {
"zustand": "^4.0.0"
},
"files": [
"dist"
],
"main": "./dist/core.umd.js",
"module": "./dist/core.es.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"import": "./dist/core.es.js",
"require": "./dist/core.umd.js"
}
}
}