-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
110 lines (110 loc) · 3.37 KB
/
package.json
File metadata and controls
110 lines (110 loc) · 3.37 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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
{
"name": "reputation-cli",
"version": "0.0.15",
"description": "",
"main": "./dist/cli-with-suppress.js",
"type": "module",
"sideEffects": false,
"bin": {
"reputation-cli": "./dist/cli-with-suppress.js"
},
"files": [
"dist"
],
"scripts": {
"build": "node build.js",
"install:local": "npm uninstall -g reputation-cli && npm i && npm run build && npm install -g .",
"dev": "node dist/cli-with-suppress.js",
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": [],
"author": "Tushar Ojha",
"license": "ISC",
"devDependencies": {
"@types/chalk": "^2.2.0",
"@types/figlet": "^1.5.8",
"@types/inquirer": "^8.0.0",
"@types/node": "^20.12.7",
"@types/shelljs": "^0.8.15",
"esbuild": "^0.25.0",
"esbuild-node-externals": "^1.18.0"
},
"dependencies": {
"@polkadot/api": "13.2.1",
"@polkadot/util-crypto": "13.1.1",
"@truenetworkio/sdk": "^0.0.17",
"chalk": "^4.1.2",
"child_process": "^1.0.2",
"commander": "^12.0.0",
"figlet": "^1.7.0",
"fs": "^0.0.1-security",
"inquirer": "8.0.0",
"loading-cli": "^1.1.2",
"path": "^0.12.7",
"shelljs": "^0.8.5",
"strip-json-comments": "^5.0.1",
"ts-node": "^10.9.2",
"typescript": "^5.6.3",
"util": "^0.12.5"
},
"overrides": {
"@polkadot/api": "13.2.1",
"@polkadot/api-augment": "13.2.1",
"@polkadot/api-base": "13.2.1",
"@polkadot/api-contract": "13.2.1",
"@polkadot/api-derive": "13.2.1",
"@polkadot/hw-ledger": "13.1.1",
"@polkadot/keyring": "13.1.1",
"@polkadot/networks": "13.1.1",
"@polkadot/phishing": "0.23.6",
"@polkadot/rpc-augment": "13.2.1",
"@polkadot/rpc-core": "13.2.1",
"@polkadot/rpc-provider": "13.2.1",
"@polkadot/types": "13.2.1",
"@polkadot/types-augment": "13.2.1",
"@polkadot/types-codec": "13.2.1",
"@polkadot/types-create": "13.2.1",
"@polkadot/types-known": "13.2.1",
"@polkadot/types-support": "13.2.1",
"@polkadot/util": "13.1.1",
"@polkadot/util-crypto": "13.1.1",
"@polkadot/wasm-crypto": "7.3.2",
"@polkadot/x-bigint": "13.1.1",
"@polkadot/x-fetch": "13.1.1",
"@polkadot/x-global": "13.1.1",
"@polkadot/x-randomvalues": "13.1.1",
"@polkadot/x-textdecoder": "13.1.1",
"@polkadot/x-textencoder": "13.1.1",
"@polkadot/x-ws": "13.1.1"
},
"resolutions": {
"@polkadot/api": "13.2.1",
"@polkadot/api-augment": "13.2.1",
"@polkadot/api-base": "13.2.1",
"@polkadot/api-contract": "13.2.1",
"@polkadot/api-derive": "13.2.1",
"@polkadot/hw-ledger": "13.1.1",
"@polkadot/keyring": "13.1.1",
"@polkadot/networks": "13.1.1",
"@polkadot/phishing": "0.23.6",
"@polkadot/rpc-augment": "13.2.1",
"@polkadot/rpc-core": "13.2.1",
"@polkadot/rpc-provider": "13.2.1",
"@polkadot/types": "13.2.1",
"@polkadot/types-augment": "13.2.1",
"@polkadot/types-codec": "13.2.1",
"@polkadot/types-create": "13.2.1",
"@polkadot/types-known": "13.2.1",
"@polkadot/types-support": "13.2.1",
"@polkadot/util": "13.1.1",
"@polkadot/util-crypto": "13.1.1",
"@polkadot/wasm-crypto": "7.3.2",
"@polkadot/x-bigint": "13.1.1",
"@polkadot/x-fetch": "13.1.1",
"@polkadot/x-global": "13.1.1",
"@polkadot/x-randomvalues": "13.1.1",
"@polkadot/x-textdecoder": "13.1.1",
"@polkadot/x-textencoder": "13.1.1",
"@polkadot/x-ws": "13.1.1"
}
}