-
Notifications
You must be signed in to change notification settings - Fork 17
/
package.json
32 lines (32 loc) · 1.07 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
{
"name": "hello-wormhole",
"version": "1.0.0",
"main": "index.js",
"repository": "[email protected]:wormhole-foundation/hello-wormhole.git",
"author": "Wormhole Contributors",
"license": "Apache 2.0",
"scripts": {
"main": "ts-node ./ts-scripts/main.ts",
"deploy": "npm run build; ts-node ./ts-scripts/main.ts deploy",
"build": "npm install; forge build; npm run typechain",
"typechain": "typechain --target ethers-v5 --out-dir ./ts-scripts/ethers-contracts ./out/**/*.json",
"test": "jest --config ./ts-scripts/jest.config.js",
"status": "ts-node ./ts-scripts/main.ts --getStatus",
"clean": "rm -rf ts-scripts/ethers-contracts/; rm -rf out/;"
},
"dependencies": {
"@certusone/wormhole-sdk": "^0.10.5",
"@improbable-eng/grpc-web-node-http-transport": "^0.15.0",
"@typechain/ethers-v5": "^11.0.0",
"ethers": "^5",
"ts-node": "^10.9.1",
"typechain": "^8.2.0"
},
"devDependencies": {
"@types/jest": "^29.5.2",
"@types/node": "^20.2.5",
"jest": "^29.5.0",
"ts-jest": "^29.1.0",
"typescript": "^5.1.3"
}
}