31 lines
636 B
JSON
31 lines
636 B
JSON
|
|
{
|
||
|
|
"name": "state-anchoring-service",
|
||
|
|
"version": "1.0.0",
|
||
|
|
"description": "Off-chain service to anchor ChainID 138 state proofs to MainnetTether",
|
||
|
|
"main": "dist/index.js",
|
||
|
|
"scripts": {
|
||
|
|
"build": "tsc",
|
||
|
|
"start": "node dist/index.js",
|
||
|
|
"dev": "ts-node src/index.ts",
|
||
|
|
"test": "jest"
|
||
|
|
},
|
||
|
|
"keywords": [
|
||
|
|
"blockchain",
|
||
|
|
"state-proof",
|
||
|
|
"ethereum",
|
||
|
|
"mainnet",
|
||
|
|
"chainid-138"
|
||
|
|
],
|
||
|
|
"author": "",
|
||
|
|
"license": "MIT",
|
||
|
|
"dependencies": {
|
||
|
|
"ethers": "^6.9.0",
|
||
|
|
"dotenv": "^16.3.1"
|
||
|
|
},
|
||
|
|
"devDependencies": {
|
||
|
|
"@types/node": "^20.10.0",
|
||
|
|
"typescript": "^5.3.3",
|
||
|
|
"ts-node": "^10.9.2"
|
||
|
|
}
|
||
|
|
}
|