-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathpackage.json
53 lines (53 loc) · 1.05 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
{
"name": "@blocto/web3-react-connector",
"version": "1.0.9",
"description": "A Blocto SDK connector for web3-react",
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"license": "MIT",
"files": [
"/dist"
],
"publishConfig": {
"access": "public"
},
"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"
},
"keywords": [
"react",
"react-hooks",
"hooks",
"javascript",
"typescript",
"web3",
"context",
"frontend",
"dapp",
"blocto",
"web3-react",
"blocto-sdk",
"eth",
"ethereum"
],
"author": "Chiaki.C",
"repository": {
"type": "git",
"url": "git://github.com/portto/blocto-sdk.git"
},
"dependencies": {
"@blocto/sdk": "^0.10.4",
"@web3-react/types": "^8.1.2-beta.0"
},
"devDependencies": {
"tsup": "^7.2.0",
"typescript": "^5.1.3"
}
}