-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
101 lines (101 loc) · 3.18 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
95
96
97
98
99
100
101
{
"name": "@ichidao/ichi-vaults-sdk",
"version": "0.0.103",
"description": "The ICHI Vaults SDK",
"main": "dist/src/index.cjs.js",
"module": "dist/src/index.esm.js",
"types": "dist/src/index.d.ts",
"files": [
"dist"
],
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org"
},
"scripts": {
"build": "yarn generate && rollup -c && tsc -d",
"coverage": "jest --runInBand",
"dev": "rollup -c -w",
"format": "prettier --write \"src/**/*.ts\"",
"generate": "rm-cli -r ./abis && typechain --target=ethers-v5 \"src/abis/**/*.json\" --out-dir \"abis/types\"",
"lint:ts": "eslint --ext .js,.ts --ignore-path .gitignore . --fix",
"lint": "npm run lint:ts",
"postversion": "git push && git push --tags",
"prebuild": "rm-cli -r ./dist",
"prepare": "npm run build",
"prepublishOnly": "npm test && npm run lint & yarn build",
"preversion": "npm run lint",
"test": "jest --runInBand --forceExit",
"version": "npm run format && git add -A src"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ichidao/ichi-vaults-sdk.git"
},
"keywords": [
"ichi",
"ichivaults",
"sdk"
],
"author": "ICHI DAO <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/ichidao/ichi-vaults-sdk/issues"
},
"homepage": "https://github.com/ichidao/ichi-vaults-sdk#readme",
"dependencies": {
"@ethersproject/abi": "^5.7.0",
"@ethersproject/abstract-signer": "^5.6.2",
"@ethersproject/address": "^5.6.0",
"@ethersproject/bignumber": "^5.6.0",
"@ethersproject/bytes": "^5.6.1",
"@ethersproject/constants": "^5.6.0",
"@ethersproject/contracts": "^5.6.2",
"@ethersproject/providers": "^5.6.5",
"@ethersproject/units": "^5.6.1",
"@ethersproject/wallet": "^5.6.2",
"@thanpolas/univ3prices": "^3.0.2",
"@typechain/ethers-v5": "^10.0.0",
"bignumber.js": "^9.0.1",
"ethereumjs-util": "^7.1.4",
"ethers": "^5.6.8",
"global": "^4.4.0",
"graphql": "^16.6.0",
"graphql-request": "^6.0.0",
"jsbi": "^3.1.5",
"node-cache": "^5.1.2",
"typechain": "^8.0.0"
},
"devDependencies": {
"@babel/core": "^7.17.10",
"@babel/preset-env": "^7.17.10",
"@jest/globals": "^29.5.0",
"@rollup/plugin-babel": "^5.3.1",
"@rollup/plugin-commonjs": "^22.0.0",
"@rollup/plugin-json": "^4.1.0",
"@rollup/plugin-node-resolve": "^13.3.0",
"@rollup/plugin-typescript": "^8.3.2",
"@truffle/hdwallet-provider": "2.0.10-alpha.2",
"@types/jest": "^27.5.0",
"@typescript-eslint/eslint-plugin": "^5.27.1",
"@typescript-eslint/parser": "^5.27.1",
"dotenv": "^16.0.1",
"eslint": "^6.8.0",
"eslint-config-airbnb-base": "^14.0.0",
"eslint-config-prettier": "^6.3.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-prettier": "^3.1.0",
"ethereum-protocol": "^1.0.1",
"jest": "^29.1.0",
"prettier": "^2.8.7",
"rm-cli": "^1.4.2",
"rollup": "^2.72.1",
"rollup-plugin-terser": "^7.0.2",
"ts-jest": "^29.1.0",
"tslib": "^2.4.0",
"tslint": "^6.1.3",
"tslint-config-prettier": "^1.18.0",
"typescript": "^4.7.3",
"web3-provider-engine": "^16.0.5"
}
}