forked from Aperture-Finance/uniswap-v3-automation-sdk
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
78 lines (78 loc) · 2.2 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
66
67
68
69
70
71
72
73
74
75
76
77
78
{
"name": "@aperture_finance/uniswap-v3-automation-sdk",
"version": "1.14.0",
"description": "SDK for Aperture's Uniswap V3 automation platform",
"author": "Aperture Finance <engineering@aperture.finance>",
"license": "MIT",
"bugs": {
"url": "https://github.com/Aperture-Finance/uniswap-v3-automation-sdk/issues"
},
"homepage": "https://aperture.finance/",
"scripts": {
"build": "tsc --build",
"clean": "tsc --build --clean",
"test": "yarn test:jest && yarn test:hardhat",
"test:jest": "jest",
"test:hardhat": "npx hardhat test",
"lint": "eslint ./ --quiet",
"lint:fix": "eslint ./ --quiet --fix && prettier -w ./",
"prettier": "prettier -c ./"
},
"repository": {
"type": "git",
"url": "https://github.com/Aperture-Finance/uniswap-v3-automation-sdk.git"
},
"keywords": [
"ethereum",
"uniswap",
"aperture"
],
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist",
"LICENSE",
"README.md"
],
"engines": {
"node": ">=18"
},
"dependencies": {
"@uniswap/v3-sdk": "^3.10.0",
"aperture-lens": "^0.3.0",
"axios": "^1.6.3",
"big.js": "^6.2.1",
"ethers": "5.7.2",
"json-stable-stringify": "^1.1.0",
"viem": "^1.21.3",
"zod": "^3.22.4"
},
"devDependencies": {
"@babel/core": "^7.23.7",
"@babel/preset-env": "^7.23.7",
"@babel/preset-typescript": "^7.23.3",
"@nomicfoundation/hardhat-network-helpers": "^1.0.10",
"@nomicfoundation/hardhat-viem": "^1.0.2",
"@trivago/prettier-plugin-sort-imports": "^4.3.0",
"@types/big.js": "^6.2.2",
"@types/chai": "^4.3.11",
"@types/chai-as-promised": "^7.1.8",
"@types/jest": "^29.5.11",
"@types/json-stable-stringify": "^1.0.36",
"@types/mocha": "^10.0.6",
"@types/node": "^20.10.6",
"@typescript-eslint/eslint-plugin": "^6.16.0",
"@typescript-eslint/parser": "^6.16.0",
"axios-mock-adapter": "^1.22.0",
"chai": "^4.3.10",
"chai-as-promised": "^7.1.1",
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.1.2",
"hardhat": "^2.19.4",
"jest": "^29.7.0",
"prettier": "^3.1.1",
"ts-node": "10.9.2",
"typescript": "^5.3.3"
}
}