forked from yearn/yearn-sdk
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
75 lines (75 loc) · 1.78 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
{
"name": "@yfi/sdk",
"version": "1.0.12",
"description": "Interaction framework for the yearn protocol",
"author": "nymmrx <nymmrx@protonmail.com>",
"license": "MIT",
"main": "dist/index.js",
"module": "dist/core.esm.js",
"typings": "dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"start": "tsdx watch",
"build": "tsdx build",
"test": "tsdx test",
"lint": "tsdx lint src test",
"docs": "typedoc --out docs src/index.ts",
"size": "size-limit",
"analyze": "size-limit --why",
"version": "tsdx build"
},
"peerDependencies": {
"@ethersproject/abi": "^5.4.0",
"@ethersproject/address": "^5.4.0",
"@ethersproject/bignumber": "^5.4.1",
"@ethersproject/contracts": "^5.4.1",
"@ethersproject/providers": "^5.4.3"
},
"devDependencies": {
"@ethersproject/abi": "^5.4.0",
"@ethersproject/address": "^5.4.0",
"@ethersproject/bignumber": "^5.4.1",
"@ethersproject/contracts": "^5.4.1",
"@ethersproject/providers": "^5.4.3",
"@size-limit/preset-small-lib": "^4.10.1",
"@solidity-parser/parser": "^0.12.0",
"cli-table3": "^0.6.0",
"eslint-plugin-simple-import-sort": "6",
"size-limit": "^4.10.1",
"tsdx": "^0.14.1",
"tslib": "^2.1.0",
"typedoc": "^0.20.0"
},
"dependencies": {
"bignumber.js": "^9.0.1",
"cross-fetch": "^3.1.3-alpha.6",
"dotenv": "^10.0.0",
"emittery": "^0.8.1",
"type-fest": "^1.1.1"
},
"size-limit": [
{
"path": "dist/sdk.cjs.production.min.js",
"limit": "80 KB"
},
{
"path": "dist/sdk.esm.js",
"limit": "80 KB"
}
],
"engines": {
"node": ">=12.0.0"
},
"prettier": {
"endOfLine": "auto",
"printWidth": 120
},
"keywords": [
"yearn",
"crypto",
"sdk",
"typescript"
]
}