Epikcoder commited on
Commit
fc22737
·
1 Parent(s): 4786489
Files changed (3) hide show
  1. api/index.js +21 -31
  2. package-lock.json +2427 -1
  3. package.json +4 -1
api/index.js CHANGED
@@ -3,11 +3,13 @@ config()
3
  import express from 'express'
4
  import cors from 'cors'
5
  import axios from 'axios'
6
- import fs from 'fs'
 
7
  const app = express()
8
  const port = process.env.SERVER_PORT || process.env.SERVER_PORT || 7860
9
  // import {exec} from 'child_process'
10
- const dat2a = JSON.parse(fs.readFileSync(import.meta.dirname + "/anu.json", 'utf8'))
 
11
  app.use(cors())
12
  app.get("/video", async(req,res) => {
13
  let c = "" //get random data
@@ -76,42 +78,30 @@ app.get("/api", (req,res) => {
76
  })
77
 
78
  app.get("/", async (req, res) => {
79
- // exec('tree -I node_modules', (err, stdout, stderr) => {
80
- // if (err) {
81
- // // node couldn't execute the command
82
- // return;
83
- // }
84
-
85
- // // the *entire* stdout and stderr (buffered)
86
- // res.send(`stdout: ${stdout}`);
87
- // console.log(`stderr: ${stderr}`);
88
- // });
89
- // const arr = []
90
- // fs.readdir('api', (err, files) => {
91
- // if (err) {
92
- // console.error('Error reading directory:', err);
93
- // return;
94
- // }
95
-
96
- // // Log the list of filenames
97
- // console.log('Files in the current directory:');
98
- // files.forEach(file => {
99
- // arr.push(file)
100
- // // res.write(file + '\n');
101
-
102
- // // Optional: force flushing the data to the client to avoid buffering
103
- // // res.flush();
104
- // });
105
- // res.send(arr)
106
- // });
107
  const murl = req.headers["x-vercel-deployment-url"] || req.headers.referrer || req.headers.host
108
- // res.send(req.headers)
109
  res.json({madeBy: "@EpikCoder", mainurl: murl, routes: [
110
  murl + "/image",
111
  murl + "/api",
112
  murl + "/video"
113
  ]})
114
  })
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
115
 
116
  app.listen(port, () => {
117
  console.log(`Example app listening on port ${port}`)
 
3
  import express from 'express'
4
  import cors from 'cors'
5
  import axios from 'axios'
6
+ import { rateLimit } from 'express-rate-limit'
7
+
8
  const app = express()
9
  const port = process.env.SERVER_PORT || process.env.SERVER_PORT || 7860
10
  // import {exec} from 'child_process'
11
+ const link_twt = "https://raw.githubusercontent.com/Epikcoder/aru/main/twt.json"
12
+ let dat2a = await axios.get(link_twt).then(r => r.data)
13
  app.use(cors())
14
  app.get("/video", async(req,res) => {
15
  let c = "" //get random data
 
78
  })
79
 
80
  app.get("/", async (req, res) => {
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
81
  const murl = req.headers["x-vercel-deployment-url"] || req.headers.referrer || req.headers.host
 
82
  res.json({madeBy: "@EpikCoder", mainurl: murl, routes: [
83
  murl + "/image",
84
  murl + "/api",
85
  murl + "/video"
86
  ]})
87
  })
88
+ // app.use("/updb", rateLimit({
89
+ // windowMs: 15 * 60 * 1000, // 15 minutes
90
+ // limit: 100, // Limit each IP to 100 requests per `window` (here, per 15 minutes).
91
+ // standardHeaders: 'draft-7', // draft-6: `RateLimit-*` headers; draft-7: combined `RateLimit` header
92
+ // legacyHeaders: false, // Disable the `X-RateLimit-*` headers.
93
+ // // store: ... , // Redis, Memcached, etc. See below.
94
+ // }))
95
+ app.get("/updb", async(req,res)=> {
96
+ const {data} = await axios.get(link_twt)
97
+ if(data.length != dat2a.length) {
98
+ dat2a = data;
99
+ return res.send("updb")
100
+ } else{
101
+
102
+ res.send("up to date")
103
+ }
104
+ })
105
 
106
  app.listen(port, () => {
107
  console.log(`Example app listening on port ${port}`)
package-lock.json CHANGED
@@ -13,7 +13,10 @@
13
  "cors": "^2.8.5",
14
  "dotenv": "^16.4.5",
15
  "express": "^4.19.2",
16
- "fs": "^0.0.1-security"
 
 
 
17
  }
18
  },
19
  "node_modules/accepts": {
@@ -298,6 +301,20 @@
298
  "node": ">= 0.10.0"
299
  }
300
  },
 
 
 
 
 
 
 
 
 
 
 
 
 
 
301
  "node_modules/finalhandler": {
302
  "version": "1.2.0",
303
  "resolved": "https://registry.npmjs.org/finalhandler/-/finalhandler-1.2.0.tgz",
@@ -464,6 +481,14 @@
464
  "node": ">= 0.8"
465
  }
466
  },
 
 
 
 
 
 
 
 
467
  "node_modules/iconv-lite": {
468
  "version": "0.4.24",
469
  "resolved": "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.4.24.tgz",
@@ -552,6 +577,2407 @@
552
  "node": ">= 0.6"
553
  }
554
  },
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
555
  "node_modules/object-assign": {
556
  "version": "4.1.1",
557
  "resolved": "https://registry.npmjs.org/object-assign/-/object-assign-4.1.1.tgz",
 
13
  "cors": "^2.8.5",
14
  "dotenv": "^16.4.5",
15
  "express": "^4.19.2",
16
+ "express-rate-limit": "^7.2.0",
17
+ "fs": "^0.0.1-security",
18
+ "i": "^0.3.7",
19
+ "npm": "^10.8.0"
20
  }
21
  },
22
  "node_modules/accepts": {
 
301
  "node": ">= 0.10.0"
302
  }
303
  },
304
+ "node_modules/express-rate-limit": {
305
+ "version": "7.2.0",
306
+ "resolved": "https://registry.npmjs.org/express-rate-limit/-/express-rate-limit-7.2.0.tgz",
307
+ "integrity": "sha512-T7nul1t4TNyfZMJ7pKRKkdeVJWa2CqB8NA1P8BwYaoDI5QSBZARv5oMS43J7b7I5P+4asjVXjb7ONuwDKucahg==",
308
+ "engines": {
309
+ "node": ">= 16"
310
+ },
311
+ "funding": {
312
+ "url": "https://github.com/sponsors/express-rate-limit"
313
+ },
314
+ "peerDependencies": {
315
+ "express": "4 || 5 || ^5.0.0-beta.1"
316
+ }
317
+ },
318
  "node_modules/finalhandler": {
319
  "version": "1.2.0",
320
  "resolved": "https://registry.npmjs.org/finalhandler/-/finalhandler-1.2.0.tgz",
 
481
  "node": ">= 0.8"
482
  }
483
  },
484
+ "node_modules/i": {
485
+ "version": "0.3.7",
486
+ "resolved": "https://registry.npmjs.org/i/-/i-0.3.7.tgz",
487
+ "integrity": "sha512-FYz4wlXgkQwIPqhzC5TdNMLSE5+GS1IIDJZY/1ZiEPCT2S3COUVZeT5OW4BmW4r5LHLQuOosSwsvnroG9GR59Q==",
488
+ "engines": {
489
+ "node": ">=0.4"
490
+ }
491
+ },
492
  "node_modules/iconv-lite": {
493
  "version": "0.4.24",
494
  "resolved": "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.4.24.tgz",
 
577
  "node": ">= 0.6"
578
  }
579
  },
