-
Notifications
You must be signed in to change notification settings - Fork 14
/
package.json
46 lines (46 loc) · 1.15 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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
{
"name": "@zekemostov/staking-payouts",
"version": "1.6.0",
"description": "CLI to make staking payout transactions for Substrate FRAME-based chains",
"bin": {
"payouts": "build/index.js"
},
"repository": "https://github.com/emostov/staking-payouts.git",
"author": "emostov <z.mostov@gmail.com>",
"bugs": {
"url": "https://github.com/emostov/staking-payouts/issues"
},
"engines": {
"node": ">=14"
},
"files": [
"build"
],
"homepage": "https://github.com/emostov/staking-payouts#readme",
"license": "APACHE-2.0",
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org"
},
"scripts": {
"deploy": "rm -rf build/ && yarn build && yarn publish && git push --tags && git push",
"lint": "eslint",
"build": "tsc -p tsconfig.json"
},
"devDependencies": {
"@substrate/dev": "^0.7.1",
"@types/node": "^20.14.10",
"@types/yargs": "^17.0.32",
"typescript": "^5.5.3"
},
"dependencies": {
"@polkadot/api": "^12.2.1",
"ansi-regex": "^6.0.1",
"winston": "^3.13.1",
"yargs": "^17.7.2"
},
"resolutions": {
"ansi-regex": "^5.0.1",
"tmpl": "1.0.5"
}
}