-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
51 lines (51 loc) · 1.98 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
{
"name": "od-seaport-zone",
"version": "1.0.0",
"private": true,
"description": "Seaport Zone SIP-15 and EIP-7496",
"homepage": "https://opendollar.com/",
"repository": {
"type": "git",
"url": "git+https://github.com/open-dollar/od-seaport-zone.git"
},
"license": "GNU AGPL",
"author": "OpenFi Foundation",
"contributors": [
"cupOJoseph",
"stephankmin",
"pi0neerpat (https://github.com/pi0neerpat)",
"daopunk (https://github.com/daopunk)",
"MrDeadce11 (https://github.com/MrDeadCe11)"
],
"scripts": {
"build": "forge build && yarn generate-types",
"coverage": "forge coverage",
"create-listing": "tsx script/createListing.ts",
"fulfill": "tsx script/fulfillSIP15Order.ts",
"lint:check": "yarn lint:sol && forge fmt --check",
"lint:fix": "sort-package-json && forge fmt && yarn lint:sol --fix",
"lint:sol": "cross-env solhint 'src/**/*.sol' 'test/**/*.sol'",
"test": "FOUNDRY_FUZZ_RUNS=64 FOUNDRY_FUZZ_MAX_TEST_REJECTS=1000 forge test -vvv --ffi ",
"test:coverage": "forge coverage --report lcov && lcov --ignore-errors unused --remove lcov.info 'node_modules/*' 'script/*' 'test/*' 'src/contracts/for-test/*' 'src/libraries/*' -o lcov.info.pruned && mv lcov.info.pruned lcov.info && genhtml -o coverage-report lcov.info",
"generate-types": "npx typechain --target ethers-v6 'out/Vault721.sol/Vault721.json' 'out/Vault721Adapter.sol/Vault721Adapter.json' 'out/EncodeSubstandard5ForEthers.sol/EncodeSubstandard5ForEthers.json' --show-stack-traces"
},
"dependencies": {
"@opendollar/contracts": "^0.0.0-c2beba2",
"@openzeppelin/contracts": "^4.9.6"
},
"devDependencies": {
"@typechain/ethers-v6": "^0.5.1",
"cross-env": "^7.0.3",
"dotenv": "^16.4.5",
"ethers": "^6.13.0",
"opensea-js": "^7.1.9",
"solhint": "^4.5.2",
"solhint-plugin-defi-wonderland": "^1.1.3",
"sort-package-json": "^2.8.0",
"tsx": "^4.15.2",
"typechain": "^8.3.2"
},
"engines": {
"node": ">=20.0.0"
}
}