-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
60 lines (60 loc) · 2.15 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
{
"name": "@ycabal/sushi-sdk",
"version": "1.0.0",
"private": false,
"description": "YCabal SDK for sushiswap",
"main": "dist/index.js",
"homepage": "https://github.com/manifoldfinance/sushi-sdk",
"scripts": {
"gen-erc20-abi": "abi-types-generator ./src/abi/erc-20-abi.json --output=./src/abi/types --name=erc20-contract --provider=ethers_v5",
"gen-sushiswap-router-v2-abi": "abi-types-generator ./src/abi/sushiswap-router-v2.json --output=./src/abi/types --name=sushiswap-router --provider=ethers_v5",
"gen-sushiswap-factory-v2-abi": "abi-types-generator ./src/abi/sushiswap-factory-v2.json --output=./src/abi/types --name=sushiswap-factory --provider=ethers_v5",
"gen-sushiswap-pair-v2-abi": "abi-types-generator ./src/abi/sushiswap-pair-v2.json --output=./src/abi/types --name=sushiswap-pair --provider=ethers_v5",
"gen-all-contract-types": "npm run gen-erc20-abi && npm run gen-sushiswap-router-v2-abi && npm run gen-sushiswap-factory-v2-abi && npm run gen-sushiswap-pair-v2-abi",
"prepublishOnly": "npx tsdx build",
"docs": "npx typedoc src/index.ts",
"build": "npx tsdx build"
},
"author": "SEE CONTRIBUTORS",
"license": "MIT",
"keywords": [
"ethereum",
"blockchain",
"sushiswap"
],
"dependencies": {
"bignumber.js": "^9.0.1",
"decimal.js": "^10.2.1",
"ethereum-multicall": "^2.0.1",
"ethers": "^5.0.26",
"rxjs": "^6.6.3"
},
"devDependencies": {
"@types/jest": "^26.0.20",
"@typescript-eslint/eslint-plugin": "^4.18.0",
"@typescript-eslint/parser": "^4.18.0",
"codecov": "^3.8.1",
"eslint": "^7.22.0",
"eslint-config-prettier": "^8.1.0",
"eslint-config-standard": "^16.0.2",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^3.3.1",
"eslint-plugin-promise": "^4.3.1",
"ethereum-abi-types-generator": "^1.0.10",
"jest": "^26.6.3",
"ts-jest": "^26.5.4",
"tsdx": "^0.14.1",
"tslib": "^1.14.1",
"typedoc": "^0.20.35",
"typedoc-neo-theme": "^1.1.0",
"typescript": "^4.2.3"
},
"files": [
"dist",
"package.json",
"package-lock.json",
"README.md",
"LICENSE"
]
}