-
Notifications
You must be signed in to change notification settings - Fork 331
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 2.13 KB
/
package.json
File metadata and controls
62 lines (62 loc) · 2.13 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
{
"name": "@pythnetwork/pyth-evm-contract",
"version": "1.5.0",
"description": "",
"private": "true",
"devDependencies": {
"@types/chai": "^4.3.4",
"chai": "^4.2.0",
"mocha": "^8.2.1",
"prettier": "catalog:",
"prettier-plugin-solidity": "catalog:"
},
"scripts": {
"setup-foundry": "./setup-foundry.sh",
"setup": "pnpm run setup-foundry && pnpm run install-forge-deps",
"build": "forge build",
"test": "forge test",
"deploy": "forge script script/Deploy.s.sol --rpc-url testnet --broadcast",
"deploy-and-verify": "forge script script/Deploy.s.sol --rpc-url testnet --broadcast --verify",
"deploy-local": "ETHERSCAN_API_KEY= forge script script/Deploy.s.sol --slow --rpc-url local --broadcast -vvvv",
"install-forge-deps": "rm -rf lib/forge-std && forge install foundry-rs/forge-std@v1.7.6 --no-git",
"coverage": "./coverage.sh",
"test:format": "prettier --check .",
"fix:format": "prettier --write ."
},
"author": "",
"license": "Apache-2.0",
"dependencies": {
"@certusone/wormhole-sdk": "^0.9.22",
"@matterlabs/hardhat-zksync": "^1.1.0",
"@matterlabs/hardhat-zksync-deploy": "^0.6.6",
"@matterlabs/hardhat-zksync-solc": "^0.3.14",
"@nomad-xyz/excessively-safe-call": "^0.0.1-rc.1",
"@nomiclabs/hardhat-etherscan": "^3.1.7",
"@openzeppelin/contracts": "=4.8.1",
"@openzeppelin/contracts-upgradeable": "=4.8.1",
"@openzeppelin/hardhat-upgrades": "^1.22.1",
"@pythnetwork/contract-manager": "workspace:*",
"@pythnetwork/entropy-sdk-solidity": "workspace:*",
"@pythnetwork/pulse-sdk-solidity": "workspace:*",
"@pythnetwork/pyth-sdk-solidity": "workspace:*",
"@pythnetwork/xc-admin-common": "workspace:*",
"dotenv": "^10.0.0",
"elliptic": "^6.5.2",
"ethers": "^5.7.2",
"ganache": "^7.7.3",
"hardhat": "^2.12.5",
"jsonfile": "^4.0.0",
"lodash": "^4.17.21",
"solc": "0.8.4",
"ts-node": "catalog:",
"tsx": "catalog:",
"web3": "^1.2.2",
"web3-eth-abi": "^1.2.2",
"web3-utils": "^1.2.2",
"zksync-ethers": "^6.11.2",
"zksync-web3": "^0.13.4"
},
"engines": {
"node": ">=22.14.0"
}
}