forked from Uniswap/v3-sdk
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
54 lines (54 loc) · 1.26 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
{
"name": "@uniswap/v3-sdk",
"license": "MIT",
"publishConfig": {
"access": "public"
},
"version": "3.10.0",
"description": "⚒️ An SDK for building applications on top of Uniswap V3",
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"files": [
"dist"
],
"repository": "https://github.com/Uniswap/uniswap-v3-sdk.git",
"keywords": [
"uniswap",
"ethereum"
],
"scripts": {
"build": "tsc",
"test": "jest",
"prepublishOnly": "tsc"
},
"dependencies": {
"@ethersproject/abi": "^5.0.12",
"@ethersproject/solidity": "^5.0.9",
"@uniswap/sdk-core": "npm:@koraykoska/uniswap-sdk-core@^3.2.6",
"@uniswap/swap-router-contracts": "^1.2.1",
"@uniswap/v3-periphery": "^1.1.1",
"@uniswap/v3-staker": "1.0.2",
"tiny-invariant": "^1.1.0",
"tiny-warning": "^1.0.3"
},
"devDependencies": {
"@types/jest": "^24.9.1",
"@uniswap/v3-core": "1.0.0",
"commander": "^11.0.0",
"ethers": "^5.7.2",
"jest": "^29.5.0",
"jest-environment-jsdom": "^29.5.0",
"prettier": "^2.8.8",
"ts-jest": "^29.1.0",
"tslib": "^2.5.1",
"typescript": "^5.0.4"
},
"engines": {
"node": ">=10"
},
"prettier": {
"printWidth": 120,
"semi": false,
"singleQuote": true
}
}