-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
48 lines (48 loc) · 1.32 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": "@cavalre/contracts",
"version": "0.1.0",
"description": "",
"homepage": "",
"bugs": "",
"license": "MIT",
"author": "CavalRe",
"exports": {
"./ERC20/": "./contracts/ERC20/",
"./ERC4626/": "./contracts/ERC4626/",
"./Initializable/": "./contracts/Initializable/",
"./Multitoken/": "./contracts/Mulitoken/",
"./libraries/": "./contracts/libraries/",
"./ReentrancyGuard/": "./contracts/ReentrancyGuard/",
"./router/": "./contracts/router/",
"./sentry/": "./contracts/sentry/",
"./tests/ERC20/": "./tests/ERC20/",
"./tests/Multitoken/": "./tests/Multitoken/",
"./tests/Router/": "./tests/Router/"
},
"files": [
"contracts/ERC20/",
"contracts/ERC4626/",
"contracts/Initializable/",
"contracts/Multitoken/",
"contracts/libraries/",
"contracts/ReentrancyGuard/",
"contracts/router/",
"contracts/sentry/",
"tests/ERC20/",
"tests/Multitoken/",
"tests/Router/Router.t.sol"
],
"repository": {
"type": "git",
"url": "https://github.com/CavalRe/cavalre-contracts.git"
},
"devDependencies": {
"ds-test": "github:dapphub/ds-test",
"forge-std": "github:foundry-rs/forge-std"
},
"dependencies": {
"@openzeppelin/contracts": "^5.0.2",
"@openzeppelin/contracts-upgradeable": "^5.0.2",
"solady": "^0.0.201"
}
}