-
Notifications
You must be signed in to change notification settings - Fork 103
/
package.json
125 lines (125 loc) · 2.59 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
118
119
120
121
122
123
124
125
{
"name": "@paraswap/sdk",
"version": "7.0.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": ">=18"
},
"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": "^11.1.6",
"@tsconfig/recommended": "^1.0.8",
"axios": "^1.7.7",
"bignumber.js": "^9.1.2",
"dotenv": "^16.4.5",
"dts-cli": "^2.0.5",
"ethers": "^6.13.4",
"ethersV5": "npm:ethers@5",
"hardhat": "^2.22.15",
"hardhat-switch-network": "^1.1.1",
"husky": "^9.1.6",
"isomorphic-unfetch": "^4.0.2",
"size-limit": "^11.1.6",
"tslib": "^2.8.1",
"typedoc": "^0.26.11",
"typedoc-plugin-markdown": "^4.2.10",
"typedoc-plugin-missing-exports": "^3.0.0",
"typedoc-plugin-replace-text": "^4.0.0",
"typescript": "^5.6.3",
"viem": "^2.21.39",
"wagmi": "^2.12.25",
"web3": "^4.14.0"
},
"peerDependencies": {
"axios": ">=0.25.0 <2.0.0",
"ethers": "^5.5.0 || ^6.0.0",
"viem": "^2.21.0",
"web3": "^4.14.0"
},
"peerDependenciesMeta": {
"axios": {
"optional": true
},
"ethers": {
"optional": true
},
"web3": {
"optional": true
},
"viem": {
"optional": true
}
},
"dependencies": {
"@paraswap/core": "2.4.0",
"ts-essentials": "^10.0.3"
},
"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"
}