-
Notifications
You must be signed in to change notification settings - Fork 69
/
Copy pathpackage.json
38 lines (38 loc) · 1003 Bytes
/
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
{
"author": "Jaco Greeff <[email protected]>",
"bugs": "https://github.com/polkadot-js/tools/issues",
"description": "A simple monitor via RPC",
"engines": {
"node": ">=18"
},
"homepage": "https://github.com/polkadot-js/tools/tree/master/packages/monitor-rpc#readme",
"license": "Apache-2.0",
"name": "@polkadot/monitor-rpc",
"repository": {
"directory": "packages/monitor-rpc",
"type": "git",
"url": "https://github.com/polkadot-js/tools.git"
},
"sideEffects": false,
"type": "module",
"version": "0.62.1",
"main": "index.js",
"bin": {
"polkadot-js-monitor": "./runcli.mjs"
},
"dependencies": {
"@polkadot/api": "^15.2.1",
"@polkadot/types": "^15.2.1",
"@polkadot/util": "^13.3.1",
"koa": "^2.14.2",
"koa-route": "^3.2.0",
"tslib": "^2.8.1",
"yargs": "^17.7.2"
},
"devDependencies": {
"@types/koa": "^2.13.12",
"@types/koa-route": "^3.2.8",
"@types/node": "^22.10.5",
"@types/yargs": "^17.0.33"
}
}