30 lines
556 B
JSON
30 lines
556 B
JSON
|
|
{
|
||
|
|
"name": "ccip-relay-service",
|
||
|
|
"version": "1.0.0",
|
||
|
|
"description": "CCIP Relay Service for cross-chain message delivery",
|
||
|
|
"main": "index.js",
|
||
|
|
"type": "module",
|
||
|
|
"scripts": {
|
||
|
|
"start": "node index.js",
|
||
|
|
"dev": "node --watch index.js",
|
||
|
|
"test": "node test.js"
|
||
|
|
},
|
||
|
|
"keywords": [
|
||
|
|
"ccip",
|
||
|
|
"relay",
|
||
|
|
"cross-chain",
|
||
|
|
"bridge"
|
||
|
|
],
|
||
|
|
"author": "",
|
||
|
|
"license": "MIT",
|
||
|
|
"dependencies": {
|
||
|
|
"ethers": "^6.9.0",
|
||
|
|
"dotenv": "^16.3.1",
|
||
|
|
"winston": "^3.11.0"
|
||
|
|
},
|
||
|
|
"devDependencies": {
|
||
|
|
"@types/node": "^20.10.0"
|
||
|
|
}
|
||
|
|
}
|
||
|
|
|