-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
94 lines (94 loc) · 3.01 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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
{
"author": "OLLO Station",
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "git+https://github.com/OllO-Station/wallet-provider.git"
},
"bugs": {
"url": "https://github.com/OllO-Station/wallet-provider.git/issues"
},
"homepage": "https://github.com/OllO-Station/wallet-provider.git",
"engines": {
"node": ">=16"
},
"publishConfig": {
"cache": "~/.npm",
"access": "public"
},
"typings": "index.d.ts",
"name": "@nestwallet/wallet-provider",
"version": "1.2.3",
"dependencies": {
"@nestwallet/web-extension-interface": "1.2.0",
"@nestwallet/use-wallet": "1.2.3",
"@nestwallet/wallet-controller": "1.2.0"
},
"main": "./_commonjs/index.js",
"module": "./index.js",
"peerDependencies": {
"react": ">=17.0.0"
},
"exports": {
".": {
"import": "./index.js",
"require": "./_commonjs/index.js",
"node": "./_commonjs/index.js",
"default": "./index.js"
},
"./public/*": "./public/*",
"./README.md": "./README.md",
"./StaticWalletProvider": {
"import": "./StaticWalletProvider.js",
"require": "./_commonjs/StaticWalletProvider.js",
"node": "./_commonjs/StaticWalletProvider.js",
"default": "./StaticWalletProvider.js"
},
"./StaticWalletProvider.js": {
"import": "./StaticWalletProvider.js",
"require": "./_commonjs/StaticWalletProvider.js",
"node": "./_commonjs/StaticWalletProvider.js",
"default": "./StaticWalletProvider.js"
},
"./useChainOptions": {
"import": "./useChainOptions.js",
"require": "./_commonjs/useChainOptions.js",
"node": "./_commonjs/useChainOptions.js",
"default": "./useChainOptions.js"
},
"./useChainOptions.js": {
"import": "./useChainOptions.js",
"require": "./_commonjs/useChainOptions.js",
"node": "./_commonjs/useChainOptions.js",
"default": "./useChainOptions.js"
},
"./useInstallChromeExtension": {
"import": "./useInstallChromeExtension.js",
"require": "./_commonjs/useInstallChromeExtension.js",
"node": "./_commonjs/useInstallChromeExtension.js",
"default": "./useInstallChromeExtension.js"
},
"./useInstallChromeExtension.js": {
"import": "./useInstallChromeExtension.js",
"require": "./_commonjs/useInstallChromeExtension.js",
"node": "./_commonjs/useInstallChromeExtension.js",
"default": "./useInstallChromeExtension.js"
},
"./WalletProvider": {
"import": "./WalletProvider.js",
"require": "./_commonjs/WalletProvider.js",
"node": "./_commonjs/WalletProvider.js",
"default": "./WalletProvider.js"
},
"./WalletProvider.js": {
"import": "./WalletProvider.js",
"require": "./_commonjs/WalletProvider.js",
"node": "./_commonjs/WalletProvider.js",
"default": "./WalletProvider.js"
}
},
"description": "Library to make React dApps easier using Nest Wallet Extension or Nest Wallet Mobile.",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
}
}