forked from Uniswap/router-sdk
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
45 lines (45 loc) · 986 Bytes
/
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": "@pollum-io/router-sdk",
"version": "0.0.6",
"description": "An sdk for routing swaps using Pegasys v1 and Pegasys v3.",
"publishConfig": {
"access": "public"
},
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"test": "tsdx test",
"build": "tsdx build",
"start": "tsdx watch",
"prepublishOnly": "tsdx build"
},
"repository": {
"type": "git",
"url": "https://github.com/pegasys-fi/router-sdk.git"
},
"keywords": [
"pegasys",
"syscoin"
],
"license": "MIT",
"dependencies": {
"@ethersproject/abi": "^5.5.0",
"@pollum-io/sdk-core": "0.0.3",
"@pollum-io/swap-router-contracts": "0.0.5",
"@pollum-io/v1-sdk": "0.0.10",
"@pollum-io/v3-sdk": "0.0.2"
},
"devDependencies": {
"@types/jest": "^24.0.25",
"prettier": "^2.4.1",
"tsdx": "^0.14.1"
},
"prettier": {
"printWidth": 120,
"semi": false,
"singleQuote": true
}
}