-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 857 Bytes
/
package.json
File metadata and controls
37 lines (37 loc) · 857 Bytes
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
{
"name": "@vechain/vebetterdao-relayer-node",
"version": "1.1.0",
"description": "Standalone relayer node for VeBetterDAO auto-voting and reward claiming",
"main": "dist/index.js",
"license": "MIT",
"bin": {
"vbd-relayer": "dist/index.js"
},
"files": [
"dist"
],
"scripts": {
"build": "tsc",
"start": "node dist/index.js",
"dev": "ts-node src/index.ts",
"prepublishOnly": "npm run build",
"publish:npm": "npm publish --access public"
},
"engines": {
"node": ">=20"
},
"dependencies": {
"@vechain/sdk-core": "2.0.7",
"@vechain/sdk-network": "2.0.7",
"@vechain/vebetterdao-contracts": "8.4.0",
"chalk": "^4.1.2"
},
"devDependencies": {
"@types/node": "^20.0.0",
"ts-node": "^10.9.0",
"typescript": "^5.0.0"
},
"overrides": {
"adm-zip@<=0.5.2": "0.5.2"
}
}