forked from Aperture-Finance/Aperture-Lens
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
84 lines (84 loc) · 2.46 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
{
"name": "aperture-lens",
"version": "1.0.1",
"description": "Contains ephemeral lens contracts that can be called without deployment and their interfaces in various Web3 libraries.",
"author": "Aperture Finance <[email protected]>",
"license": "Apache-2.0",
"homepage": "https://aperture.finance/",
"repository": {
"type": "git",
"url": "https://github.com/Aperture-Finance/Aperture-Lens"
},
"bugs": {
"url": "https://github.com/Aperture-Finance/Aperture-Lens/issues"
},
"keywords": [
"aperture",
"ethereum",
"etherjs",
"solidity",
"uniswap",
"viem"
],
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"contracts",
"dist",
"src/**/*.ts",
"!test",
"LICENSE",
"README.md"
],
"engines": {
"node": ">=18"
},
"scripts": {
"bind": "forge bind --alloy -b src/bindings/ --module --overwrite",
"build": "yarn typechain && tsc --build",
"clean": "tsc --build --clean && forge clean",
"compile": "forge build",
"test": "forge test",
"test:hardhat": "hardhat test",
"snapshot": "forge snapshot --isolate",
"snapshot:diff": "forge snapshot --diff --isolate",
"prettier": "prettier -c contracts/{*,**/*}.sol test/**/*.sol {src,test}/**/*.ts",
"prettier:fix": "prettier -w contracts/{*,**/*}.sol test/**/*.sol {src,test}/**/*.ts",
"typechain": "hardhat typechain"
},
"dependencies": {
"@aperture_finance/uni-v3-lib": "^3.0.3",
"@openzeppelin/contracts": "^5.0.2",
"ethers": "5.7.2",
"viem": "^2.8.4",
"zod": "^3.22.4"
},
"devDependencies": {
"@ethersproject/abi": "5.7.0",
"@ethersproject/providers": "5.7.2",
"@nomicfoundation/hardhat-foundry": "^1.1.2",
"@nomiclabs/hardhat-ethers": "^2.2.3",
"@typechain/ethers-v5": "^11.1.2",
"@typechain/hardhat": "^9.1.0",
"@types/chai": "^4.3.19",
"@types/mocha": "^10.0.7",
"@types/node": "^22.5.1",
"@uniswap/v3-sdk": "^3.13.1",
"chai": "^4.4.1",
"hardhat": "^2.22.9",
"mocha": "^10.7.3",
"prettier": "^3.3.3",
"prettier-plugin-solidity": "^1.4.1",
"ts-node": "^10.9.2",
"typechain": "^8.3.2",
"typescript": "^5.5.4"
},
"prettier": {
"plugins": [
"prettier-plugin-solidity"
],
"endOfLine": "lf",
"printWidth": 120
},
"packageManager": "[email protected]+sha512.a6b2f7906b721bba3d67d4aff083df04dad64c399707841b7acf00f6b133b7ac24255f2652fa22ae3534329dc6180534e98d17432037ff6fd140556e2bb3137e"
}