-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathpackage.json
94 lines (94 loc) · 2.9 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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
{
"name": "@aperture_finance/uniswap-v3-automation-sdk",
"version": "3.14.4",
"description": "SDK for Aperture's CLMM 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 && tsc-alias",
"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 ./",
"graphql:generate:data": "graphql-codegen --config src/graphql.data.codegen.config.ts",
"graphql:generate:thegraph": "graphql-codegen --config src/graphql.thegraph.codegen.config.ts"
},
"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": {
"@0xsequence/multicall": "^1.10.15",
"@aperture_finance/uniswap-v3-sdk": "3.11.0-APTR.2",
"aperture-lens": "^2.0.2",
"axios": "^1.7.9",
"big.js": "^6.2.1",
"bottleneck": "^2.19.5",
"eip1167": "^0.1.1",
"ethers": "5.7.2",
"jsbi": "^3.2.0",
"json-stable-stringify": "^1.1.1",
"lodash": "^4.17.21",
"viem": "^2.8.4",
"zod": "^3.23.8"
},
"devDependencies": {
"@babel/core": "^7.24.3",
"@babel/preset-env": "^7.24.3",
"@babel/preset-typescript": "^7.24.1",
"@graphql-codegen/cli": "^3.3.1",
"@graphql-codegen/typescript": "^3.0.4",
"@graphql-codegen/typescript-operations": "^3.0.4",
"@nomicfoundation/hardhat-network-helpers": "^1.0.11",
"@nomicfoundation/hardhat-viem": "^2.0.3",
"@nomiclabs/hardhat-ethers": "^2.2.3",
"@trivago/prettier-plugin-sort-imports": "^4.3.0",
"@types/big.js": "^6.2.2",
"@types/chai": "^4.3.14",
"@types/chai-as-promised": "^7.1.8",
"@types/jest": "^29.5.12",
"@types/json-stable-stringify": "^1.0.36",
"@types/lodash": "^4.17.0",
"@types/mocha": "^10.0.6",
"@types/node": "^20.12.2",
"@typescript-eslint/eslint-plugin": "^7.4.0",
"@typescript-eslint/parser": "^7.4.0",
"@uniswap/permit2-sdk": "^1.2.0",
"@uniswap/smart-order-router": "^3.26.1",
"axios-mock-adapter": "^1.22.0",
"chai": "^4.4.1",
"chai-as-promised": "^7.1.1",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.2.1",
"hardhat": "^2.22.17",
"jest": "^29.7.0",
"prettier": "^3.3.3",
"ts-node": "10.9.2",
"tsc-alias": "^1.8.10",
"tsconfig-paths": "^4.2.0",
"typescript": "5.7.2"
}
}