-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
38 lines (38 loc) · 909 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
{
"name": "@uniswap/mixed-quoter",
"version": "1.0.0",
"description": "smart contracts for mixed quoter",
"files": [
"src/interfaces",
"src/libraries",
"src",
"src/**/*.json"
],
"scripts": {
"fmt": "forge fmt",
"build": "forge build",
"test": "forge test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Uniswap/mixed-quoter.git"
},
"keywords": [
"mixed",
"quoter"
],
"dependencies": {
"@uniswap/v2-periphery": "^1.1.0-beta.0",
"@uniswap/v2-core": "^1.0.1",
"@uniswap/v3-core": "^1.0.0",
"@uniswap/universal-router": "^1.6.0",
"@openzeppelin/contracts": "4.7.0"
},
"devDependencies": {
"@uniswap/swap-router-contracts": "^1.3.0",
"@uniswap/v3-periphery": "^1.4.4",
"hardhat": "^2.6.8"
},
"license": "GPL-2.0-or-later",
"homepage": "https://github.com/Uniswap/mixed-quoter#readme"
}