-
Notifications
You must be signed in to change notification settings - Fork 47
Expand file tree
/
Copy pathpackage.json
More file actions
72 lines (72 loc) · 2.54 KB
/
package.json
File metadata and controls
72 lines (72 loc) · 2.54 KB
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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
{
"name": "@consensus-shipyard/ipc-contracts",
"version": "1.0.0-alpha.1",
"description": "This repository includes the reference implementation of all the actors (i.e. smart contracts) responsible for the operation of the IPC (i.e. Inter-Planetary Consensus) protocol. These actors are written in Solidity and target FileCoin’s FEVM.",
"author": "ConsensusLab, Protocol Labs, Filecoin Core Devs, Limechain",
"packageManager": "[email protected]",
"directories": {
"lib": "lib",
"test": "test"
},
"files": [
"contracts",
"sdk",
"README.md",
"LICENSE-*"
],
"scripts": {
"prepack": "sh -c 'cp ../LICENSE-* .'",
"preinstall": "git submodule update --init --recursive || true",
"postpack": "sh -c 'rm -f LICENSE-*'"
},
"repository": {
"type": "git",
"url": "git+https://github.com/consensus-shipyard/ipc.git"
},
"publishConfig": {
"registry": "https://npm.pkg.github.com"
},
"license": "MIT OR Apache-2.0",
"bugs": {
"url": "https://github.com/consensus-shipyard/ipc/issues"
},
"homepage": "https://github.com/consensus-shipyard/ipc/",
"devDependencies": {
"@nomicfoundation/hardhat-foundry": "^1.0.1",
"@nomiclabs/hardhat-ethers": "^2.2.3",
"@typechain/ethers-v5": "^11.1.2",
"@typechain/hardhat": "^7.0.0",
"@types/lodash": "^4.17.7",
"dotenv": "^16.0.1",
"ethers": "^5.7.0",
"fs-extra": "^11.2.0",
"ganache": "^7.9.2",
"hardhat": "^2.22.5",
"hardhat-contract-sizer": "^2.6.1",
"hardhat-deploy": "^0.12.4",
"hardhat-deploy-ethers": "^0.3.0-beta.13",
"hardhat-storage-layout-changes": "^0.1.2",
"husky": "^8.0.3",
"lint-staged": "^15.0.2",
"prettier": "^3.3.2",
"prettier-plugin-solidity": "^1.3.1",
"solhint": "^3.5.1",
"solhint-plugin-prettier": "^0.1.0",
"ts-node": ">=8.0.0",
"typechain": "^8.3.2",
"typescript": ">=4.5.0",
"utf-8-validate": "^5.0.10"
},
"dependencies": {
"@openzeppelin/contracts": "5.0.2",
"@openzeppelin/contracts-upgradeable": "5.0.2",
"@solidity-parser/parser": "^0.18.0",
"diamond-util": "^1.1.1",
"elliptic-curve-solidity": "github:witnet/elliptic-curve-solidity#3475478",
"fevmate": "github:wadealexc/fevmate#6a80e98",
"lodash": "^4.17.21"
},
"lint-staged": {
"*.{js,jsx,ts,tsx,json,css,md,sol}": "prettier --write"
}
}