-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.08 KB
/
Copy pathpackage.json
File metadata and controls
45 lines (45 loc) · 1.08 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
{
"name": "@gluwa/validator-rewards",
"version": "0.3.0",
"description": "CLI to list unpaid staking eras (in points) for a validator stash; works across legacy and paged-rewards runtimes.",
"license": "MIT",
"type": "commonjs",
"bin": {
"validator-rewards": "dist/cli.js"
},
"main": "dist/cli.js",
"files": [
"dist"
],
"scripts": {
"build": "tsc -p tsconfig.json",
"dev": "ts-node src/cli.ts",
"exec": "tsc && node dist/cli.js",
"prepublishOnly": "npm run build"
},
"dependencies": {
"@polkadot/api": "^16.1.1",
"dotenv": "^16.4.5",
"prompts": "^2.4.2"
},
"devDependencies": {
"@types/node": "^20.11.19",
"@types/prompts": "^2.4.9",
"ts-node": "^10.9.2",
"typescript": "^5.4.5"
},
"engines": {
"node": ">=18"
},
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "git+https://github.com/gluwa/validator-rewards.git"
},
"bugs": {
"url": "https://github.com/gluwa/validator-rewards/issues"
},
"homepage": "https://github.com/gluwa/validator-rewards#readme"
}