-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
42 lines (42 loc) · 1.27 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
{
"name": "@cosmos/sp1-ics07-tendermint",
"description": "This is a zero knowledge IBC tendermint light client written using SP1 and ibc-rs (WIP)",
"version": "1.0.0",
"author": {
"name": "srdtrk",
"url": "https://github.com/srdtrk"
},
"dependencies": {
"@openzeppelin/contracts": "^5.1.0",
"sp1-contracts": "github:succinctlabs/sp1-contracts#275691af9bfaf67158f6df1f4c3c1646eb03eed0",
"solidity-ibc": "github:cosmos/solidity-ibc-eureka#e120d3168bbbde043e3c4a64c43ffebb36766c65"
},
"devDependencies": {
"forge-std": "github:foundry-rs/forge-std#v1.9.4",
"solhint": "^5.0.3",
"@defi-wonderland/natspec-smells": "^1.1.5"
},
"keywords": [
"blockchain",
"ethereum",
"forge",
"foundry",
"smart-contracts",
"solidity",
"template",
"ibc",
"cosmos",
"tendermint",
"light-client"
],
"private": true,
"scripts": {
"clean": "rm -rf contracts/cache contracts/out",
"build": "forge build",
"lint": "bun run lint:sol",
"lint:sol": "forge fmt --check && bun solhint -w 0 -c .solhint.json 'contracts/**/*.sol'",
"test": "forge test",
"test:coverage": "forge coverage",
"test:coverage:report": "forge coverage --report lcov && genhtml lcov.info --branch-coverage --output-dir coverage"
}
}