forked from paraswap/paraswap-sdk
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
117 lines (117 loc) · 2.39 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
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
{
"name": "@paraswap/sdk",
"version": "6.5.0",
"main": "dist/index.js",
"module": "dist/sdk.esm.js",
"typings": "dist/index.d.ts",
"files": [
"dist",
"src"
],
"scripts": {
"analyze": "size-limit --why",
"build": "dts build",
"lint": "dts lint",
"prepare": "dts build",
"size": "size-limit",
"start": "dts watch",
"test": "dts test",
"docs:html": "typedoc --gitRevision \"$(git branch --show-current)\"",
"docs:md": "MD=true yarn docs:html",
"docs": "yarn docs:html && yarn docs:md"
},
"husky": {
"hooks": {
"pre-commit": "dts lint --fix"
}
},
"prettier": {
"printWidth": 80,
"semi": true,
"singleQuote": true,
"trailingComma": "es5"
},
"jest": {
"testEnvironment": "node"
},
"engines": {
"node": ">=12"
},
"size-limit": [
{
"path": "dist/sdk.cjs.production.min.js",
"limit": "25 KB"
},
{
"path": "dist/sdk.esm.js",
"limit": "25 KB"
}
],
"devDependencies": {
"@size-limit/preset-small-lib": "^7.0.8",
"@tsconfig/recommended": "^1.0.1",
"axios": "^1.1.3",
"dotenv": "^16.0.0",
"dts-cli": "^1.5.1",
"ethers": "^5.6.5",
"ganache": "^7.1.0",
"husky": "^7.0.4",
"isomorphic-unfetch": "^3.1.0",
"size-limit": "^7.0.8",
"tslib": "^2.4.0",
"typedoc": "^0.23.7",
"typedoc-plugin-markdown": "^3.13.3",
"typedoc-plugin-missing-exports": "^0.23.0",
"typedoc-plugin-replace-text": "^2.0.0",
"typescript": "^4.6.4",
"web3": "^1.7.3"
},
"peerDependencies": {
"axios": ">=0.25.0 <2.0.0",
"ethers": "^5.5.0",
"web3": "^1.7.1"
},
"peerDependenciesMeta": {
"axios": {
"optional": true
},
"ethers": {
"optional": true
},
"web3": {
"optional": true
}
},
"dependencies": {
"@paraswap/core": "1.1.0",
"bignumber.js": "^9.0.2",
"ts-essentials": "^9.1.2"
},
"author": "ParaSwap",
"description": "ParaSwap SDK",
"license": "MIT",
"keywords": [
"web3",
"web3js",
"ethereum",
"crypto",
"blockchain",
"DEX",
"paraswap",
"ether",
"eth",
"dai",
"tokens",
"exchange",
"erc-20",
"erc20"
],
"repository": {
"type": "git",
"url": "https://github.com/paraswap/paraswap-sdk"
},
"publishConfig": {
"access": "public"
},
"bugs": "https://github.com/paraswap/paraswap-sdk/issues"
}