-
Notifications
You must be signed in to change notification settings - Fork 51
/
package.json
53 lines (53 loc) · 1.31 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
{
"name": "@pendle/core-v2",
"description": "Core smart contracts of Pendle Protocol.",
"license": "BUSL-1.1",
"version": "5.4.1",
"homepage": "https://pendle.finance",
"keywords": [
"pendle",
"core",
"v2"
],
"repository": {
"type": "git",
"url": "https://github.com/pendle-finance/pendle-core-internal-v2"
},
"files": [
"contracts",
"typechain-types",
"build/artifacts/contracts/",
"deployments/"
],
"engines": {
"node": ">=10"
},
"devDependencies": {
"@typechain/ethers-v5": "^9.0.0",
"@typechain/hardhat": "^4.0.0",
"hardhat": "^2.19.2",
"hardhat-contract-sizer": "^2.10.0",
"prettier": "^3.1.1",
"prettier-plugin-solidity": "^1.2.0",
"solc": "^0.8.23-fixed",
"solhint": "^4.0.0",
"ts-node": "^10.9.2",
"typechain": "^8.3.2",
"typescript": "^5.3.3"
},
"scripts": {
"compile": "yarn hardhat compile",
"size": "yarn hardhat size-contracts",
"clean": "yarn hardhat clean",
"fcompile": "yarn clean && yarn compile",
"format": "yarn prettier -w contracts/**/*",
"prepack": "yarn compile"
},
"packageManager": "[email protected]",
"dependencies": {
"@chainlink/contracts": "^0.8.0",
"@openzeppelin/contracts": "4.9.3",
"@openzeppelin/contracts-upgradeable": "4.9.3",
"ethers": "^5.7.2"
}
}