580
+ "node_modules/npm": {
581
+ "version": "10.8.0",
582
+ "resolved": "https://registry.npmjs.org/npm/-/npm-10.8.0.tgz",
583
+ "integrity": "sha512-wh93uRczgp7HDnPMiLXcCkv2hagdJS0zJ9KT/31d0FoXP02+qgN2AOwpaW85fxRWkinl2rELfPw+CjBXW48/jQ==",
584
+ "bundleDependencies": [
585
+ "@isaacs/string-locale-compare",
586
+ "@npmcli/arborist",
587
+ "@npmcli/config",
588
+ "@npmcli/fs",
589
+ "@npmcli/map-workspaces",
590
+ "@npmcli/package-json",
591
+ "@npmcli/promise-spawn",
592
+ "@npmcli/redact",
593
+ "@npmcli/run-script",
594
+ "@sigstore/tuf",
595
+ "abbrev",
596
+ "archy",
597
+ "cacache",
598
+ "chalk",
599
+ "ci-info",
600
+ "cli-columns",
601
+ "fastest-levenshtein",
602
+ "fs-minipass",
603
+ "glob",
604
+ "graceful-fs",
605
+ "hosted-git-info",
606
+ "ini",
607
+ "init-package-json",
608
+ "is-cidr",
609
+ "json-parse-even-better-errors",
610
+ "libnpmaccess",
611
+ "libnpmdiff",
612
+ "libnpmexec",
613
+ "libnpmfund",
614
+ "libnpmhook",
615
+ "libnpmorg",
616
+ "libnpmpack",
617
+ "libnpmpublish",
618
+ "libnpmsearch",
619
+ "libnpmteam",
620
+ "libnpmversion",
621
+ "make-fetch-happen",
622
+ "minimatch",
623
+ "minipass",
624
+ "minipass-pipeline",
625
+ "ms",
626
+ "node-gyp",
627
+ "nopt",
628
+ "normalize-package-data",
629
+ "npm-audit-report",
630
+ "npm-install-checks",
631
+ "npm-package-arg",
632
+ "npm-pick-manifest",
633
+ "npm-profile",
634
+ "npm-registry-fetch",
635
+ "npm-user-validate",
636
+ "p-map",
637
+ "pacote",
638
+ "parse-conflict-json",
639
+ "proc-log",
640
+ "qrcode-terminal",
641
+ "read",
642
+ "semver",
643
+ "spdx-expression-parse",
644
+ "ssri",
645
+ "supports-color",
646
+ "tar",
647
+ "text-table",
648
+ "tiny-relative-date",
649
+ "treeverse",
650
+ "validate-npm-package-name",
651
+ "which",
652
+ "write-file-atomic"
653
+ ],
654
+ "workspaces": [
655
+ "docs",
656
+ "smoke-tests",
657
+ "mock-globals",
658
+ "mock-registry",
659
+ "workspaces/*"
660
+ ],
661
+ "dependencies": {
662
+ "@isaacs/string-locale-compare": "^1.1.0",
663
+ "@npmcli/arborist": "^7.5.2",
664
+ "@npmcli/config": "^8.3.2",
665
+ "@npmcli/fs": "^3.1.1",
666
+ "@npmcli/map-workspaces": "^3.0.6",
667
+ "@npmcli/package-json": "^5.1.0",
668
+ "@npmcli/promise-spawn": "^7.0.2",
669
+ "@npmcli/redact": "^2.0.0",
670
+ "@npmcli/run-script": "^8.1.0",
671
+ "@sigstore/tuf": "^2.3.3",
672
+ "abbrev": "^2.0.0",
673
+ "archy": "~1.0.0",
674
+ "cacache": "^18.0.3",
675
+ "chalk": "^5.3.0",
676
+ "ci-info": "^4.0.0",
677
+ "cli-columns": "^4.0.0",
678
+ "fastest-levenshtein": "^1.0.16",
679
+ "fs-minipass": "^3.0.3",
680
+ "glob": "^10.3.15",
681
+ "graceful-fs": "^4.2.11",
682
+ "hosted-git-info": "^7.0.2",
683
+ "ini": "^4.1.2",
684
+ "init-package-json": "^6.0.3",
685
+ "is-cidr": "^5.0.5",
686
+ "json-parse-even-better-errors": "^3.0.2",
687
+ "libnpmaccess": "^8.0.6",
688
+ "libnpmdiff": "^6.1.2",
689
+ "libnpmexec": "^8.1.1",
690
+ "libnpmfund": "^5.0.10",
691
+ "libnpmhook": "^10.0.5",
692
+ "libnpmorg": "^6.0.6",
693
+ "libnpmpack": "^7.0.2",
694
+ "libnpmpublish": "^9.0.8",
695
+ "libnpmsearch": "^7.0.5",
696
+ "libnpmteam": "^6.0.5",
697
+ "libnpmversion": "^6.0.2",
698
+ "make-fetch-happen": "^13.0.1",
699
+ "minimatch": "^9.0.4",
700
+ "minipass": "^7.1.1",
701
+ "minipass-pipeline": "^1.2.4",
702
+ "ms": "^2.1.2",
703
+ "node-gyp": "^10.1.0",
704
+ "nopt": "^7.2.1",
705
+ "normalize-package-data": "^6.0.1",
706
+ "npm-audit-report": "^5.0.0",
707
+ "npm-install-checks": "^6.3.0",
708
+ "npm-package-arg": "^11.0.2",
709
+ "npm-pick-manifest": "^9.0.1",
710
+ "npm-profile": "^10.0.0",
711
+ "npm-registry-fetch": "^17.0.1",
712
+ "npm-user-validate": "^2.0.1",
713
+ "p-map": "^4.0.0",
714
+ "pacote": "^18.0.6",
715
+ "parse-conflict-json": "^3.0.1",
716
+ "proc-log": "^4.2.0",
717
+ "qrcode-terminal": "^0.12.0",
718
+ "read": "^3.0.1",
719
+ "semver": "^7.6.2",
720
+ "spdx-expression-parse": "^4.0.0",
721
+ "ssri": "^10.0.6",
722
+ "supports-color": "^9.4.0",
723
+ "tar": "^6.2.1",
724
+ "text-table": "~0.2.0",
725
+ "tiny-relative-date": "^1.3.0",
726
+ "treeverse": "^3.0.0",
727
+ "validate-npm-package-name": "^5.0.1",
728
+ "which": "^4.0.0",
729
+ "write-file-atomic": "^5.0.1"
730
+ },
731
+ "bin": {
732
+ "npm": "bin/npm-cli.js",
733
+ "npx": "bin/npx-cli.js"
734
+ },
735
+ "engines": {
736
+ "node": "^18.17.0 || >=20.5.0"
737
+ }
738
+ },
739
+ "node_modules/npm/node_modules/@isaacs/cliui": {
740
+ "version": "8.0.2",
741
+ "inBundle": true,
742
+ "license": "ISC",
743
+ "dependencies": {
744
+ "string-width": "^5.1.2",
745
+ "string-width-cjs": "npm:string-width@^4.2.0",
746
+ "strip-ansi": "^7.0.1",
747
+ "strip-ansi-cjs": "npm:strip-ansi@^6.0.1",
748
+ "wrap-ansi": "^8.1.0",
749
+ "wrap-ansi-cjs": "npm:wrap-ansi@^7.0.0"
750
+ },
751
+ "engines": {
752
+ "node": ">=12"
753
+ }
754
+ },
755
+ "node_modules/npm/node_modules/@isaacs/cliui/node_modules/ansi-regex": {
756
+ "version": "6.0.1",
757
+ "inBundle": true,
758
+ "license": "MIT",
759
+ "engines": {
760
+ "node": ">=12"
761
+ },
762
+ "funding": {
763
+ "url": "https://github.com/chalk/ansi-regex?sponsor=1"
764
+ }
765
+ },
766
+ "node_modules/npm/node_modules/@isaacs/cliui/node_modules/emoji-regex": {
767
+ "version": "9.2.2",
768
+ "inBundle": true,
769
+ "license": "MIT"
770
+ },
771
+ "node_modules/npm/node_modules/@isaacs/cliui/node_modules/string-width": {
772
+ "version": "5.1.2",
773
+ "inBundle": true,
774
+ "license": "MIT",
775
+ "dependencies": {
776
+ "eastasianwidth": "^0.2.0",
777
+ "emoji-regex": "^9.2.2",
778
+ "strip-ansi": "^7.0.1"
779
+ },
780
+ "engines": {
781
+ "node": ">=12"
782
+ },
783
+ "funding": {
784
+ "url": "https://github.com/sponsors/sindresorhus"
785
+ }
786
+ },
787
+ "node_modules/npm/node_modules/@isaacs/cliui/node_modules/strip-ansi": {
788
+ "version": "7.1.0",
789
+ "inBundle": true,
790
+ "license": "MIT",
791
+ "dependencies": {
792
+ "ansi-regex": "^6.0.1"
793
+ },
794
+ "engines": {
795
+ "node": ">=12"
796
+ },
797
+ "funding": {
798
+ "url": "https://github.com/chalk/strip-ansi?sponsor=1"
799
+ }
800
+ },
801
+ "node_modules/npm/node_modules/@isaacs/string-locale-compare": {
802
+ "version": "1.1.0",
803
+ "inBundle": true,
804
+ "license": "ISC"
805
+ },
806
+ "node_modules/npm/node_modules/@npmcli/agent": {
807
+ "version": "2.2.2",
808
+ "inBundle": true,
809
+ "license": "ISC",
810
+ "dependencies": {
811
+ "agent-base": "^7.1.0",
812
+ "http-proxy-agent": "^7.0.0",
813
+ "https-proxy-agent": "^7.0.1",
814
+ "lru-cache": "^10.0.1",
815
+ "socks-proxy-agent": "^8.0.3"
816
+ },
817
+ "engines": {
818
+ "node": "^16.14.0 || >=18.0.0"
819
+ }
820
+ },
821
+ "node_modules/npm/node_modules/@npmcli/arborist": {
822
+ "version": "7.5.2",
823
+ "inBundle": true,
824
+ "license": "ISC",
825
+ "dependencies": {
826
+ "@isaacs/string-locale-compare": "^1.1.0",
827
+ "@npmcli/fs": "^3.1.1",
828
+ "@npmcli/installed-package-contents": "^2.1.0",
829
+ "@npmcli/map-workspaces": "^3.0.2",
830
+ "@npmcli/metavuln-calculator": "^7.1.1",
831
+ "@npmcli/name-from-folder": "^2.0.0",
832
+ "@npmcli/node-gyp": "^3.0.0",
833
+ "@npmcli/package-json": "^5.1.0",
834
+ "@npmcli/query": "^3.1.0",
835
+ "@npmcli/redact": "^2.0.0",
836
+ "@npmcli/run-script": "^8.1.0",
837
+ "bin-links": "^4.0.4",
838
+ "cacache": "^18.0.3",
839
+ "common-ancestor-path": "^1.0.1",
840
+ "hosted-git-info": "^7.0.2",
841
+ "json-parse-even-better-errors": "^3.0.2",
842
+ "json-stringify-nice": "^1.1.4",
843
+ "lru-cache": "^10.2.2",
844
+ "minimatch": "^9.0.4",
845
+ "nopt": "^7.2.1",
846
+ "npm-install-checks": "^6.2.0",
847
+ "npm-package-arg": "^11.0.2",
848
+ "npm-pick-manifest": "^9.0.1",
849
+ "npm-registry-fetch": "^17.0.1",
850
+ "pacote": "^18.0.6",
851
+ "parse-conflict-json": "^3.0.0",
852
+ "proc-log": "^4.2.0",
853
+ "proggy": "^2.0.0",
854
+ "promise-all-reject-late": "^1.0.0",
855
+ "promise-call-limit": "^3.0.1",
856
+ "read-package-json-fast": "^3.0.2",
857
+ "semver": "^7.3.7",
858
+ "ssri": "^10.0.6",
859
+ "treeverse": "^3.0.0",
860
+ "walk-up-path": "^3.0.1"
861
+ },
862
+ "bin": {
863
+ "arborist": "bin/index.js"
864
+ },
865
+ "engines": {
866
+ "node": "^16.14.0 || >=18.0.0"
867
+ }
868
+ },
869
+ "node_modules/npm/node_modules/@npmcli/config": {
870
+ "version": "8.3.2",
871
+ "inBundle": true,
872
+ "license": "ISC",
873
+ "dependencies": {
874
+ "@npmcli/map-workspaces": "^3.0.2",
875
+ "ci-info": "^4.0.0",
876
+ "ini": "^4.1.2",
877
+ "nopt": "^7.2.1",
878
+ "proc-log": "^4.2.0",
879
+ "read-package-json-fast": "^3.0.2",
880
+ "semver": "^7.3.5",
881
+ "walk-up-path": "^3.0.1"
882
+ },
883
+ "engines": {
884
+ "node": "^16.14.0 || >=18.0.0"
885
+ }
886
+ },
887
+ "node_modules/npm/node_modules/@npmcli/fs": {
888
+ "version": "3.1.1",
889
+ "inBundle": true,
890
+ "license": "ISC",
891
+ "dependencies": {
892
+ "semver": "^7.3.5"
893
+ },
894
+ "engines": {
895
+ "node": "^14.17.0 || ^16.13.0 || >=18.0.0"
896
+ }
897
+ },
898
+ "node_modules/npm/node_modules/@npmcli/git": {
899
+ "version": "5.0.7",
900
+ "inBundle": true,
901
+ "license": "ISC",
902
+ "dependencies": {
903
+ "@npmcli/promise-spawn": "^7.0.0",
904
+ "lru-cache": "^10.0.1",
905
+ "npm-pick-manifest": "^9.0.0",
906
+ "proc-log": "^4.0.0",
907
+ "promise-inflight": "^1.0.1",
908
+ "promise-retry": "^2.0.1",
909
+ "semver": "^7.3.5",
910
+ "which": "^4.0.0"
911
+ },
912
+ "engines": {
913
+ "node": "^16.14.0 || >=18.0.0"
914
+ }
915
+ },
916
+ "node_modules/npm/node_modules/@npmcli/installed-package-contents": {
917
+ "version": "2.1.0",
918
+ "inBundle": true,
919
+ "license": "ISC",
920
+ "dependencies": {
921
+ "npm-bundled": "^3.0.0",
922
+ "npm-normalize-package-bin": "^3.0.0"
923
+ },
924
+ "bin": {
925
+ "installed-package-contents": "bin/index.js"
926
+ },
927
+ "engines": {
928
+ "node": "^14.17.0 || ^16.13.0 || >=18.0.0"
929
+ }
930
+ },
931
+ "node_modules/npm/node_modules/@npmcli/map-workspaces": {
932
+ "version": "3.0.6",
933
+ "inBundle": true,
934
+ "license": "ISC",
935
+ "dependencies": {
936
+ "@npmcli/name-from-folder": "^2.0.0",
937
+ "glob": "^10.2.2",
938
+ "minimatch": "^9.0.0",
939
+ "read-package-json-fast": "^3.0.0"
940
+ },
941
+ "engines": {
942
+ "node": "^14.17.0 || ^16.13.0 || >=18.0.0"
943
+ }
944
+ },
945
+ "node_modules/npm/node_modules/@npmcli/metavuln-calculator": {
946
+ "version": "7.1.1",
947
+ "inBundle": true,
948
+ "license": "ISC",
949
+ "dependencies": {
950
+ "cacache": "^18.0.0",
951
+ "json-parse-even-better-errors": "^3.0.0",
952
+ "pacote": "^18.0.0",
953
+ "proc-log": "^4.1.0",
954
+ "semver": "^7.3.5"
955
+ },
956
+ "engines": {
957
+ "node": "^16.14.0 || >=18.0.0"
958
+ }
959
+ },
960
+ "node_modules/npm/node_modules/@npmcli/name-from-folder": {
961
+ "version": "2.0.0",
962
+ "inBundle": true,
963
+ "license": "ISC",
964
+ "engines": {
965
+ "node": "^14.17.0 || ^16.13.0 || >=18.0.0"
966
+ }
967
+ },
968
+ "node_modules/npm/node_modules/@npmcli/node-gyp": {
969
+ "version": "3.0.0",
970
+ "inBundle": true,
971
+ "license": "ISC",
972
+ "engines": {
973
+ "node": "^14.17.0 || ^16.13.0 || >=18.0.0"
974
+ }
975
+ },
976
+ "node_modules/npm/node_modules/@npmcli/package-json": {
977
+ "version": "5.1.0",
978
+ "inBundle": true,
979
+ "license": "ISC",
980
+ "dependencies": {
981
+ "@npmcli/git": "^5.0.0",
982
+ "glob": "^10.2.2",
983
+ "hosted-git-info": "^7.0.0",
984
+ "json-parse-even-better-errors": "^3.0.0",
985
+ "normalize-package-data": "^6.0.0",
986
+ "proc-log": "^4.0.0",
987
+ "semver": "^7.5.3"
988
+ },
989
+ "engines": {
990
+ "node": "^16.14.0 || >=18.0.0"
991
+ }
992
+ },
993
+ "node_modules/npm/node_modules/@npmcli/promise-spawn": {
994
+ "version": "7.0.2",
995
+ "inBundle": true,
996
+ "license": "ISC",
997
+ "dependencies": {
998
+ "which": "^4.0.0"
999
+ },
1000
+ "engines": {
1001
+ "node": "^16.14.0 || >=18.0.0"
1002
+ }
1003
+ },
1004
+ "node_modules/npm/node_modules/@npmcli/query": {
1005
+ "version": "3.1.0",
1006
+ "inBundle": true,
1007
+ "license": "ISC",
1008
+ "dependencies": {
1009
+ "postcss-selector-parser": "^6.0.10"
1010
+ },
1011
+ "engines": {
1012
+ "node": "^14.17.0 || ^16.13.0 || >=18.0.0"
1013
+ }
1014
+ },
1015
+ "node_modules/npm/node_modules/@npmcli/redact": {
1016
+ "version": "2.0.0",
1017
+ "inBundle": true,
1018
+ "license": "ISC",
1019
+ "engines": {
1020
+ "node": "^16.14.0 || >=18.0.0"
1021
+ }
1022
+ },
1023
+ "node_modules/npm/node_modules/@npmcli/run-script": {
1024
+ "version": "8.1.0",
1025
+ "inBundle": true,
1026
+ "license": "ISC",
1027
+ "dependencies": {
1028
+ "@npmcli/node-gyp": "^3.0.0",
1029
+ "@npmcli/package-json": "^5.0.0",
1030
+ "@npmcli/promise-spawn": "^7.0.0",
1031
+ "node-gyp": "^10.0.0",
1032
+ "proc-log": "^4.0.0",
1033
+ "which": "^4.0.0"
1034
+ },
1035
+ "engines": {
1036
+ "node": "^16.14.0 || >=18.0.0"
1037
+ }
1038
+ },
1039
+ "node_modules/npm/node_modules/@pkgjs/parseargs": {
1040
+ "version": "0.11.0",
1041
+ "inBundle": true,
1042
+ "license": "MIT",
1043
+ "optional": true,
1044
+ "engines": {
1045
+ "node": ">=14"
1046
+ }
1047
+ },
1048
+ "node_modules/npm/node_modules/@sigstore/bundle": {
1049
+ "version": "2.3.1",
1050
+ "inBundle": true,
1051
+ "license": "Apache-2.0",
1052
+ "dependencies": {
1053
+ "@sigstore/protobuf-specs": "^0.3.1"
1054
+ },
1055
+ "engines": {
1056
+ "node": "^16.14.0 || >=18.0.0"
1057
+ }
1058
+ },
1059
+ "node_modules/npm/node_modules/@sigstore/core": {
1060
+ "version": "1.1.0",
1061
+ "inBundle": true,
1062
+ "license": "Apache-2.0",
1063
+ "engines": {
1064
+ "node": "^16.14.0 || >=18.0.0"
1065
+ }
1066
+ },
1067
+ "node_modules/npm/node_modules/@sigstore/protobuf-specs": {
1068
+ "version": "0.3.2",
1069
+ "inBundle": true,
1070
+ "license": "Apache-2.0",
1071
+ "engines": {
1072
+ "node": "^16.14.0 || >=18.0.0"
1073
+ }
1074
+ },
1075
+ "node_modules/npm/node_modules/@sigstore/sign": {
1076
+ "version": "2.3.1",
1077
+ "inBundle": true,
1078
+ "license": "Apache-2.0",
1079
+ "dependencies": {
1080
+ "@sigstore/bundle": "^2.3.0",
1081
+ "@sigstore/core": "^1.0.0",
1082
+ "@sigstore/protobuf-specs": "^0.3.1",
1083
+ "make-fetch-happen": "^13.0.1",
1084
+ "proc-log": "^4.2.0",
1085
+ "promise-retry": "^2.0.1"
1086
+ },
1087
+ "engines": {
1088
+ "node": "^16.14.0 || >=18.0.0"
1089
+ }
1090
+ },
1091
+ "node_modules/npm/node_modules/@sigstore/tuf": {
1092
+ "version": "2.3.3",
1093
+ "inBundle": true,
1094
+ "license": "Apache-2.0",
1095
+ "dependencies": {
1096
+ "@sigstore/protobuf-specs": "^0.3.0",
1097
+ "tuf-js": "^2.2.1"
1098
+ },
1099
+ "engines": {
1100
+ "node": "^16.14.0 || >=18.0.0"
1101
+ }
1102
+ },
1103
+ "node_modules/npm/node_modules/@sigstore/verify": {
1104
+ "version": "1.2.0",
1105
+ "inBundle": true,
1106
+ "license": "Apache-2.0",
1107
+ "dependencies": {
1108
+ "@sigstore/bundle": "^2.3.1",
1109
+ "@sigstore/core": "^1.1.0",
1110
+ "@sigstore/protobuf-specs": "^0.3.1"
1111
+ },
1112
+ "engines": {
1113
+ "node": "^16.14.0 || >=18.0.0"
1114
+ }
1115
+ },
1116
+ "node_modules/npm/node_modules/@tufjs/canonical-json": {
1117
+ "version": "2.0.0",
1118
+ "inBundle": true,
1119
+ "license": "MIT",
1120
+ "engines": {
1121
+ "node": "^16.14.0 || >=18.0.0"
1122
+ }
1123
+ },
1124
+ "node_modules/npm/node_modules/@tufjs/models": {
1125
+ "version": "2.0.1",
1126
+ "inBundle": true,
1127
+ "license": "MIT",
1128
+ "dependencies": {
1129
+ "@tufjs/canonical-json": "2.0.0",
1130
+ "minimatch": "^9.0.4"
1131
+ },
1132
+ "engines": {
1133
+ "node": "^16.14.0 || >=18.0.0"
1134
+ }
1135
+ },
1136
+ "node_modules/npm/node_modules/abbrev": {
1137
+ "version": "2.0.0",
1138
+ "inBundle": true,
1139
+ "license": "ISC",
1140
+ "engines": {
1141
+ "node": "^14.17.0 || ^16.13.0 || >=18.0.0"
1142
+ }
1143
+ },
1144
+ "node_modules/npm/node_modules/agent-base": {
1145
+ "version": "7.1.1",
1146
+ "inBundle": true,
1147
+ "license": "MIT",
1148
+ "dependencies": {
1149
+ "debug": "^4.3.4"
1150
+ },
1151
+ "engines": {
1152
+ "node": ">= 14"
1153
+ }
1154
+ },
1155
+ "node_modules/npm/node_modules/aggregate-error": {
1156
+ "version": "3.1.0",
1157
+ "inBundle": true,
1158
+ "license": "MIT",
1159
+ "dependencies": {
1160
+ "clean-stack": "^2.0.0",
1161
+ "indent-string": "^4.0.0"
1162
+ },
1163
+ "engines": {
1164
+ "node": ">=8"
1165
+ }
1166
+ },
1167
+ "node_modules/npm/node_modules/ansi-regex": {
1168
+ "version": "5.0.1",
1169
+ "inBundle": true,
1170
+ "license": "MIT",
1171
+ "engines": {
1172
+ "node": ">=8"
1173
+ }
1174
+ },
1175
+ "node_modules/npm/node_modules/ansi-styles": {
1176
+ "version": "6.2.1",
1177
+ "inBundle": true,
1178
+ "license": "MIT",
1179
+ "engines": {
1180
+ "node": ">=12"
1181
+ },
1182
+ "funding": {
1183
+ "url": "https://github.com/chalk/ansi-styles?sponsor=1"
1184
+ }
1185
+ },
1186
+ "node_modules/npm/node_modules/aproba": {
1187
+ "version": "2.0.0",
1188
+ "inBundle": true,
1189
+ "license": "ISC"
1190
+ },
1191
+ "node_modules/npm/node_modules/archy": {
1192
+ "version": "1.0.0",
1193
+ "inBundle": true,
1194
+ "license": "MIT"
1195
+ },
1196
+ "node_modules/npm/node_modules/balanced-match": {
1197
+ "version": "1.0.2",
1198
+ "inBundle": true,
1199
+ "license": "MIT"
1200
+ },
1201
+ "node_modules/npm/node_modules/bin-links": {
1202
+ "version": "4.0.4",
1203
+ "inBundle": true,
1204
+ "license": "ISC",
1205
+ "dependencies": {
1206
+ "cmd-shim": "^6.0.0",
1207
+ "npm-normalize-package-bin": "^3.0.0",
1208
+ "read-cmd-shim": "^4.0.0",
1209
+ "write-file-atomic": "^5.0.0"
1210
+ },
1211
+ "engines": {
1212
+ "node": "^14.17.0 || ^16.13.0 || >=18.0.0"
1213
+ }
1214
+ },
1215
+ "node_modules/npm/node_modules/binary-extensions": {
1216
+ "version": "2.3.0",
1217
+ "inBundle": true,
1218
+ "license": "MIT",
1219
+ "engines": {
1220
+ "node": ">=8"
1221
+ },
1222
+ "funding": {
1223
+ "url": "https://github.com/sponsors/sindresorhus"
1224
+ }
1225
+ },
1226
+ "node_modules/npm/node_modules/brace-expansion": {
1227
+ "version": "2.0.1",
1228
+ "inBundle": true,
1229
+ "license": "MIT",
1230
+ "dependencies": {
1231
+ "balanced-match": "^1.0.0"
1232
+ }
1233
+ },
1234
+ "node_modules/npm/node_modules/cacache": {
1235
+ "version": "18.0.3",
1236
+ "inBundle": true,
1237
+ "license": "ISC",
1238
+ "dependencies": {
1239
+ "@npmcli/fs": "^3.1.0",
1240
+ "fs-minipass": "^3.0.0",
1241
+ "glob": "^10.2.2",
1242
+ "lru-cache": "^10.0.1",
1243
+ "minipass": "^7.0.3",
1244
+ "minipass-collect": "^2.0.1",
1245
+ "minipass-flush": "^1.0.5",
1246
+ "minipass-pipeline": "^1.2.4",
1247
+ "p-map": "^4.0.0",
1248
+ "ssri": "^10.0.0",
1249
+ "tar": "^6.1.11",
1250
+ "unique-filename": "^3.0.0"
1251
+ },
1252
+ "engines": {
1253
+ "node": "^16.14.0 || >=18.0.0"
1254
+ }
1255
+ },
1256
+ "node_modules/npm/node_modules/chalk": {
1257
+ "version": "5.3.0",
1258
+ "inBundle": true,
1259
+ "license": "MIT",
1260
+ "engines": {
1261
+ "node": "^12.17.0 || ^14.13 || >=16.0.0"
1262
+ },
1263
+ "funding": {
1264
+ "url": "https://github.com/chalk/chalk?sponsor=1"
1265
+ }
1266
+ },
1267
+ "node_modules/npm/node_modules/chownr": {
1268
+ "version": "2.0.0",
1269
+ "inBundle": true,
1270
+ "license": "ISC",
1271
+ "engines": {
1272
+ "node": ">=10"
1273
+ }
1274
+ },
1275
+ "node_modules/npm/node_modules/ci-info": {
1276
+ "version": "4.0.0",
1277
+ "funding": [
1278
+ {
1279
+ "type": "github",
1280
+ "url": "https://github.com/sponsors/sibiraj-s"
1281
+ }
1282
+ ],
1283
+ "inBundle": true,
1284
+ "license": "MIT",
1285
+ "engines": {
1286
+ "node": ">=8"
1287
+ }
1288
+ },
1289
+ "node_modules/npm/node_modules/cidr-regex": {
1290
+ "version": "4.0.5",
1291
+ "inBundle": true,
1292
+ "license": "BSD-2-Clause",
1293
+ "dependencies": {
1294
+ "ip-regex": "^5.0.0"
1295
+ },
1296
+ "engines": {
1297
+ "node": ">=14"
1298
+ }
1299
+ },
1300
+ "node_modules/npm/node_modules/clean-stack": {
1301
+ "version": "2.2.0",
1302
+ "inBundle": true,
1303
+ "license": "MIT",
1304
+ "engines": {
1305
+ "node": ">=6"
1306
+ }
1307
+ },
1308
+ "node_modules/npm/node_modules/cli-columns": {
1309
+ "version": "4.0.0",
1310
+ "inBundle": true,
1311
+ "license": "MIT",
1312
+ "dependencies": {
1313
+ "string-width": "^4.2.3",
1314
+ "strip-ansi": "^6.0.1"
1315
+ },
1316
+ "engines": {
1317
+ "node": ">= 10"
1318
+ }
1319
+ },
1320
+ "node_modules/npm/node_modules/cmd-shim": {
1321
+ "version": "6.0.3",
1322
+ "inBundle": true,
1323
+ "license": "ISC",
1324
+ "engines": {
1325
+ "node": "^14.17.0 || ^16.13.0 || >=18.0.0"
1326
+ }
1327
+ },
1328
+ "node_modules/npm/node_modules/color-convert": {
1329
+ "version": "2.0.1",
1330
+ "inBundle": true,
1331
+ "license": "MIT",
1332
+ "dependencies": {
1333
+ "color-name": "~1.1.4"
1334
+ },
1335
+ "engines": {
1336
+ "node": ">=7.0.0"
1337
+ }
1338
+ },
1339
+ "node_modules/npm/node_modules/color-name": {
1340
+ "version": "1.1.4",
1341
+ "inBundle": true,
1342
+ "license": "MIT"
1343
+ },
1344
+ "node_modules/npm/node_modules/common-ancestor-path": {
1345
+ "version": "1.0.1",
1346
+ "inBundle": true,
1347
+ "license": "ISC"
1348
+ },
1349
+ "node_modules/npm/node_modules/cross-spawn": {
1350
+ "version": "7.0.3",
1351
+ "inBundle": true,
1352
+ "license": "MIT",
1353
+ "dependencies": {
1354
+ "path-key": "^3.1.0",
1355
+ "shebang-command": "^2.0.0",
1356
+ "which": "^2.0.1"
1357
+ },
1358
+ "engines": {
1359
+ "node": ">= 8"
1360
+ }
1361
+ },
1362
+ "node_modules/npm/node_modules/cross-spawn/node_modules/which": {
1363
+ "version": "2.0.2",
1364
+ "inBundle": true,
1365
+ "license": "ISC",
1366
+ "dependencies": {
1367
+ "isexe": "^2.0.0"
1368
+ },
1369
+ "bin": {
1370
+ "node-which": "bin/node-which"
1371
+ },
1372
+ "engines": {
1373
+ "node": ">= 8"
1374
+ }
1375
+ },
1376
+ "node_modules/npm/node_modules/cssesc": {
1377
+ "version": "3.0.0",
1378
+ "inBundle": true,
1379
+ "license": "MIT",
1380
+ "bin": {
1381
+ "cssesc": "bin/cssesc"
1382
+ },
1383
+ "engines": {
1384
+ "node": ">=4"
1385
+ }
1386
+ },
1387
+ "node_modules/npm/node_modules/debug": {
1388
+ "version": "4.3.4",
1389
+ "inBundle": true,
1390
+ "license": "MIT",
1391
+ "dependencies": {
1392
+ "ms": "2.1.2"
1393
+ },
1394
+ "engines": {
1395
+ "node": ">=6.0"
1396
+ },
1397
+ "peerDependenciesMeta": {
1398
+ "supports-color": {
1399
+ "optional": true
1400
+ }
1401
+ }
1402
+ },
1403
+ "node_modules/npm/node_modules/debug/node_modules/ms": {
1404
+ "version": "2.1.2",
1405
+ "inBundle": true,
1406
+ "license": "MIT"
1407
+ },
1408
+ "node_modules/npm/node_modules/diff": {
1409
+ "version": "5.2.0",
1410
+ "inBundle": true,
1411
+ "license": "BSD-3-Clause",
1412
+ "engines": {
1413
+ "node": ">=0.3.1"
1414
+ }
1415
+ },
1416
+ "node_modules/npm/node_modules/eastasianwidth": {
1417
+ "version": "0.2.0",
1418
+ "inBundle": true,
1419
+ "license": "MIT"
1420
+ },
1421
+ "node_modules/npm/node_modules/emoji-regex": {
1422
+ "version": "8.0.0",
1423
+ "inBundle": true,
1424
+ "license": "MIT"
1425
+ },
1426
+ "node_modules/npm/node_modules/encoding": {
1427
+ "version": "0.1.13",
1428
+ "inBundle": true,
1429
+ "license": "MIT",
1430
+ "optional": true,
1431
+ "dependencies": {
1432
+ "iconv-lite": "^0.6.2"
1433
+ }
1434
+ },
1435
+ "node_modules/npm/node_modules/env-paths": {
1436
+ "version": "2.2.1",
1437
+ "inBundle": true,
1438
+ "license": "MIT",
1439
+ "engines": {
1440
+ "node": ">=6"
1441
+ }
1442
+ },
1443
+ "node_modules/npm/node_modules/err-code": {
1444
+ "version": "2.0.3",
1445
+ "inBundle": true,
1446
+ "license": "MIT"
1447
+ },
1448
+ "node_modules/npm/node_modules/exponential-backoff": {
1449
+ "version": "3.1.1",
1450
+ "inBundle": true,
1451
+ "license": "Apache-2.0"
1452
+ },
1453
+ "node_modules/npm/node_modules/fastest-levenshtein": {
1454
+ "version": "1.0.16",
1455
+ "inBundle": true,
1456
+ "license": "MIT",
1457
+ "engines": {
1458
+ "node": ">= 4.9.1"
1459
+ }
1460
+ },
1461
+ "node_modules/npm/node_modules/foreground-child": {
1462
+ "version": "3.1.1",
1463
+ "inBundle": true,
1464
+ "license": "ISC",
1465
+ "dependencies": {
1466
+ "cross-spawn": "^7.0.0",
1467
+ "signal-exit": "^4.0.1"
1468
+ },
1469
+ "engines": {
1470
+ "node": ">=14"
1471
+ },
1472
+ "funding": {
1473
+ "url": "https://github.com/sponsors/isaacs"
1474
+ }
1475
+ },
1476
+ "node_modules/npm/node_modules/fs-minipass": {
1477
+ "version": "3.0.3",
1478
+ "inBundle": true,
1479
+ "license": "ISC",
1480
+ "dependencies": {
1481
+ "minipass": "^7.0.3"
1482
+ },
1483
+ "engines": {
1484
+ "node": "^14.17.0 || ^16.13.0 || >=18.0.0"
1485
+ }
1486
+ },
1487
+ "node_modules/npm/node_modules/function-bind": {
1488
+ "version": "1.1.2",
1489
+ "inBundle": true,
1490
+ "license": "MIT",
1491
+ "funding": {
1492
+ "url": "https://github.com/sponsors/ljharb"
1493
+ }
1494
+ },
1495
+ "node_modules/npm/node_modules/glob": {
1496
+ "version": "10.3.15",
1497
+ "inBundle": true,
1498
+ "license": "ISC",
1499
+ "dependencies": {
1500
+ "foreground-child": "^3.1.0",
1501
+ "jackspeak": "^2.3.6",
1502
+ "minimatch": "^9.0.1",
1503
+ "minipass": "^7.0.4",
1504
+ "path-scurry": "^1.11.0"
1505
+ },
1506
+ "bin": {
1507
+ "glob": "dist/esm/bin.mjs"
1508
+ },
1509
+ "engines": {
1510
+ "node": ">=16 || 14 >=14.18"
1511
+ },
1512
+ "funding": {
1513
+ "url": "https://github.com/sponsors/isaacs"
1514
+ }
1515
+ },
1516
+ "node_modules/npm/node_modules/graceful-fs": {
1517
+ "version": "4.2.11",
1518
+ "inBundle": true,
1519
+ "license": "ISC"
1520
+ },
1521
+ "node_modules/npm/node_modules/hasown": {
1522
+ "version": "2.0.2",
1523
+ "inBundle": true,
1524
+ "license": "MIT",
1525
+ "dependencies": {
1526
+ "function-bind": "^1.1.2"
1527
+ },
1528
+ "engines": {
1529
+ "node": ">= 0.4"
1530
+ }
1531
+ },
1532
+ "node_modules/npm/node_modules/hosted-git-info": {
1533
+ "version": "7.0.2",
1534
+ "inBundle": true,
1535
+ "license": "ISC",
1536
+ "dependencies": {
1537
+ "lru-cache": "^10.0.1"
1538
+ },
1539
+ "engines": {
1540
+ "node": "^16.14.0 || >=18.0.0"
1541
+ }
1542
+ },
1543
+ "node_modules/npm/node_modules/http-cache-semantics": {
1544
+ "version": "4.1.1",
1545
+ "inBundle": true,
1546
+ "license": "BSD-2-Clause"
1547
+ },
1548
+ "node_modules/npm/node_modules/http-proxy-agent": {
1549
+ "version": "7.0.2",
1550
+ "inBundle": true,
1551
+ "license": "MIT",
1552
+ "dependencies": {
1553
+ "agent-base": "^7.1.0",
1554
+ "debug": "^4.3.4"
1555
+ },
1556
+ "engines": {
1557
+ "node": ">= 14"
1558
+ }
1559
+ },
1560
+ "node_modules/npm/node_modules/https-proxy-agent": {
1561
+ "version": "7.0.4",
1562
+ "inBundle": true,
1563
+ "license": "MIT",
1564
+ "dependencies": {
1565
+ "agent-base": "^7.0.2",
1566
+ "debug": "4"
1567
+ },
1568
+ "engines": {
1569
+ "node": ">= 14"
1570
+ }
1571
+ },
1572
+ "node_modules/npm/node_modules/iconv-lite": {
1573
+ "version": "0.6.3",
1574
+ "inBundle": true,
1575
+ "license": "MIT",
1576
+ "optional": true,
1577
+ "dependencies": {
1578
+ "safer-buffer": ">= 2.1.2 < 3.0.0"
1579
+ },
1580
+ "engines": {
1581
+ "node": ">=0.10.0"
1582
+ }
1583
+ },
1584
+ "node_modules/npm/node_modules/ignore-walk": {
1585
+ "version": "6.0.5",
1586
+ "inBundle": true,
1587
+ "license": "ISC",
1588
+ "dependencies": {
1589
+ "minimatch": "^9.0.0"
1590
+ },
1591
+ "engines": {
1592
+ "node": "^14.17.0 || ^16.13.0 || >=18.0.0"
1593
+ }
1594
+ },
1595
+ "node_modules/npm/node_modules/imurmurhash": {
1596
+ "version": "0.1.4",
1597
+ "inBundle": true,
1598
+ "license": "MIT",
1599
+ "engines": {
1600
+ "node": ">=0.8.19"
1601
+ }
1602
+ },
1603
+ "node_modules/npm/node_modules/indent-string": {
1604
+ "version": "4.0.0",
1605
+ "inBundle": true,
1606
+ "license": "MIT",
1607
+ "engines": {
1608
+ "node": ">=8"
1609
+ }
1610
+ },
1611
+ "node_modules/npm/node_modules/ini": {
1612
+ "version": "4.1.2",
1613
+ "inBundle": true,
1614
+ "license": "ISC",
1615
+ "engines": {
1616
+ "node": "^14.17.0 || ^16.13.0 || >=18.0.0"
1617
+ }
1618
+ },
1619
+ "node_modules/npm/node_modules/init-package-json": {
1620
+ "version": "6.0.3",
1621
+ "inBundle": true,
1622
+ "license": "ISC",
1623
+ "dependencies": {
1624
+ "@npmcli/package-json": "^5.0.0",
1625
+ "npm-package-arg": "^11.0.0",
1626
+ "promzard": "^1.0.0",
1627
+ "read": "^3.0.1",
1628
+ "semver": "^7.3.5",
1629
+ "validate-npm-package-license": "^3.0.4",
1630
+ "validate-npm-package-name": "^5.0.0"
1631
+ },
1632
+ "engines": {
1633
+ "node": "^16.14.0 || >=18.0.0"
1634
+ }
1635
+ },
1636
+ "node_modules/npm/node_modules/ip-address": {
1637
+ "version": "9.0.5",
1638
+ "inBundle": true,
1639
+ "license": "MIT",
1640
+ "dependencies": {
1641
+ "jsbn": "1.1.0",
1642
+ "sprintf-js": "^1.1.3"
1643
+ },
1644
+ "engines": {
1645
+ "node": ">= 12"
1646
+ }
1647
+ },
1648
+ "node_modules/npm/node_modules/ip-regex": {
1649
+ "version": "5.0.0",
1650
+ "inBundle": true,
1651
+ "license": "MIT",
1652
+ "engines": {
1653
+ "node": "^12.20.0 || ^14.13.1 || >=16.0.0"
1654
+ },
1655
+ "funding": {
1656
+ "url": "https://github.com/sponsors/sindresorhus"
1657
+ }
1658
+ },
1659
+ "node_modules/npm/node_modules/is-cidr": {
1660
+ "version": "5.0.5",
1661
+ "inBundle": true,
1662
+ "license": "BSD-2-Clause",
1663
+ "dependencies": {
1664
+ "cidr-regex": "^4.0.4"
1665
+ },
1666
+ "engines": {
1667
+ "node": ">=14"
1668
+ }
1669
+ },
1670
+ "node_modules/npm/node_modules/is-core-module": {
1671
+ "version": "2.13.1",
1672
+ "inBundle": true,
1673
+ "license": "MIT",
1674
+ "dependencies": {
1675
+ "hasown": "^2.0.0"
1676
+ },
1677
+ "funding": {
1678
+ "url": "https://github.com/sponsors/ljharb"
1679
+ }
1680
+ },
1681
+ "node_modules/npm/node_modules/is-fullwidth-code-point": {
1682
+ "version": "3.0.0",
1683
+ "inBundle": true,
1684
+ "license": "MIT",
1685
+ "engines": {
1686
+ "node": ">=8"
1687
+ }
1688
+ },
1689
+ "node_modules/npm/node_modules/is-lambda": {
1690
+ "version": "1.0.1",
1691
+ "inBundle": true,
1692
+ "license": "MIT"
1693
+ },
1694
+ "node_modules/npm/node_modules/isexe": {
1695
+ "version": "2.0.0",
1696
+ "inBundle": true,
1697
+ "license": "ISC"
1698
+ },
1699
+ "node_modules/npm/node_modules/jackspeak": {
1700
+ "version": "2.3.6",
1701
+ "inBundle": true,
1702
+ "license": "BlueOak-1.0.0",
1703
+ "dependencies": {
1704
+ "@isaacs/cliui": "^8.0.2"
1705
+ },
1706
+ "engines": {
1707
+ "node": ">=14"
1708
+ },
1709
+ "funding": {
1710
+ "url": "https://github.com/sponsors/isaacs"
1711
+ },
1712
+ "optionalDependencies": {
1713
+ "@pkgjs/parseargs": "^0.11.0"
1714
+ }
1715
+ },
1716
+ "node_modules/npm/node_modules/jsbn": {
1717
+ "version": "1.1.0",
1718
+ "inBundle": true,
1719
+ "license": "MIT"
1720
+ },
1721
+ "node_modules/npm/node_modules/json-parse-even-better-errors": {
1722
+ "version": "3.0.2",
1723
+ "inBundle": true,
1724
+ "license": "MIT",
1725
+ "engines": {
1726
+ "node": "^14.17.0 || ^16.13.0 || >=18.0.0"
1727
+ }
1728
+ },
1729
+ "node_modules/npm/node_modules/json-stringify-nice": {
1730
+ "version": "1.1.4",
1731
+ "inBundle": true,
1732
+ "license": "ISC",
1733
+ "funding": {
1734
+ "url": "https://github.com/sponsors/isaacs"
1735
+ }
1736
+ },
1737
+ "node_modules/npm/node_modules/jsonparse": {
1738
+ "version": "1.3.1",
1739
+ "engines": [
1740
+ "node >= 0.2.0"
1741
+ ],
1742
+ "inBundle": true,
1743
+ "license": "MIT"
1744
+ },
1745
+ "node_modules/npm/node_modules/just-diff": {
1746
+ "version": "6.0.2",
1747
+ "inBundle": true,
1748
+ "license": "MIT"
1749
+ },
1750
+ "node_modules/npm/node_modules/just-diff-apply": {
1751
+ "version": "5.5.0",
1752
+ "inBundle": true,
1753
+ "license": "MIT"
1754
+ },
1755
+ "node_modules/npm/node_modules/libnpmaccess": {
1756
+ "version": "8.0.6",
1757
+ "inBundle": true,
1758
+ "license": "ISC",
1759
+ "dependencies": {
1760
+ "npm-package-arg": "^11.0.2",
1761
+ "npm-registry-fetch": "^17.0.1"
1762
+ },
1763
+ "engines": {
1764
+ "node": "^16.14.0 || >=18.0.0"
1765
+ }
1766
+ },
1767
+ "node_modules/npm/node_modules/libnpmdiff": {
1768
+ "version": "6.1.2",
1769
+ "inBundle": true,
1770
+ "license": "ISC",
1771
+ "dependencies": {
1772
+ "@npmcli/arborist": "^7.5.2",
1773
+ "@npmcli/installed-package-contents": "^2.1.0",
1774
+ "binary-extensions": "^2.3.0",
1775
+ "diff": "^5.1.0",
1776
+ "minimatch": "^9.0.4",
1777
+ "npm-package-arg": "^11.0.2",
1778
+ "pacote": "^18.0.6",
1779
+ "tar": "^6.2.1"
1780
+ },
1781
+ "engines": {
1782
+ "node": "^16.14.0 || >=18.0.0"
1783
+ }
1784
+ },
1785
+ "node_modules/npm/node_modules/libnpmexec": {
1786
+ "version": "8.1.1",
1787
+ "inBundle": true,
1788
+ "license": "ISC",
1789
+ "dependencies": {
1790
+ "@npmcli/arborist": "^7.5.2",
1791
+ "@npmcli/run-script": "^8.1.0",
1792
+ "ci-info": "^4.0.0",
1793
+ "npm-package-arg": "^11.0.2",
1794
+ "pacote": "^18.0.6",
1795
+ "proc-log": "^4.2.0",
1796
+ "read": "^3.0.1",
1797
+ "read-package-json-fast": "^3.0.2",
1798
+ "semver": "^7.3.7",
1799
+ "walk-up-path": "^3.0.1"
1800
+ },
1801
+ "engines": {
1802
+ "node": "^16.14.0 || >=18.0.0"
1803
+ }
1804
+ },
1805
+ "node_modules/npm/node_modules/libnpmfund": {
1806
+ "version": "5.0.10",
1807
+ "inBundle": true,
1808
+ "license": "ISC",
1809
+ "dependencies": {
1810
+ "@npmcli/arborist": "^7.5.2"
1811
+ },
1812
+ "engines": {
1813
+ "node": "^16.14.0 || >=18.0.0"
1814
+ }
1815
+ },
1816
+ "node_modules/npm/node_modules/libnpmhook": {
1817
+ "version": "10.0.5",
1818
+ "inBundle": true,
1819
+ "license": "ISC",
1820
+ "dependencies": {
1821
+ "aproba": "^2.0.0",
1822
+ "npm-registry-fetch": "^17.0.1"
1823
+ },
1824
+ "engines": {
1825
+ "node": "^16.14.0 || >=18.0.0"
1826
+ }
1827
+ },
1828
+ "node_modules/npm/node_modules/libnpmorg": {
1829
+ "version": "6.0.6",
1830
+ "inBundle": true,
1831
+ "license": "ISC",
1832
+ "dependencies": {
1833
+ "aproba": "^2.0.0",
1834
+ "npm-registry-fetch": "^17.0.1"
1835
+ },
1836
+ "engines": {
1837
+ "node": "^16.14.0 || >=18.0.0"
1838
+ }
1839
+ },
1840
+ "node_modules/npm/node_modules/libnpmpack": {
1841
+ "version": "7.0.2",
1842
+ "inBundle": true,
1843
+ "license": "ISC",
1844
+ "dependencies": {
1845
+ "@npmcli/arborist": "^7.5.2",
1846
+ "@npmcli/run-script": "^8.1.0",
1847
+ "npm-package-arg": "^11.0.2",
1848
+ "pacote": "^18.0.6"
1849
+ },
1850
+ "engines": {
1851
+ "node": "^16.14.0 || >=18.0.0"
1852
+ }
1853
+ },
1854
+ "node_modules/npm/node_modules/libnpmpublish": {
1855
+ "version": "9.0.8",
1856
+ "inBundle": true,
1857
+ "license": "ISC",
1858
+ "dependencies": {
1859
+ "ci-info": "^4.0.0",
1860
+ "normalize-package-data": "^6.0.1",
1861
+ "npm-package-arg": "^11.0.2",
1862
+ "npm-registry-fetch": "^17.0.1",
1863
+ "proc-log": "^4.2.0",
1864
+ "semver": "^7.3.7",
1865
+ "sigstore": "^2.2.0",
1866
+ "ssri": "^10.0.6"
1867
+ },
1868
+ "engines": {
1869
+ "node": "^16.14.0 || >=18.0.0"
1870
+ }
1871
+ },
1872
+ "node_modules/npm/node_modules/libnpmsearch": {
1873
+ "version": "7.0.5",
1874
+ "inBundle": true,
1875
+ "license": "ISC",
1876
+ "dependencies": {
1877
+ "npm-registry-fetch": "^17.0.1"
1878
+ },
1879
+ "engines": {
1880
+ "node": "^16.14.0 || >=18.0.0"
1881
+ }
1882
+ },
1883
+ "node_modules/npm/node_modules/libnpmteam": {
1884
+ "version": "6.0.5",
1885
+ "inBundle": true,
1886
+ "license": "ISC",
1887
+ "dependencies": {
1888
+ "aproba": "^2.0.0",
1889
+ "npm-registry-fetch": "^17.0.1"
1890
+ },
1891
+ "engines": {
1892
+ "node": "^16.14.0 || >=18.0.0"
1893
+ }
1894
+ },
1895
+ "node_modules/npm/node_modules/libnpmversion": {
1896
+ "version": "6.0.2",
1897
+ "inBundle": true,
1898
+ "license": "ISC",
1899
+ "dependencies": {
1900
+ "@npmcli/git": "^5.0.7",
1901
+ "@npmcli/run-script": "^8.1.0",
1902
+ "json-parse-even-better-errors": "^3.0.2",
1903
+ "proc-log": "^4.2.0",
1904
+ "semver": "^7.3.7"
1905
+ },
1906
+ "engines": {
1907
+ "node": "^16.14.0 || >=18.0.0"
1908
+ }
1909
+ },
1910
+ "node_modules/npm/node_modules/lru-cache": {
1911
+ "version": "10.2.2",
1912
+ "inBundle": true,
1913
+ "license": "ISC",
1914
+ "engines": {
1915
+ "node": "14 || >=16.14"
1916
+ }
1917
+ },
1918
+ "node_modules/npm/node_modules/make-fetch-happen": {
1919
+ "version": "13.0.1",
1920
+ "inBundle": true,
1921
+ "license": "ISC",
1922
+ "dependencies": {
1923
+ "@npmcli/agent": "^2.0.0",
1924
+ "cacache": "^18.0.0",
1925
+ "http-cache-semantics": "^4.1.1",
1926
+ "is-lambda": "^1.0.1",
1927
+ "minipass": "^7.0.2",
1928
+ "minipass-fetch": "^3.0.0",
1929
+ "minipass-flush": "^1.0.5",
1930
+ "minipass-pipeline": "^1.2.4",
1931
+ "negotiator": "^0.6.3",
1932
+ "proc-log": "^4.2.0",
1933
+ "promise-retry": "^2.0.1",
1934
+ "ssri": "^10.0.0"
1935
+ },
1936
+ "engines": {
1937
+ "node": "^16.14.0 || >=18.0.0"
1938
+ }
1939
+ },
1940
+ "node_modules/npm/node_modules/minimatch": {
1941
+ "version": "9.0.4",
1942
+ "inBundle": true,
1943
+ "license": "ISC",
1944
+ "dependencies": {
1945
+ "brace-expansion": "^2.0.1"
1946
+ },
1947
+ "engines": {
1948
+ "node": ">=16 || 14 >=14.17"
1949
+ },
1950
+ "funding": {
1951
+ "url": "https://github.com/sponsors/isaacs"
1952
+ }
1953
+ },
1954
+ "node_modules/npm/node_modules/minipass": {
1955
+ "version": "7.1.1",
1956
+ "inBundle": true,
1957
+ "license": "ISC",
1958
+ "engines": {
1959
+ "node": ">=16 || 14 >=14.17"
1960
+ }
1961
+ },
1962
+ "node_modules/npm/node_modules/minipass-collect": {
1963
+ "version": "2.0.1",
1964
+ "inBundle": true,
1965
+ "license": "ISC",
1966
+ "dependencies": {
1967
+ "minipass": "^7.0.3"
1968
+ },
1969
+ "engines": {
1970
+ "node": ">=16 || 14 >=14.17"
1971
+ }
1972
+ },
1973
+ "node_modules/npm/node_modules/minipass-fetch": {
1974
+ "version": "3.0.5",
1975
+ "inBundle": true,
1976
+ "license": "MIT",
1977
+ "dependencies": {
1978
+ "minipass": "^7.0.3",
1979
+ "minipass-sized": "^1.0.3",
1980
+ "minizlib": "^2.1.2"
1981
+ },
1982
+ "engines": {
1983
+ "node": "^14.17.0 || ^16.13.0 || >=18.0.0"
1984
+ },
1985
+ "optionalDependencies": {
1986
+ "encoding": "^0.1.13"
1987
+ }
1988
+ },
1989
+ "node_modules/npm/node_modules/minipass-flush": {
1990
+ "version": "1.0.5",
1991
+ "inBundle": true,
1992
+ "license": "ISC",
1993
+ "dependencies": {
1994
+ "minipass": "^3.0.0"
1995
+ },
1996
+ "engines": {
1997
+ "node": ">= 8"
1998
+ }
1999
+ },
2000
+ "node_modules/npm/node_modules/minipass-flush/node_modules/minipass": {
2001
+ "version": "3.3.6",
2002
+ "inBundle": true,
2003
+ "license": "ISC",
2004
+ "dependencies": {
2005
+ "yallist": "^4.0.0"
2006
+ },
2007
+ "engines": {
2008
+ "node": ">=8"
2009
+ }
2010
+ },
2011
+ "node_modules/npm/node_modules/minipass-json-stream": {
2012
+ "version": "1.0.1",
2013
+ "inBundle": true,
2014
+ "license": "MIT",
2015
+ "dependencies": {
2016
+ "jsonparse": "^1.3.1",
2017
+ "minipass": "^3.0.0"
2018
+ }
2019
+ },
2020
+ "node_modules/npm/node_modules/minipass-json-stream/node_modules/minipass": {
2021
+ "version": "3.3.6",
2022
+ "inBundle": true,
2023
+ "license": "ISC",
2024
+ "dependencies": {
2025
+ "yallist": "^4.0.0"
2026
+ },
2027
+ "engines": {
2028
+ "node": ">=8"
2029
+ }
2030
+ },
2031
+ "node_modules/npm/node_modules/minipass-pipeline": {
2032
+ "version": "1.2.4",
2033
+ "inBundle": true,
2034
+ "license": "ISC",
2035
+ "dependencies": {
2036
+ "minipass": "^3.0.0"
2037
+ },
2038
+ "engines": {
2039
+ "node": ">=8"
2040
+ }
2041
+ },
2042
+ "node_modules/npm/node_modules/minipass-pipeline/node_modules/minipass": {
2043
+ "version": "3.3.6",
2044
+ "inBundle": true,
2045
+ "license": "ISC",
2046
+ "dependencies": {
2047
+ "yallist": "^4.0.0"
2048
+ },
2049
+ "engines": {
2050
+ "node": ">=8"
2051
+ }
2052
+ },
2053
+ "node_modules/npm/node_modules/minipass-sized": {
2054
+ "version": "1.0.3",
2055
+ "inBundle": true,
2056
+ "license": "ISC",
2057
+ "dependencies": {
2058
+ "minipass": "^3.0.0"
2059
+ },
2060
+ "engines": {
2061
+ "node": ">=8"
2062
+ }
2063
+ },
2064
+ "node_modules/npm/node_modules/minipass-sized/node_modules/minipass": {
2065
+ "version": "3.3.6",
2066
+ "inBundle": true,
2067
+ "license": "ISC",
2068
+ "dependencies": {
2069
+ "yallist": "^4.0.0"
2070
+ },
2071
+ "engines": {
2072
+ "node": ">=8"
2073
+ }
2074
+ },
2075
+ "node_modules/npm/node_modules/minizlib": {
2076
+ "version": "2.1.2",
2077
+ "inBundle": true,
2078
+ "license": "MIT",
2079
+ "dependencies": {
2080
+ "minipass": "^3.0.0",
2081
+ "yallist": "^4.0.0"
2082
+ },
2083
+ "engines": {
2084
+ "node": ">= 8"
2085
+ }
2086
+ },
2087
+ "node_modules/npm/node_modules/minizlib/node_modules/minipass": {
2088
+ "version": "3.3.6",
2089
+ "inBundle": true,
2090
+ "license": "ISC",
2091
+ "dependencies": {
2092
+ "yallist": "^4.0.0"
2093
+ },
2094
+ "engines": {
2095
+ "node": ">=8"
2096
+ }
2097
+ },
2098
+ "node_modules/npm/node_modules/mkdirp": {
2099
+ "version": "1.0.4",
2100
+ "inBundle": true,
2101
+ "license": "MIT",
2102
+ "bin": {
2103
+ "mkdirp": "bin/cmd.js"
2104
+ },
2105
+ "engines": {
2106
+ "node": ">=10"
2107
+ }
2108
+ },
2109
+ "node_modules/npm/node_modules/ms": {
2110
+ "version": "2.1.3",
2111
+ "inBundle": true,
2112
+ "license": "MIT"
2113
+ },
2114
+ "node_modules/npm/node_modules/mute-stream": {
2115
+ "version": "1.0.0",
2116
+ "inBundle": true,
2117
+ "license": "ISC",
2118
+ "engines": {
2119
+ "node": "^14.17.0 || ^16.13.0 || >=18.0.0"
2120
+ }
2121
+ },
2122
+ "node_modules/npm/node_modules/negotiator": {
2123
+ "version": "0.6.3",
2124
+ "inBundle": true,
2125
+ "license": "MIT",
2126
+ "engines": {
2127
+ "node": ">= 0.6"
2128
+ }
2129
+ },
2130
+ "node_modules/npm/node_modules/node-gyp": {
2131
+ "version": "10.1.0",
2132
+ "inBundle": true,
2133
+ "license": "MIT",
2134
+ "dependencies": {
2135
+ "env-paths": "^2.2.0",
2136
+ "exponential-backoff": "^3.1.1",
2137
+ "glob": "^10.3.10",
2138
+ "graceful-fs": "^4.2.6",
2139
+ "make-fetch-happen": "^13.0.0",
2140
+ "nopt": "^7.0.0",
2141
+ "proc-log": "^3.0.0",
2142
+ "semver": "^7.3.5",
2143
+ "tar": "^6.1.2",
2144
+ "which": "^4.0.0"
2145
+ },
2146
+ "bin": {
2147
+ "node-gyp": "bin/node-gyp.js"
2148
+ },
2149
+ "engines": {
2150
+ "node": "^16.14.0 || >=18.0.0"
2151
+ }
2152
+ },
2153
+ "node_modules/npm/node_modules/node-gyp/node_modules/proc-log": {
2154
+ "version": "3.0.0",
2155
+ "inBundle": true,
2156
+ "license": "ISC",
2157
+ "engines": {
2158
+ "node": "^14.17.0 || ^16.13.0 || >=18.0.0"
2159
+ }
2160
+ },
2161
+ "node_modules/npm/node_modules/nopt": {
2162
+ "version": "7.2.1",
2163
+ "inBundle": true,
2164
+ "license": "ISC",
2165
+ "dependencies": {
2166
+ "abbrev": "^2.0.0"
2167
+ },
2168
+ "bin": {
2169
+ "nopt": "bin/nopt.js"
2170
+ },
2171
+ "engines": {
2172
+ "node": "^14.17.0 || ^16.13.0 || >=18.0.0"
2173
+ }
2174
+ },
2175
+ "node_modules/npm/node_modules/normalize-package-data": {
2176
+ "version": "6.0.1",
2177
+ "inBundle": true,
2178
+ "license": "BSD-2-Clause",
2179
+ "dependencies": {
2180
+ "hosted-git-info": "^7.0.0",
2181
+ "is-core-module": "^2.8.1",
2182
+ "semver": "^7.3.5",
2183
+ "validate-npm-package-license": "^3.0.4"
2184
+ },
2185
+ "engines": {
2186
+ "node": "^16.14.0 || >=18.0.0"
2187
+ }
2188
+ },
2189
+ "node_modules/npm/node_modules/npm-audit-report": {
2190
+ "version": "5.0.0",
2191
+ "inBundle": true,
2192
+ "license": "ISC",
2193
+ "engines": {
2194
+ "node": "^14.17.0 || ^16.13.0 || >=18.0.0"
2195
+ }
2196
+ },
2197
+ "node_modules/npm/node_modules/npm-bundled": {
2198
+ "version": "3.0.1",
2199
+ "inBundle": true,
2200
+ "license": "ISC",
2201
+ "dependencies": {
2202
+ "npm-normalize-package-bin": "^3.0.0"
2203
+ },
2204
+ "engines": {
2205
+ "node": "^14.17.0 || ^16.13.0 || >=18.0.0"
2206
+ }
2207
+ },
2208
+ "node_modules/npm/node_modules/npm-install-checks": {
2209
+ "version": "6.3.0",
2210
+ "inBundle": true,
2211
+ "license": "BSD-2-Clause",
2212
+ "dependencies": {
2213
+ "semver": "^7.1.1"
2214
+ },
2215
+ "engines": {
2216
+ "node": "^14.17.0 || ^16.13.0 || >=18.0.0"
2217
+ }
2218
+ },
2219
+ "node_modules/npm/node_modules/npm-normalize-package-bin": {
2220
+ "version": "3.0.1",
2221
+ "inBundle": true,
2222
+ "license": "ISC",
2223
+ "engines": {
2224
+ "node": "^14.17.0 || ^16.13.0 || >=18.0.0"
2225
+ }
2226
+ },
2227
+ "node_modules/npm/node_modules/npm-package-arg": {
2228
+ "version": "11.0.2",
2229
+ "inBundle": true,
2230
+ "license": "ISC",
2231
+ "dependencies": {
2232
+ "hosted-git-info": "^7.0.0",
2233
+ "proc-log": "^4.0.0",
2234
+ "semver": "^7.3.5",
2235
+ "validate-npm-package-name": "^5.0.0"
2236
+ },
2237
+ "engines": {
2238
+ "node": "^16.14.0 || >=18.0.0"
2239
+ }
2240
+ },
2241
+ "node_modules/npm/node_modules/npm-packlist": {
2242
+ "version": "8.0.2",
2243
+ "inBundle": true,
2244
+ "license": "ISC",
2245
+ "dependencies": {
2246
+ "ignore-walk": "^6.0.4"
2247
+ },
2248
+ "engines": {
2249
+ "node": "^14.17.0 || ^16.13.0 || >=18.0.0"
2250
+ }
2251
+ },
2252
+ "node_modules/npm/node_modules/npm-pick-manifest": {
2253
+ "version": "9.0.1",
2254
+ "inBundle": true,
2255
+ "license": "ISC",
2256
+ "dependencies": {
2257
+ "npm-install-checks": "^6.0.0",
2258
+ "npm-normalize-package-bin": "^3.0.0",
2259
+ "npm-package-arg": "^11.0.0",
2260
+ "semver": "^7.3.5"
2261
+ },
2262
+ "engines": {
2263
+ "node": "^16.14.0 || >=18.0.0"
2264
+ }
2265
+ },
2266
+ "node_modules/npm/node_modules/npm-profile": {
2267
+ "version": "10.0.0",
2268
+ "inBundle": true,
2269
+ "license": "ISC",
2270
+ "dependencies": {
2271
+ "npm-registry-fetch": "^17.0.1",
2272
+ "proc-log": "^4.0.0"
2273
+ },
2274
+ "engines": {
2275
+ "node": ">=18.0.0"
2276
+ }
2277
+ },
2278
+ "node_modules/npm/node_modules/npm-registry-fetch": {
2279
+ "version": "17.0.1",
2280
+ "inBundle": true,
2281
+ "license": "ISC",
2282
+ "dependencies": {
2283
+ "@npmcli/redact": "^2.0.0",
2284
+ "make-fetch-happen": "^13.0.0",
2285
+ "minipass": "^7.0.2",
2286
+ "minipass-fetch": "^3.0.0",
2287
+ "minipass-json-stream": "^1.0.1",
2288
+ "minizlib": "^2.1.2",
2289
+ "npm-package-arg": "^11.0.0",
2290
+ "proc-log": "^4.0.0"
2291
+ },
2292
+ "engines": {
2293
+ "node": "^16.14.0 || >=18.0.0"
2294
+ }
2295
+ },
2296
+ "node_modules/npm/node_modules/npm-user-validate": {
2297
+ "version": "2.0.1",
2298
+ "inBundle": true,
2299
+ "license": "BSD-2-Clause",
2300
+ "engines": {
2301
+ "node": "^14.17.0 || ^16.13.0 || >=18.0.0"
2302
+ }
2303
+ },
2304
+ "node_modules/npm/node_modules/p-map": {
2305
+ "version": "4.0.0",
2306
+ "inBundle": true,
2307
+ "license": "MIT",
2308
+ "dependencies": {
2309
+ "aggregate-error": "^3.0.0"
2310
+ },
2311
+ "engines": {
2312
+ "node": ">=10"
2313
+ },
2314
+ "funding": {
2315
+ "url": "https://github.com/sponsors/sindresorhus"
2316
+ }
2317
+ },
2318
+ "node_modules/npm/node_modules/pacote": {
2319
+ "version": "18.0.6",
2320
+ "inBundle": true,
2321
+ "license": "ISC",
2322
+ "dependencies": {
2323
+ "@npmcli/git": "^5.0.0",
2324
+ "@npmcli/installed-package-contents": "^2.0.1",
2325
+ "@npmcli/package-json": "^5.1.0",
2326
+ "@npmcli/promise-spawn": "^7.0.0",
2327
+ "@npmcli/run-script": "^8.0.0",
2328
+ "cacache": "^18.0.0",
2329
+ "fs-minipass": "^3.0.0",
2330
+ "minipass": "^7.0.2",
2331
+ "npm-package-arg": "^11.0.0",
2332
+ "npm-packlist": "^8.0.0",
2333
+ "npm-pick-manifest": "^9.0.0",
2334
+ "npm-registry-fetch": "^17.0.0",
2335
+ "proc-log": "^4.0.0",
2336
+ "promise-retry": "^2.0.1",
2337
+ "sigstore": "^2.2.0",
2338
+ "ssri": "^10.0.0",
2339
+ "tar": "^6.1.11"
2340
+ },
2341
+ "bin": {
2342
+ "pacote": "bin/index.js"
2343
+ },
2344
+ "engines": {
2345
+ "node": "^16.14.0 || >=18.0.0"
2346
+ }
2347
+ },
2348
+ "node_modules/npm/node_modules/parse-conflict-json": {
2349
+ "version": "3.0.1",
2350
+ "inBundle": true,
2351
+ "license": "ISC",
2352
+ "dependencies": {
2353
+ "json-parse-even-better-errors": "^3.0.0",
2354
+ "just-diff": "^6.0.0",
2355
+ "just-diff-apply": "^5.2.0"
2356
+ },
2357
+ "engines": {
2358
+ "node": "^14.17.0 || ^16.13.0 || >=18.0.0"
2359
+ }
2360
+ },
2361
+ "node_modules/npm/node_modules/path-key": {
2362
+ "version": "3.1.1",
2363
+ "inBundle": true,
2364
+ "license": "MIT",
2365
+ "engines": {
2366
+ "node": ">=8"
2367
+ }
2368
+ },
2369
+ "node_modules/npm/node_modules/path-scurry": {
2370
+ "version": "1.11.1",
2371
+ "inBundle": true,
2372
+ "license": "BlueOak-1.0.0",
2373
+ "dependencies": {
2374
+ "lru-cache": "^10.2.0",
2375
+ "minipass": "^5.0.0 || ^6.0.2 || ^7.0.0"
2376
+ },
2377
+ "engines": {
2378
+ "node": ">=16 || 14 >=14.18"
2379
+ },
2380
+ "funding": {
2381
+ "url": "https://github.com/sponsors/isaacs"
2382
+ }
2383
+ },
2384
+ "node_modules/npm/node_modules/postcss-selector-parser": {
2385
+ "version": "6.0.16",
2386
+ "inBundle": true,
2387
+ "license": "MIT",
2388
+ "dependencies": {
2389
+ "cssesc": "^3.0.0",
2390
+ "util-deprecate": "^1.0.2"
2391
+ },
2392
+ "engines": {
2393
+ "node": ">=4"
2394
+ }
2395
+ },
2396
+ "node_modules/npm/node_modules/proc-log": {
2397
+ "version": "4.2.0",
2398
+ "inBundle": true,
2399
+ "license": "ISC",
2400
+ "engines": {
2401
+ "node": "^14.17.0 || ^16.13.0 || >=18.0.0"
2402
+ }
2403
+ },
2404
+ "node_modules/npm/node_modules/proggy": {
2405
+ "version": "2.0.0",
2406
+ "inBundle": true,
2407
+ "license": "ISC",
2408
+ "engines": {
2409
+ "node": "^14.17.0 || ^16.13.0 || >=18.0.0"
2410
+ }
2411
+ },
2412
+ "node_modules/npm/node_modules/promise-all-reject-late": {
2413
+ "version": "1.0.1",
2414
+ "inBundle": true,
2415
+ "license": "ISC",
2416
+ "funding": {
2417
+ "url": "https://github.com/sponsors/isaacs"
2418
+ }
2419
+ },
2420
+ "node_modules/npm/node_modules/promise-call-limit": {
2421
+ "version": "3.0.1",
2422
+ "inBundle": true,
2423
+ "license": "ISC",
2424
+ "funding": {
2425
+ "url": "https://github.com/sponsors/isaacs"
2426
+ }
2427
+ },
2428
+ "node_modules/npm/node_modules/promise-inflight": {
2429
+ "version": "1.0.1",
2430
+ "inBundle": true,
2431
+ "license": "ISC"
2432
+ },
2433
+ "node_modules/npm/node_modules/promise-retry": {
2434
+ "version": "2.0.1",
2435
+ "inBundle": true,
2436
+ "license": "MIT",
2437
+ "dependencies": {
2438
+ "err-code": "^2.0.2",
2439
+ "retry": "^0.12.0"
2440
+ },
2441
+ "engines": {
2442
+ "node": ">=10"
2443
+ }
2444
+ },
2445
+ "node_modules/npm/node_modules/promzard": {
2446
+ "version": "1.0.2",
2447
+ "inBundle": true,
2448
+ "license": "ISC",
2449
+ "dependencies": {
2450
+ "read": "^3.0.1"
2451
+ },
2452
+ "engines": {
2453
+ "node": "^14.17.0 || ^16.13.0 || >=18.0.0"
2454
+ }
2455
+ },
2456
+ "node_modules/npm/node_modules/qrcode-terminal": {
2457
+ "version": "0.12.0",
2458
+ "inBundle": true,
2459
+ "bin": {
2460
+ "qrcode-terminal": "bin/qrcode-terminal.js"
2461
+ }
2462
+ },
2463
+ "node_modules/npm/node_modules/read": {
2464
+ "version": "3.0.1",
2465
+ "inBundle": true,
2466
+ "license": "ISC",
2467
+ "dependencies": {
2468
+ "mute-stream": "^1.0.0"
2469
+ },
2470
+ "engines": {
2471
+ "node": "^14.17.0 || ^16.13.0 || >=18.0.0"
2472
+ }
2473
+ },
2474
+ "node_modules/npm/node_modules/read-cmd-shim": {
2475
+ "version": "4.0.0",
2476
+ "inBundle": true,
2477
+ "license": "ISC",
2478
+ "engines": {
2479
+ "node": "^14.17.0 || ^16.13.0 || >=18.0.0"
2480
+ }
2481
+ },
2482
+ "node_modules/npm/node_modules/read-package-json-fast": {
2483
+ "version": "3.0.2",
2484
+ "inBundle": true,
2485
+ "license": "ISC",
2486
+ "dependencies": {
2487
+ "json-parse-even-better-errors": "^3.0.0",
2488
+ "npm-normalize-package-bin": "^3.0.0"
2489
+ },
2490
+ "engines": {
2491
+ "node": "^14.17.0 || ^16.13.0 || >=18.0.0"
2492
+ }
2493
+ },
2494
+ "node_modules/npm/node_modules/retry": {
2495
+ "version": "0.12.0",
2496
+ "inBundle": true,
2497
+ "license": "MIT",
2498
+ "engines": {
2499
+ "node": ">= 4"
2500
+ }
2501
+ },
2502
+ "node_modules/npm/node_modules/safer-buffer": {
2503
+ "version": "2.1.2",
2504
+ "inBundle": true,
2505
+ "license": "MIT",
2506
+ "optional": true
2507
+ },
2508
+ "node_modules/npm/node_modules/semver": {
2509
+ "version": "7.6.2",
2510
+ "inBundle": true,
2511
+ "license": "ISC",
2512
+ "bin": {
2513
+ "semver": "bin/semver.js"
2514
+ },
2515
+ "engines": {
2516
+ "node": ">=10"
2517
+ }
2518
+ },
2519
+ "node_modules/npm/node_modules/shebang-command": {
2520
+ "version": "2.0.0",
2521
+ "inBundle": true,
2522
+ "license": "MIT",
2523
+ "dependencies": {
2524
+ "shebang-regex": "^3.0.0"
2525
+ },
2526
+ "engines": {
2527
+ "node": ">=8"
2528
+ }
2529
+ },
2530
+ "node_modules/npm/node_modules/shebang-regex": {
2531
+ "version": "3.0.0",
2532
+ "inBundle": true,
2533
+ "license": "MIT",
2534
+ "engines": {
2535
+ "node": ">=8"
2536
+ }
2537
+ },
2538
+ "node_modules/npm/node_modules/signal-exit": {
2539
+ "version": "4.1.0",
2540
+ "inBundle": true,
2541
+ "license": "ISC",
2542
+ "engines": {
2543
+ "node": ">=14"
2544
+ },
2545
+ "funding": {
2546
+ "url": "https://github.com/sponsors/isaacs"
2547
+ }
2548
+ },
2549
+ "node_modules/npm/node_modules/sigstore": {
2550
+ "version": "2.3.0",
2551
+ "inBundle": true,
2552
+ "license": "Apache-2.0",
2553
+ "dependencies": {
2554
+ "@sigstore/bundle": "^2.3.1",
2555
+ "@sigstore/core": "^1.0.0",
2556
+ "@sigstore/protobuf-specs": "^0.3.1",
2557
+ "@sigstore/sign": "^2.3.0",
2558
+ "@sigstore/tuf": "^2.3.1",
2559
+ "@sigstore/verify": "^1.2.0"
2560
+ },
2561
+ "engines": {
2562
+ "node": "^16.14.0 || >=18.0.0"
2563
+ }
2564
+ },
2565
+ "node_modules/npm/node_modules/smart-buffer": {
2566
+ "version": "4.2.0",
2567
+ "inBundle": true,
2568
+ "license": "MIT",
2569
+ "engines": {
2570
+ "node": ">= 6.0.0",
2571
+ "npm": ">= 3.0.0"
2572
+ }
2573
+ },
2574
+ "node_modules/npm/node_modules/socks": {
2575
+ "version": "2.8.3",
2576
+ "inBundle": true,
2577
+ "license": "MIT",
2578
+ "dependencies": {
2579
+ "ip-address": "^9.0.5",
2580
+ "smart-buffer": "^4.2.0"
2581
+ },
2582
+ "engines": {
2583
+ "node": ">= 10.0.0",
2584
+ "npm": ">= 3.0.0"
2585
+ }
2586
+ },
2587
+ "node_modules/npm/node_modules/socks-proxy-agent": {
2588
+ "version": "8.0.3",
2589
+ "inBundle": true,
2590
+ "license": "MIT",
2591
+ "dependencies": {
2592
+ "agent-base": "^7.1.1",
2593
+ "debug": "^4.3.4",
2594
+ "socks": "^2.7.1"
2595
+ },
2596
+ "engines": {
2597
+ "node": ">= 14"
2598
+ }
2599
+ },
2600
+ "node_modules/npm/node_modules/spdx-correct": {
2601
+ "version": "3.2.0",
2602
+ "inBundle": true,
2603
+ "license": "Apache-2.0",
2604
+ "dependencies": {
2605
+ "spdx-expression-parse": "^3.0.0",
2606
+ "spdx-license-ids": "^3.0.0"
2607
+ }
2608
+ },
2609
+ "node_modules/npm/node_modules/spdx-correct/node_modules/spdx-expression-parse": {
2610
+ "version": "3.0.1",
2611
+ "inBundle": true,
2612
+ "license": "MIT",
2613
+ "dependencies": {
2614
+ "spdx-exceptions": "^2.1.0",
2615
+ "spdx-license-ids": "^3.0.0"
2616
+ }
2617
+ },
2618
+ "node_modules/npm/node_modules/spdx-exceptions": {
2619
+ "version": "2.5.0",
2620
+ "inBundle": true,
2621
+ "license": "CC-BY-3.0"
2622
+ },
2623
+ "node_modules/npm/node_modules/spdx-expression-parse": {
2624
+ "version": "4.0.0",
2625
+ "inBundle": true,
2626
+ "license": "MIT",
2627
+ "dependencies": {
2628
+ "spdx-exceptions": "^2.1.0",
2629
+ "spdx-license-ids": "^3.0.0"
2630
+ }
2631
+ },
2632
+ "node_modules/npm/node_modules/spdx-license-ids": {
2633
+ "version": "3.0.17",
2634
+ "inBundle": true,
2635
+ "license": "CC0-1.0"
2636
+ },
2637
+ "node_modules/npm/node_modules/sprintf-js": {
2638
+ "version": "1.1.3",
2639
+ "inBundle": true,
2640
+ "license": "BSD-3-Clause"
2641
+ },
2642
+ "node_modules/npm/node_modules/ssri": {
2643
+ "version": "10.0.6",
2644
+ "inBundle": true,
2645
+ "license": "ISC",
2646
+ "dependencies": {
2647
+ "minipass": "^7.0.3"
2648
+ },
2649
+ "engines": {
2650
+ "node": "^14.17.0 || ^16.13.0 || >=18.0.0"
2651
+ }
2652
+ },
2653
+ "node_modules/npm/node_modules/string-width": {
2654
+ "version": "4.2.3",
2655
+ "inBundle": true,
2656
+ "license": "MIT",
2657
+ "dependencies": {
2658
+ "emoji-regex": "^8.0.0",
2659
+ "is-fullwidth-code-point": "^3.0.0",
2660
+ "strip-ansi": "^6.0.1"
2661
+ },
2662
+ "engines": {
2663
+ "node": ">=8"
2664
+ }
2665
+ },
2666
+ "node_modules/npm/node_modules/string-width-cjs": {
2667
+ "name": "string-width",
2668
+ "version": "4.2.3",
2669
+ "inBundle": true,
2670
+ "license": "MIT",
2671
+ "dependencies": {
2672
+ "emoji-regex": "^8.0.0",
2673
+ "is-fullwidth-code-point": "^3.0.0",
2674
+ "strip-ansi": "^6.0.1"
2675
+ },
2676
+ "engines": {
2677
+ "node": ">=8"
2678
+ }
2679
+ },
2680
+ "node_modules/npm/node_modules/strip-ansi": {
2681
+ "version": "6.0.1",
2682
+ "inBundle": true,
2683
+ "license": "MIT",
2684
+ "dependencies": {
2685
+ "ansi-regex": "^5.0.1"
2686
+ },
2687
+ "engines": {
2688
+ "node": ">=8"
2689
+ }
2690
+ },
2691
+ "node_modules/npm/node_modules/strip-ansi-cjs": {
2692
+ "name": "strip-ansi",
2693
+ "version": "6.0.1",
2694
+ "inBundle": true,
2695
+ "license": "MIT",
2696
+ "dependencies": {
2697
+ "ansi-regex": "^5.0.1"
2698
+ },
2699
+ "engines": {
2700
+ "node": ">=8"
2701
+ }
2702
+ },
2703
+ "node_modules/npm/node_modules/supports-color": {
2704
+ "version": "9.4.0",
2705
+ "inBundle": true,
2706
+ "license": "MIT",
2707
+ "engines": {
2708
+ "node": ">=12"
2709
+ },
2710
+ "funding": {
2711
+ "url": "https://github.com/chalk/supports-color?sponsor=1"
2712
+ }
2713
+ },
2714
+ "node_modules/npm/node_modules/tar": {
2715
+ "version": "6.2.1",
2716
+ "inBundle": true,
2717
+ "license": "ISC",
2718
+ "dependencies": {
2719
+ "chownr": "^2.0.0",
2720
+ "fs-minipass": "^2.0.0",
2721
+ "minipass": "^5.0.0",
2722
+ "minizlib": "^2.1.1",
2723
+ "mkdirp": "^1.0.3",
2724
+ "yallist": "^4.0.0"
2725
+ },
2726
+ "engines": {
2727
+ "node": ">=10"
2728
+ }
2729
+ },
2730
+ "node_modules/npm/node_modules/tar/node_modules/fs-minipass": {
2731
+ "version": "2.1.0",
2732
+ "inBundle": true,
2733
+ "license": "ISC",
2734
+ "dependencies": {
2735
+ "minipass": "^3.0.0"
2736
+ },
2737
+ "engines": {
2738
+ "node": ">= 8"
2739
+ }
2740
+ },
2741
+ "node_modules/npm/node_modules/tar/node_modules/fs-minipass/node_modules/minipass": {
2742
+ "version": "3.3.6",
2743
+ "inBundle": true,
2744
+ "license": "ISC",
2745
+ "dependencies": {
2746
+ "yallist": "^4.0.0"
2747
+ },
2748
+ "engines": {
2749
+ "node": ">=8"
2750
+ }
2751
+ },
2752
+ "node_modules/npm/node_modules/tar/node_modules/minipass": {
2753
+ "version": "5.0.0",
2754
+ "inBundle": true,
2755
+ "license": "ISC",
2756
+ "engines": {
2757
+ "node": ">=8"
2758
+ }
2759
+ },
2760
+ "node_modules/npm/node_modules/text-table": {
2761
+ "version": "0.2.0",
2762
+ "inBundle": true,
2763
+ "license": "MIT"
2764
+ },
2765
+ "node_modules/npm/node_modules/tiny-relative-date": {
2766
+ "version": "1.3.0",
2767
+ "inBundle": true,
2768
+ "license": "MIT"
2769
+ },
2770
+ "node_modules/npm/node_modules/treeverse": {
2771
+ "version": "3.0.0",
2772
+ "inBundle": true,
2773
+ "license": "ISC",
2774
+ "engines": {
2775
+ "node": "^14.17.0 || ^16.13.0 || >=18.0.0"
2776
+ }
2777
+ },
2778
+ "node_modules/npm/node_modules/tuf-js": {
2779
+ "version": "2.2.1",
2780
+ "inBundle": true,
2781
+ "license": "MIT",
2782
+ "dependencies": {
2783
+ "@tufjs/models": "2.0.1",
2784
+ "debug": "^4.3.4",
2785
+ "make-fetch-happen": "^13.0.1"
2786
+ },
2787
+ "engines": {
2788
+ "node": "^16.14.0 || >=18.0.0"
2789
+ }
2790
+ },
2791
+ "node_modules/npm/node_modules/unique-filename": {
2792
+ "version": "3.0.0",
2793
+ "inBundle": true,
2794
+ "license": "ISC",
2795
+ "dependencies": {
2796
+ "unique-slug": "^4.0.0"
2797
+ },
2798
+ "engines": {
2799
+ "node": "^14.17.0 || ^16.13.0 || >=18.0.0"
2800
+ }
2801
+ },
2802
+ "node_modules/npm/node_modules/unique-slug": {
2803
+ "version": "4.0.0",
2804
+ "inBundle": true,
2805
+ "license": "ISC",
2806
+ "dependencies": {
2807
+ "imurmurhash": "^0.1.4"
2808
+ },
2809
+ "engines": {
2810
+ "node": "^14.17.0 || ^16.13.0 || >=18.0.0"
2811
+ }
2812
+ },
2813
+ "node_modules/npm/node_modules/util-deprecate": {
2814
+ "version": "1.0.2",
2815
+ "inBundle": true,
2816
+ "license": "MIT"
2817
+ },
2818
+ "node_modules/npm/node_modules/validate-npm-package-license": {
2819
+ "version": "3.0.4",
2820
+ "inBundle": true,
2821
+ "license": "Apache-2.0",
2822
+ "dependencies": {
2823
+ "spdx-correct": "^3.0.0",
2824
+ "spdx-expression-parse": "^3.0.0"
2825
+ }
2826
+ },
2827
+ "node_modules/npm/node_modules/validate-npm-package-license/node_modules/spdx-expression-parse": {
2828
+ "version": "3.0.1",
2829
+ "inBundle": true,
2830
+ "license": "MIT",
2831
+ "dependencies": {
2832
+ "spdx-exceptions": "^2.1.0",
2833
+ "spdx-license-ids": "^3.0.0"
2834
+ }
2835
+ },
2836
+ "node_modules/npm/node_modules/validate-npm-package-name": {
2837
+ "version": "5.0.1",
2838
+ "inBundle": true,
2839
+ "license": "ISC",
2840
+ "engines": {
2841
+ "node": "^14.17.0 || ^16.13.0 || >=18.0.0"
2842
+ }
2843
+ },
2844
+ "node_modules/npm/node_modules/walk-up-path": {
2845
+ "version": "3.0.1",
2846
+ "inBundle": true,
2847
+ "license": "ISC"
2848
+ },
2849
+ "node_modules/npm/node_modules/which": {
2850
+ "version": "4.0.0",
2851
+ "inBundle": true,
2852
+ "license": "ISC",
2853
+ "dependencies": {
2854
+ "isexe": "^3.1.1"
2855
+ },
2856
+ "bin": {
2857
+ "node-which": "bin/which.js"
2858
+ },
2859
+ "engines": {
2860
+ "node": "^16.13.0 || >=18.0.0"
2861
+ }
2862
+ },
2863
+ "node_modules/npm/node_modules/which/node_modules/isexe": {
2864
+ "version": "3.1.1",
2865
+ "inBundle": true,
2866
+ "license": "ISC",
2867
+ "engines": {
2868
+ "node": ">=16"
2869
+ }
2870
+ },
2871
+ "node_modules/npm/node_modules/wrap-ansi": {
2872
+ "version": "8.1.0",
2873
+ "inBundle": true,
2874
+ "license": "MIT",
2875
+ "dependencies": {
2876
+ "ansi-styles": "^6.1.0",
2877
+ "string-width": "^5.0.1",
2878
+ "strip-ansi": "^7.0.1"
2879
+ },
2880
+ "engines": {
2881
+ "node": ">=12"
2882
+ },
2883
+ "funding": {
2884
+ "url": "https://github.com/chalk/wrap-ansi?sponsor=1"
2885
+ }
2886
+ },
2887
+ "node_modules/npm/node_modules/wrap-ansi-cjs": {
2888
+ "name": "wrap-ansi",
2889
+ "version": "7.0.0",
2890
+ "inBundle": true,
2891
+ "license": "MIT",
2892
+ "dependencies": {
2893
+ "ansi-styles": "^4.0.0",
2894
+ "string-width": "^4.1.0",
2895
+ "strip-ansi": "^6.0.0"
2896
+ },
2897
+ "engines": {
2898
+ "node": ">=10"
2899
+ },
2900
+ "funding": {
2901
+ "url": "https://github.com/chalk/wrap-ansi?sponsor=1"
2902
+ }
2903
+ },
2904
+ "node_modules/npm/node_modules/wrap-ansi-cjs/node_modules/ansi-styles": {
2905
+ "version": "4.3.0",
2906
+ "inBundle": true,
2907
+ "license": "MIT",
2908
+ "dependencies": {
2909
+ "color-convert": "^2.0.1"
2910
+ },
2911
+ "engines": {
2912
+ "node": ">=8"
2913
+ },
2914
+ "funding": {
2915
+ "url": "https://github.com/chalk/ansi-styles?sponsor=1"
2916
+ }
2917
+ },
2918
+ "node_modules/npm/node_modules/wrap-ansi/node_modules/ansi-regex": {
2919
+ "version": "6.0.1",
2920
+ "inBundle": true,
2921
+ "license": "MIT",
2922
+ "engines": {
2923
+ "node": ">=12"
2924
+ },
2925
+ "funding": {
2926
+ "url": "https://github.com/chalk/ansi-regex?sponsor=1"
2927
+ }
2928
+ },
2929
+ "node_modules/npm/node_modules/wrap-ansi/node_modules/emoji-regex": {
2930
+ "version": "9.2.2",
2931
+ "inBundle": true,
2932
+ "license": "MIT"
2933
+ },
2934
+ "node_modules/npm/node_modules/wrap-ansi/node_modules/string-width": {
2935
+ "version": "5.1.2",
2936
+ "inBundle": true,
2937
+ "license": "MIT",
2938
+ "dependencies": {
2939
+ "eastasianwidth": "^0.2.0",
2940
+ "emoji-regex": "^9.2.2",
2941
+ "strip-ansi": "^7.0.1"
2942
+ },
2943
+ "engines": {
2944
+ "node": ">=12"
2945
+ },
2946
+ "funding": {
2947
+ "url": "https://github.com/sponsors/sindresorhus"
2948
+ }
2949
+ },
2950
+ "node_modules/npm/node_modules/wrap-ansi/node_modules/strip-ansi": {
2951
+ "version": "7.1.0",
2952
+ "inBundle": true,
2953
+ "license": "MIT",
2954
+ "dependencies": {
2955
+ "ansi-regex": "^6.0.1"
2956
+ },
2957
+ "engines": {
2958
+ "node": ">=12"
2959
+ },
2960
+ "funding": {
2961
+ "url": "https://github.com/chalk/strip-ansi?sponsor=1"
2962
+ }
2963
+ },
2964
+ "node_modules/npm/node_modules/write-file-atomic": {
2965
+ "version": "5.0.1",
2966
+ "inBundle": true,
2967
+ "license": "ISC",
2968
+ "dependencies": {
2969
+ "imurmurhash": "^0.1.4",
2970
+ "signal-exit": "^4.0.1"
2971
+ },
2972
+ "engines": {
2973
+ "node": "^14.17.0 || ^16.13.0 || >=18.0.0"
2974
+ }
2975
+ },
2976
+ "node_modules/npm/node_modules/yallist": {
2977
+ "version": "4.0.0",
2978
+ "inBundle": true,
2979
+ "license": "ISC"
2980
+ },
2981
  "node_modules/object-assign": {
2982
  "version": "4.1.1",
2983
  "resolved": "https://registry.npmjs.org/object-assign/-/object-assign-4.1.1.tgz",
package.json CHANGED
@@ -4,7 +4,10 @@
4
  "cors": "^2.8.5",
5
  "dotenv": "^16.4.5",
6
  "express": "^4.19.2",
7
- "fs": "^0.0.1-security"
 
 
 
8
  },
9
  "name": "aru_dongo",
10
  "type": "module",
 
4
  "cors": "^2.8.5",
5
  "dotenv": "^16.4.5",
6
  "express": "^4.19.2",
7
+ "express-rate-limit": "^7.2.0",
8
+ "fs": "^0.0.1-security",
9
+ "i": "^0.3.7",
10
+ "npm": "^10.8.0"
11
  },
12
  "name": "aru_dongo",
13
  "type": "module",