forked from Uniswap/v2-sdk
-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
45 lines (45 loc) · 1.02 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
{
"name": "custom-uniswap-v2-sdk",
"license": "MIT",
"version": "3.2.0",
"description": "Custom Uniswap SDK V2 to use for multiple chains",
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"files": [
"dist"
],
"repository": "https://github.com/gndplayground/uniswap-v2-sdk.git",
"keywords": [
"swap",
"crytocurrency"
],
"module": "dist/v2-sdk.esm.js",
"scripts": {
"lint": "tsdx lint src",
"build": "tsdx build",
"start": "tsdx watch",
"test": "tsdx test",
"prepublishOnly": "tsdx build"
},
"dependencies": {
"@ethersproject/address": "^5.0.0",
"@ethersproject/solidity": "^5.0.0",
"@uniswap/sdk-core": "^3.0.0-alpha.3",
"tiny-invariant": "^1.1.0",
"tiny-warning": "^1.0.3"
},
"devDependencies": {
"@types/big.js": "^4.0.5",
"@types/jest": "^24.0.25",
"@uniswap/v2-core": "^1.0.1",
"tsdx": "^0.14.1"
},
"engines": {
"node": ">=10"
},
"prettier": {
"printWidth": 120,
"semi": false,
"singleQuote": true
}
}