-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
65 lines (65 loc) · 1.58 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
{
"name": "@minertoken/uniswap-v2-best-path",
"version": "1.0.2",
"description": "The Uniswap Best Path module finds the best exchange rate between two tokens and returns the corresponding route of tokens necessary to complete the swap.",
"type": "module",
"main": "./dist/index.js",
"exports": {
".": {
"types": "./dist/types/index.d.ts",
"import": "./dist/index.js"
},
"./wrappers/web3": {
"types": "./dist/types/wrappers/web3.d.ts",
"import": "./dist/wrappers/web3.js"
},
"./wrappers/ethers": {
"types": "./dist/types/wrappers/ethers.d.ts",
"import": "./dist/wrappers/ethers.js"
}
},
"types": "./dist/types/src/index.d.ts",
"files": [
"/dist"
],
"scripts": {
"build": "tsc",
"prepare": "npm run build",
"test": "jest",
"format:test": "ts-standard -p tsconfig.eslint.json",
"format": "ts-standard -p tsconfig.eslint.json --fix"
},
"keywords": [
"uniswap",
"best",
"path",
"hops",
"defi",
"exchange",
"token",
"tokens",
"ether",
"eth"
],
"author": "MinerToken.io",
"contributors": [
"haydenyoung (http://gitlab.com/hyprojects/)"
],
"license": "GPL-3.0-only",
"devDependencies": {
"@types/jest": "^29.2.3",
"@types/lodash.flatmap": "^4.5.7",
"@uniswap/v2-core": "^1.0.1",
"dotenv": "^16.0.3",
"jest": "^29.3.1",
"ts-jest": "^29.0.3",
"ts-standard": "^12.0.1",
"typescript": "^4.9.3"
},
"dependencies": {
"@uniswap/sdk": "^3.0.3",
"ethers": "^5.7.2",
"lodash.flatmap": "^4.5.0",
"web3": "^1.8.1"
}
}