-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.56 KB
/
package.json
File metadata and controls
54 lines (54 loc) · 1.56 KB
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
{
"name": "@bel2labs/sdk",
"version": "0.0.1",
"repository": "git@github-bel2:BeL2Labs/bel2-sdk-typescript.git",
"author": "BeL2Labs",
"license": "MIT",
"main": "dist/index.cjs.js",
"module": "dist/index.esm.js",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"build": "rollup -c && tsc --emitDeclarationOnly",
"typechain:ethers:v5": "typechain --target=ethers-v5 --out-dir src/contracts/ethersv5/types 'src/contracts/abi/*.json'",
"typechain:ethers:v6": "typechain --target=ethers-v6 --out-dir src/contracts/ethersv6/types 'src/contracts/abi/*.json'",
"typechain": "yarn typechain:ethers:v6 && yarn typechain:ethers:v5",
"prepublishOnly": "yarn build"
},
"devDependencies": {
"@rollup/plugin-alias": "^5.1.0",
"@rollup/plugin-commonjs": "^26.0.1",
"@rollup/plugin-json": "^6.1.0",
"@rollup/plugin-node-resolve": "^15.2.3",
"@typechain/ethers-v5": "^11.1.2",
"@typechain/ethers-v6": "^0.5.1",
"@types/react": "^18.3.3",
"react": "^18.3.1",
"rollup": "^4.18.0",
"rollup-plugin-typescript2": "^0.36.0",
"typechain": "^8.3.2",
"typescript": "^5.5.3"
},
"dependencies": {
"@ethersproject/providers": "^5.7.2",
"axios": "^1.7.2",
"ethersv5": "npm:ethers@5",
"ethersv6": "npm:ethers@6",
"merkletreejs": "^0.4.0",
"rxjs": "^7.8.1"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
}
}