-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathpackage.json
49 lines (49 loc) · 1.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
{
"name": "@blocto/rainbowkit-connector",
"version": "2.0.3",
"description": "blocto wallet connector to use rainbowkit",
"author": "Blocto Wallet",
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"license": "Apache-2.0",
"keywords": [
"rainbowkit",
"react",
"wagmi",
"javascript",
"typescript",
"web3",
"context",
"frontend",
"dapp",
"blocto",
"web3-react",
"blocto-sdk",
"eth",
"ethereum"
],
"exports": {
"require": "./dist/index.js",
"import": "./dist/index.mjs",
"types": "./dist/index.d.ts"
},
"scripts": {
"build": "tsup src/index.ts --format esm,cjs --dts",
"lint": "eslint src --ext .ts"
},
"dependencies": {
"@rainbow-me/rainbowkit": "^2.0.5",
"@blocto/wagmi-connector": "^2.0.5"
},
"devDependencies": {
"@types/jest": "^29.5.2",
"jest": "^29.3.1",
"ts-jest": "^29.0.3",
"tsup": "^6.5.0",
"typescript": "^5.1.3"
},
"files": [
"/dist"
]
}