-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
48 lines (48 loc) · 1.16 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
{
"name": "@pendle/core-v2",
"description": "Core smart contracts of Pendle Protocol.",
"license": "BUSL-1.1",
"version": "0.5.0",
"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"
],
"engines": {
"node": ">=10"
},
"devDependencies": {
"@typechain/ethers-v5": "^9.0.0",
"@typechain/hardhat": "^4.0.0",
"hardhat": "^2.9.3",
"hardhat-contract-sizer": "^2.5.1",
"prettier": "^2.6.2",
"prettier-plugin-solidity": "^1.0.0-beta.19",
"solc": "^0.8.13",
"solhint": "^3.3.7",
"ts-node": "^10.7.0",
"typechain": "^8.0.0",
"typescript": "^4.6.3"
},
"scripts": {
"compile": "yarn hardhat compile",
"size": "yarn hardhat size-contracts",
"clean": "yarn hardhat clean",
"fcompile": "yarn clean && yarn compile"
},
"packageManager": "[email protected]",
"dependencies": {
"@openzeppelin/contracts": "^4.5.0",
"@openzeppelin/contracts-upgradeable": "^4.5.2",
"@rari-capital/solmate": "^6.2.0"
}
}