-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
46 lines (46 loc) · 1.82 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
{
"name": "redprint-forge",
"description": "A developer-friendly framework/library in solidity to modify & deploy OPStack ’s contracts in a modular style.",
"version": "1.0.0",
"homepage": "https://github.com/Ratimon/redprint-forge#readme",
"keywords": [
"blockchain",
"ethereum",
"library",
"smart-contracts",
"solidity"
],
"files": [
"script/",
"src/",
"test/",
"LICENSE",
"README.md",
"foundry.toml",
"remappings.txt",
"LICENSE"
],
"license": "MIT",
"repository": "github:Ratimon/redprint-forge",
"author": {
"name": "Rati Montreewat",
"url": "https://github.com/Ratimon/redprint-forge"
},
"scripts": {
"---------------------- USER WORKFLOW ----------------------": "",
"postinstall": "forge install --no-git openzeppelin-4_7_3=openzeppelin/[email protected] openzeppelin-upgradeable-4_7_3=OpenZeppelin/[email protected] foundry-rs/[email protected] safe-global/[email protected] ethereum-optimism/lib-keccak Vectorized/[email protected] || echo ''",
"---------------------- DEV WORKFLOW ----------------------": "",
"prepare": "rm -rf lib/ && set-defaults .vscode && forge install --no-git openzeppelin-4_7_3=openzeppelin/[email protected] openzeppelin-upgradeable-4_7_3=OpenZeppelin/[email protected] foundry-rs/[email protected] safe-global/[email protected] ethereum-optimism/lib-keccak Vectorized/[email protected] || echo '' ",
"build": "forge build",
"clean": "rm -rf cache out",
"test": "forge test"
},
"devDependencies": {
"@openzeppelin/contracts": "v4.9.4",
"@openzeppelin/contracts-upgradeable": "v4.9.4",
"solady": "0.0.158",
"solmate": "v6",
"forge-std": "github:foundry-rs/forge-std#v1.8.1",
"set-defaults": "^0.0.2"
}
}