forked from yearn/yearn-sdk
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
101 lines (101 loc) · 2.57 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": "@yfi/sdk",
"version": "3.0.0-alpha.7",
"description": "Interaction framework for the yearn protocol",
"author": "nymmrx <[email protected]>",
"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",
"build:watch": "tsdx watch --onSuccess \"yalc push --replace\"",
"test": "tsdx test",
"test:coverage": "tsdx test --coverage",
"lint": "run-p lint:*",
"lint:eslint": "eslint src",
"lint:typescript": "tsc --noEmit",
"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/bytes": "^5.4.0",
"@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/bytes": "^5.4.0",
"@ethersproject/contracts": "^5.4.1",
"@ethersproject/providers": "^5.4.3",
"@size-limit/preset-small-lib": "7.0.4",
"@solidity-parser/parser": "^0.12.0",
"@types/jest": "^27.4.1",
"@typescript-eslint/eslint-plugin": "^5.17.0",
"@typescript-eslint/parser": "^5.17.0",
"cli-table3": "^0.6.0",
"eslint": "^8.12.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-import": "^2.25.4",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-simple-import-sort": "6",
"events": "3.3.0",
"jest": "^27.5.1",
"npm-run-all": "^4.1.5",
"prettier": "^2.6.2",
"size-limit": "7.0.4",
"ts-jest": "^27.1.3",
"tsdx": "^0.14.1",
"tslib": "^2.1.0",
"typedoc": "^0.22.13",
"typescript": "^4.6.3"
},
"dependencies": {
"bignumber.js": "9.0.1",
"cross-fetch": "3.1.5",
"dotenv": "10.0.0",
"emittery": "0.8.1",
"type-fest": "1.2.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"
],
"jest": {
"preset": "ts-jest",
"testPathIgnorePatterns": [
"<rootDir>/node_modules/",
"<rootDir>/dist/"
]
}
}