forked from sushiswap/sushiswap-sdk
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
71 lines (71 loc) · 2.14 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
{
"name": "@qidao/sdk",
"license": "MIT",
"version": "5.1.73",
"description": "🛠 An SDK for building applications on top of QiDao Protocol.",
"main": "./dist/index.js",
"umd:main": "dist/index.umd.js",
"source": "./src/index.ts",
"exports": {
"require": "./dist/index.js",
"types": "./dist/src/index.d.ts",
"default": "./dist/index.js"
},
"module": "./dist/index.module.js",
"unpkg": "./dist/index.umd.js",
"types": "./dist/src/index.d.ts",
"files": [
"dist"
],
"repository": "https://github.com/royalaid/sushiswap-sdk",
"keywords": [],
"scripts": {
"checkTokens": "node src/scripts/validateCoinGeckoFallbackTokens.mjs",
"fetchTokenDescriptions": "node src/scripts/fetchTokenDescriptions.mjs",
"build": "typechain --discriminate-types --target ethers-v5 --out-dir src/contracts \"src/abis/toGenerate/**/*.json\" && microbundle",
"prepack": "typechain --discriminate-types --target ethers-v5 --out-dir src/contracts \"src/abis/toGenerate/**/*.json\" && microbundle",
"start": "microbundle watch"
},
"dependencies": {
"big.js": "5.2.2",
"decimal.js-light": "2.5.1",
"jsbi": "3.2.5",
"lodash": "^4.17.21",
"tiny-invariant": "1.2.0",
"tiny-warning": "1.0.3",
"toformat": "2.0.0"
},
"peerDependencies": {
"@ethersproject/address": "5.7.0",
"@ethersproject/contracts": "5.7.0",
"@ethersproject/networks": "5.7.0",
"@ethersproject/providers": "5.7.0",
"@ethersproject/solidity": "5.7.0",
"ethers": "5.7.0"
},
"devDependencies": {
"@ethersproject/address": "5.7.0",
"@ethersproject/contracts": "5.7.0",
"@ethersproject/networks": "5.7.0",
"@ethersproject/providers": "5.7.0",
"@ethersproject/solidity": "5.7.0",
"@typechain/ethers-v5": "10.2.0",
"@types/big.js": "4.0.5",
"@types/jest": "28.1.6",
"@types/lodash": "^4.14.185",
"ethers": "5.7.0",
"isomorphic-fetch":" ^3.0.0",
"microbundle": "0.15.1",
"p-queue": "^7.3.0",
"typechain": "8.1.0",
"typescript": "4.9.5"
},
"engines": {
"node": ">= 16"
},
"prettier": {
"printWidth": 120,
"semi": false,
"singleQuote": true
}
}