@cyfrin/aderyn 0.6.5 → 0.6.7

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/README.md CHANGED
@@ -16,7 +16,7 @@
16
16
  <p align="center">
17
17
  <a href="https://cyfrin.gitbook.io/cyfrin-docs/aderyn-cli/readme">Docs</a>
18
18
  <a href="https://discord.gg/cyfrin">Discord</a>
19
- <a href="https://twitter.com/cyfrinaudits">Twitter</a>
19
+ <a href="https://x.com/cyfrin">X/Twitter</a>
20
20
  <p>
21
21
 
22
22
  ---
@@ -42,61 +42,48 @@ code with ease.
42
42
 
43
43
  ## Features
44
44
 
45
- - Off the shelf support for Foundry projects.
46
- - Off the shelf support for Hardhat projects. (Sometimes `remappings.txt` maybe required)
47
- - Configuration file (`aderyn.toml`) needed to support custom frameworks.
48
- - Markdown, JSON and Sarif reports
45
+ - Runs without need for any configuration support for Foundry and Hardhat projects.
46
+ - Creates Markdown, JSON and Sarif reports.
47
+ - Powers our officially supported [VSCode extension](https://github.com/Cyfrin/vscode-aderyn/) (1800+ downloads)
48
+ - List of [supported detectors](https://cyfrin.gitbook.io/cyfrin-docs/project-configuration/list-of-supported-detectors)
49
+ - Contributor Friendly
50
+ - Downloaded more than 45K times.
49
51
 
50
52
  ## Installation
51
53
 
52
54
  > **NOTE** Windows users must have WSL installed
53
55
 
54
- ### Using Cyfrinup
56
+ #### Cyfrinup - All in one cross platform installation manager for Cyfrin tools.
55
57
 
56
- **Cyfrinup** is the cross platform installation manager for Cyfrin tools.
58
+ [One time setup](https://github.com/Cyfrin/up). - Run `cyfrinup`
57
59
 
58
- [One time setup](https://github.com/Cyfrin/up).
59
-
60
- Run `aderyn --version` to check the installation.
61
-
62
- Run `cyfrinup` to upgrade everything to the latest version.
63
-
64
- ---
65
-
66
- ### Using curl
60
+ Re-run `cyfrinup` to upgrade all Cyfrin tools to the latest version.
67
61
 
62
+ #### Curl
63
+ Once installed, run `aderyn-update` to upgrade.
68
64
  ```sh
69
65
  curl --proto '=https' --tlsv1.2 -LsSf https://github.com/cyfrin/aderyn/releases/latest/download/aderyn-installer.sh | bash
70
66
  ```
71
67
 
72
- ##### Upgrade older versions by running: `aderyn-update`
73
-
74
- ---
75
-
76
- ### Using Homebrew
77
68
 
69
+ #### Homebrew
70
+ Once installed, run `brew upgrade cyfrin/tap/aderyn` to upgrade.
78
71
  ```sh
79
72
  brew install cyfrin/tap/aderyn
80
73
  ```
81
74
 
82
- ##### Upgrade older versions by running: `brew upgrade cyfrin/tap/aderyn`
83
-
84
- ---
85
-
86
- ### Using npm
87
-
75
+ #### npm
76
+ Once installed, re-run `npm install @cyfrin/aderyn -g` to upgrade.
88
77
  ```sh
89
78
  npm install @cyfrin/aderyn -g
90
79
  ```
91
80
 
92
- ##### Upgrade older versions by (re)running: `npm install @cyfrin/aderyn -g`
93
-
94
- ---
95
-
96
81
  If you are installing with Curl or Homebrew or npm, ensure that the correct version of Aderyn in your path comes from either the Homebrew or npm global packages directory. If an older version exists at `~/.cyfrin/bin/aderyn`, remove it using `rm -f ~/.cyfrin/bin/aderyn`, as this is no longer the default installation location.
97
82
 
98
83
  ## Quick Start
99
84
 
85
+ Run `aderyn --version` to check if Aderyn is installed successfully.
86
+
100
87
  [Quick Start](https://cyfrin.gitbook.io/cyfrin-docs/aderyn-cli/quickstart) example with video guide.
101
88
 
102
89
  ```
@@ -113,16 +100,20 @@ See examples using more CLI options [here](https://cyfrin.gitbook.io/cyfrin-docs
113
100
  Officially supported [VSCode extension](https://github.com/Cyfrin/vscode-aderyn/) for Aderyn.
114
101
  Download from [Visual Studio Marketplace](https://marketplace.visualstudio.com/items?itemName=Cyfrin.aderyn&ssr=false#overview)
115
102
 
103
+ ## Github Action
104
+
105
+ Checkout [Aderyn CI Assistant](https://github.com/marketplace/actions/aderyn-ci-assistant) in the marketplace.
106
+ Performs Static analysis on Solidity codebases in CI to catch potential vulnerabilities before committing code.
107
+
116
108
  ## Contributing & License
117
109
 
118
110
  Help us build Aderyn 🦜 Please see our [contribution guidelines](./CONTRIBUTING.md) for in-depth developer environment setup and PR approval process.
119
111
  Aderyn is an open-source software licensed under the [GPL-3.0 License](./LICENSE).
120
112
 
121
- ## Building a custom Aderyn detector
122
-
123
- Aderyn makes it easy to build Static Analysis detectors that can adapt to any Solidity codebase and protocol. This guide will teach you how to build, test, and run your custom Aderyn detectors.
124
113
  To learn how to create your custom Aderyn detectors, [checkout the official docs](https://cyfrin.gitbook.io/cyfrin-docs/aderyn-cli/detectors-quickstart)
125
114
 
115
+ Aderyn relies on a [custom backend](https://github.com/Cyfrin/solidity-ast-rs) to generate AST for Solidity codebases.
116
+ It leverages [foundry-compilers](https://github.com/foundry-rs/compilers)
126
117
 
127
118
  ## Credits
128
119
 
@@ -134,11 +125,10 @@ This project exists thanks to all the people who [contribute](/CONTRIBUTING.md).
134
125
 
135
126
  ## Attribution
136
127
 
137
- - AST Visitor code from [solc-ast-rs](https://github.com/hrkrshnn/solc-ast-rs).
138
- - Foundry Compilers for backend AST generation [foundry-compilers](https://github.com/foundry-rs/compilers)
128
+ - Initial inspiration for AST Visitor code from [solc-ast-rs](https://github.com/hrkrshnn/solc-ast-rs).
139
129
  - Original detectors based on [4naly3er](https://github.com/Picodes/4naly3er) detectors.
140
130
  - Shoutout to the original king of static analysis [slither](https://github.com/crytic/slither).
141
- - Solidity AST Generator [solidity-ast-rs](https://github.com/Cyfrin/solidity-ast-rs).
131
+
142
132
 
143
133
  [contributors-shield]: https://img.shields.io/github/contributors/cyfrin/aderyn
144
134
  [contributors-url]: https://github.com/cyfrin/aderyn/graphs/contributors
package/binary-install.js CHANGED
@@ -13,7 +13,7 @@ const error = (msg) => {
13
13
  };
14
14
 
15
15
  class Package {
16
- constructor(name, url, filename, zipExt, binaries) {
16
+ constructor(platform, name, url, filename, zipExt, binaries) {
17
17
  let errors = [];
18
18
  if (typeof url !== "string") {
19
19
  errors.push("url must be a string");
@@ -47,6 +47,8 @@ class Package {
47
47
  '\n\nCorrect usage: new Package("my-binary", "https://example.com/binary/download.tar.gz", {"my-binary": "my-binary"})';
48
48
  error(errorMsg);
49
49
  }
50
+
51
+ this.platform = platform;
50
52
  this.url = url;
51
53
  this.name = name;
52
54
  this.filename = filename;
@@ -122,12 +124,30 @@ class Package {
122
124
  );
123
125
  }
124
126
  } else if (this.zipExt == ".zip") {
125
- const result = spawnSync("unzip", [
126
- "-q",
127
- tempFile,
128
- "-d",
129
- this.installDirectory,
130
- ]);
127
+ let result;
128
+ if (this.platform.artifactName.includes("windows")) {
129
+ // Windows does not have "unzip" by default on many installations, instead
130
+ // we use Expand-Archive from powershell
131
+ result = spawnSync("powershell.exe", [
132
+ "-NoProfile",
133
+ "-NonInteractive",
134
+ "-Command",
135
+ `& {
136
+ param([string]$LiteralPath, [string]$DestinationPath)
137
+ Expand-Archive -LiteralPath $LiteralPath -DestinationPath $DestinationPath -Force
138
+ }`,
139
+ tempFile,
140
+ this.installDirectory,
141
+ ]);
142
+ } else {
143
+ result = spawnSync("unzip", [
144
+ "-q",
145
+ tempFile,
146
+ "-d",
147
+ this.installDirectory,
148
+ ]);
149
+ }
150
+
131
151
  if (result.status == 0) {
132
152
  resolve();
133
153
  } else if (result.error) {
package/binary.js CHANGED
@@ -96,7 +96,7 @@ const getPackage = () => {
96
96
  const url = `${artifactDownloadUrl}/${platform.artifactName}`;
97
97
  let filename = platform.artifactName;
98
98
  let ext = platform.zipExt;
99
- let binary = new Package(name, url, filename, ext, platform.bins);
99
+ let binary = new Package(platform, name, url, filename, ext, platform.bins);
100
100
 
101
101
  return binary;
102
102
  };
@@ -7,14 +7,14 @@
7
7
  "aderyn": "run-aderyn.js"
8
8
  },
9
9
  "dependencies": {
10
- "axios": "^1.7.9",
10
+ "axios": "^1.13.2",
11
11
  "axios-proxy-builder": "^0.1.2",
12
12
  "console.table": "^0.10.0",
13
- "detect-libc": "^2.0.3",
14
- "rimraf": "^5.0.8"
13
+ "detect-libc": "^2.1.2",
14
+ "rimraf": "^6.1.2"
15
15
  },
16
16
  "devDependencies": {
17
- "prettier": "^3.4.2"
17
+ "prettier": "^3.7.4"
18
18
  },
19
19
  "engines": {
20
20
  "node": ">=14",
@@ -23,58 +23,28 @@
23
23
  "hasInstallScript": true,
24
24
  "license": "MIT",
25
25
  "name": "@cyfrin/aderyn",
26
- "version": "0.6.5"
26
+ "version": "0.6.7"
27
27
  },
28
- "node_modules/@isaacs/cliui": {
29
- "dependencies": {
30
- "string-width": "^5.1.2",
31
- "string-width-cjs": "npm:string-width@^4.2.0",
32
- "strip-ansi": "^7.0.1",
33
- "strip-ansi-cjs": "npm:strip-ansi@^6.0.1",
34
- "wrap-ansi": "^8.1.0",
35
- "wrap-ansi-cjs": "npm:wrap-ansi@^7.0.0"
36
- },
28
+ "node_modules/@isaacs/balanced-match": {
37
29
  "engines": {
38
- "node": ">=12"
30
+ "node": "20 || >=22"
39
31
  },
40
- "integrity": "sha512-O8jcjabXaleOG9DQ0+ARXWZBTfnP4WNAqzuiJK7ll44AmxGKv/J2M4TPjxjY3znBCfvBXFzucm1twdyFybFqEA==",
41
- "license": "ISC",
42
- "resolved": "https://registry.npmjs.org/@isaacs/cliui/-/cliui-8.0.2.tgz",
43
- "version": "8.0.2"
44
- },
45
- "node_modules/@pkgjs/parseargs": {
46
- "engines": {
47
- "node": ">=14"
48
- },
49
- "integrity": "sha512-+1VkjdD0QBLPodGrJUeqarH8VAIvQODIbwh9XpP5Syisf7YoQgsJKPNFoqqLQlu+VQ/tVSshMR6loPMn8U+dPg==",
32
+ "integrity": "sha512-yzMTt9lEb8Gv7zRioUilSglI0c0smZ9k5D65677DLWLtWJaXIS3CqcGyUFByYKlnUj6TkjLVs54fBl6+TiGQDQ==",
50
33
  "license": "MIT",
51
- "optional": true,
52
- "resolved": "https://registry.npmjs.org/@pkgjs/parseargs/-/parseargs-0.11.0.tgz",
53
- "version": "0.11.0"
34
+ "resolved": "https://registry.npmjs.org/@isaacs/balanced-match/-/balanced-match-4.0.1.tgz",
35
+ "version": "4.0.1"
54
36
  },
55
- "node_modules/ansi-regex": {
56
- "engines": {
57
- "node": ">=12"
58
- },
59
- "funding": {
60
- "url": "https://github.com/chalk/ansi-regex?sponsor=1"
37
+ "node_modules/@isaacs/brace-expansion": {
38
+ "dependencies": {
39
+ "@isaacs/balanced-match": "^4.0.1"
61
40
  },
62
- "integrity": "sha512-n5M855fKb2SsfMIiFFoVrABHJC8QtHwVx+mHWP3QcEqBHYienj5dHSgjbxtC0WEZXYt4wcD6zrQElDPhFuZgfA==",
63
- "license": "MIT",
64
- "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-6.0.1.tgz",
65
- "version": "6.0.1"
66
- },
67
- "node_modules/ansi-styles": {
68
41
  "engines": {
69
- "node": ">=12"
70
- },
71
- "funding": {
72
- "url": "https://github.com/chalk/ansi-styles?sponsor=1"
42
+ "node": "20 || >=22"
73
43
  },
74
- "integrity": "sha512-bN798gFfQX+viw3R7yrGWRqnrN2oRkEkUjjl4JNn4E8GxxbjtG3FbrEIIY3l8/hrwUwIeCZvi4QuOTP4MErVug==",
44
+ "integrity": "sha512-ZT55BDLV0yv0RBm2czMiZ+SqCGO7AvmOM3G/w2xhVPH+te0aKgFjmBvGlL1dH+ql2tgGO3MVrbb3jCKyvpgnxA==",
75
45
  "license": "MIT",
76
- "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-6.2.1.tgz",
77
- "version": "6.2.1"
46
+ "resolved": "https://registry.npmjs.org/@isaacs/brace-expansion/-/brace-expansion-5.0.0.tgz",
47
+ "version": "5.0.0"
78
48
  },
79
49
  "node_modules/asynckit": {
80
50
  "integrity": "sha512-Oei9OH4tRh0YqU3GxhX79dM/mwVgvbZJaSNaRk+bshkj0S5cfHcgYakreBjrHwatXKbz+IoIdYLxrKim2MjW0Q==",
@@ -85,13 +55,13 @@
85
55
  "node_modules/axios": {
86
56
  "dependencies": {
87
57
  "follow-redirects": "^1.15.6",
88
- "form-data": "^4.0.0",
58
+ "form-data": "^4.0.4",
89
59
  "proxy-from-env": "^1.1.0"
90
60
  },
91
- "integrity": "sha512-LhLcE7Hbiryz8oMDdDptSrWowmB4Bl6RCt6sIJKpRB4XtVf0iEgewX3au/pJqm+Py1kCASkb/FFKjxQaLtxJvw==",
61
+ "integrity": "sha512-VPk9ebNqPcy5lRGuSlKx752IlDatOjT9paPlm8A7yOuW2Fbvp4X3JznJtT4f0GzGLLiWE9W8onz51SqLYwzGaA==",
92
62
  "license": "MIT",
93
- "resolved": "https://registry.npmjs.org/axios/-/axios-1.7.9.tgz",
94
- "version": "1.7.9"
63
+ "resolved": "https://registry.npmjs.org/axios/-/axios-1.13.2.tgz",
64
+ "version": "1.13.2"
95
65
  },
96
66
  "node_modules/axios-proxy-builder": {
97
67
  "dependencies": {
@@ -102,20 +72,18 @@
102
72
  "resolved": "https://registry.npmjs.org/axios-proxy-builder/-/axios-proxy-builder-0.1.2.tgz",
103
73
  "version": "0.1.2"
104
74
  },
105
- "node_modules/balanced-match": {
106
- "integrity": "sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==",
107
- "license": "MIT",
108
- "resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.2.tgz",
109
- "version": "1.0.2"
110
- },
111
- "node_modules/brace-expansion": {
75
+ "node_modules/call-bind-apply-helpers": {
112
76
  "dependencies": {
113
- "balanced-match": "^1.0.0"
77
+ "es-errors": "^1.3.0",
78
+ "function-bind": "^1.1.2"
79
+ },
80
+ "engines": {
81
+ "node": ">= 0.4"
114
82
  },
115
- "integrity": "sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA==",
83
+ "integrity": "sha512-Sp1ablJ0ivDkSzjcaJdxEunN5/XvksFJ2sMBFfq6x0ryhQV/2b/KwFe21cMpmHtPOSij8K99/wSfoEuTObmuMQ==",
116
84
  "license": "MIT",
117
- "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-2.0.1.tgz",
118
- "version": "2.0.1"
85
+ "resolved": "https://registry.npmjs.org/call-bind-apply-helpers/-/call-bind-apply-helpers-1.0.2.tgz",
86
+ "version": "1.0.2"
119
87
  },
120
88
  "node_modules/clone": {
121
89
  "engines": {
@@ -127,24 +95,6 @@
127
95
  "resolved": "https://registry.npmjs.org/clone/-/clone-1.0.4.tgz",
128
96
  "version": "1.0.4"
129
97
  },
130
- "node_modules/color-convert": {
131
- "dependencies": {
132
- "color-name": "~1.1.4"
133
- },
134
- "engines": {
135
- "node": ">=7.0.0"
136
- },
137
- "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==",
138
- "license": "MIT",
139
- "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz",
140
- "version": "2.0.1"
141
- },
142
- "node_modules/color-name": {
143
- "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==",
144
- "license": "MIT",
145
- "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz",
146
- "version": "1.1.4"
147
- },
148
98
  "node_modules/combined-stream": {
149
99
  "dependencies": {
150
100
  "delayed-stream": "~1.0.0"
@@ -169,20 +119,6 @@
169
119
  "resolved": "https://registry.npmjs.org/console.table/-/console.table-0.10.0.tgz",
170
120
  "version": "0.10.0"
171
121
  },
172
- "node_modules/cross-spawn": {
173
- "dependencies": {
174
- "path-key": "^3.1.0",
175
- "shebang-command": "^2.0.0",
176
- "which": "^2.0.1"
177
- },
178
- "engines": {
179
- "node": ">= 8"
180
- },
181
- "integrity": "sha512-uV2QOWP2nWzsy2aMp8aRibhi9dlzF5Hgh5SHaB9OiTGEyDTiJJyx0uy51QXdyWbtAHNua4XJzUKca3OzKUd3vA==",
182
- "license": "MIT",
183
- "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-7.0.6.tgz",
184
- "version": "7.0.6"
185
- },
186
122
  "node_modules/defaults": {
187
123
  "dependencies": {
188
124
  "clone": "^1.0.2"
@@ -209,16 +145,24 @@
209
145
  "engines": {
210
146
  "node": ">=8"
211
147
  },
212
- "integrity": "sha512-bwy0MGW55bG41VqxxypOsdSdGqLwXPI/focwgTYCFMbdUiBAxLg9CFzG08sz2aqzknwiX7Hkl0bQENjg8iLByw==",
148
+ "integrity": "sha512-Btj2BOOO83o3WyH59e8MgXsxEQVcarkUOpEYrubB0urwnN10yQ364rsiByU11nZlqWYZm05i/of7io4mzihBtQ==",
213
149
  "license": "Apache-2.0",
214
- "resolved": "https://registry.npmjs.org/detect-libc/-/detect-libc-2.0.3.tgz",
215
- "version": "2.0.3"
150
+ "resolved": "https://registry.npmjs.org/detect-libc/-/detect-libc-2.1.2.tgz",
151
+ "version": "2.1.2"
216
152
  },
217
- "node_modules/eastasianwidth": {
218
- "integrity": "sha512-I88TYZWc9XiYHRQ4/3c5rjjfgkjhLyW2luGIheGERbNQ6OY7yTybanSpDXZa8y7VUP9YmDcYa+eyq4ca7iLqWA==",
153
+ "node_modules/dunder-proto": {
154
+ "dependencies": {
155
+ "call-bind-apply-helpers": "^1.0.1",
156
+ "es-errors": "^1.3.0",
157
+ "gopd": "^1.2.0"
158
+ },
159
+ "engines": {
160
+ "node": ">= 0.4"
161
+ },
162
+ "integrity": "sha512-KIN/nDJBQRcXw0MLVhZE9iQHmG68qAVIBg9CqmUYjmQIhgij9U5MFvrqkUL5FbtyyzZuOeOt0zdeRe4UY7ct+A==",
219
163
  "license": "MIT",
220
- "resolved": "https://registry.npmjs.org/eastasianwidth/-/eastasianwidth-0.2.0.tgz",
221
- "version": "0.2.0"
164
+ "resolved": "https://registry.npmjs.org/dunder-proto/-/dunder-proto-1.0.1.tgz",
165
+ "version": "1.0.1"
222
166
  },
223
167
  "node_modules/easy-table": {
224
168
  "integrity": "sha512-oq33hWOSSnl2Hoh00tZWaIPi1ievrD9aFG82/IgjlycAnW9hHx5PkJiXpxPsgEE+H7BsbVQXFVFST8TEXS6/pA==",
@@ -229,11 +173,50 @@
229
173
  "resolved": "https://registry.npmjs.org/easy-table/-/easy-table-1.1.0.tgz",
230
174
  "version": "1.1.0"
231
175
  },
232
- "node_modules/emoji-regex": {
233
- "integrity": "sha512-L18DaJsXSUk2+42pv8mLs5jJT2hqFkFE4j21wOmgbUqsZ2hL72NsUU785g9RXgo3s0ZNgVl42TiHp3ZtOv/Vyg==",
176
+ "node_modules/es-define-property": {
177
+ "engines": {
178
+ "node": ">= 0.4"
179
+ },
180
+ "integrity": "sha512-e3nRfgfUZ4rNGL232gUgX06QNyyez04KdjFrF+LTRoOXmrOgFKDg4BCdsjW8EnT69eqdYGmRpJwiPVYNrCaW3g==",
181
+ "license": "MIT",
182
+ "resolved": "https://registry.npmjs.org/es-define-property/-/es-define-property-1.0.1.tgz",
183
+ "version": "1.0.1"
184
+ },
185
+ "node_modules/es-errors": {
186
+ "engines": {
187
+ "node": ">= 0.4"
188
+ },
189
+ "integrity": "sha512-Zf5H2Kxt2xjTvbJvP2ZWLEICxA6j+hAmMzIlypy4xcBg1vKVnx89Wy0GbS+kf5cwCVFFzdCFh2XSCFNULS6csw==",
190
+ "license": "MIT",
191
+ "resolved": "https://registry.npmjs.org/es-errors/-/es-errors-1.3.0.tgz",
192
+ "version": "1.3.0"
193
+ },
194
+ "node_modules/es-object-atoms": {
195
+ "dependencies": {
196
+ "es-errors": "^1.3.0"
197
+ },
198
+ "engines": {
199
+ "node": ">= 0.4"
200
+ },
201
+ "integrity": "sha512-FGgH2h8zKNim9ljj7dankFPcICIK9Cp5bm+c2gQSYePhpaG5+esrLODihIorn+Pe6FGJzWhXQotPv73jTaldXA==",
202
+ "license": "MIT",
203
+ "resolved": "https://registry.npmjs.org/es-object-atoms/-/es-object-atoms-1.1.1.tgz",
204
+ "version": "1.1.1"
205
+ },
206
+ "node_modules/es-set-tostringtag": {
207
+ "dependencies": {
208
+ "es-errors": "^1.3.0",
209
+ "get-intrinsic": "^1.2.6",
210
+ "has-tostringtag": "^1.0.2",
211
+ "hasown": "^2.0.2"
212
+ },
213
+ "engines": {
214
+ "node": ">= 0.4"
215
+ },
216
+ "integrity": "sha512-j6vWzfrGVfyXxge+O0x5sh6cvxAog0a/4Rdd2K36zCMV5eJ+/+tOAngRO8cODMNWbVRdVlmGZQL2YS3yR8bIUA==",
234
217
  "license": "MIT",
235
- "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-9.2.2.tgz",
236
- "version": "9.2.2"
218
+ "resolved": "https://registry.npmjs.org/es-set-tostringtag/-/es-set-tostringtag-2.1.0.tgz",
219
+ "version": "2.1.0"
237
220
  },
238
221
  "node_modules/follow-redirects": {
239
222
  "engines": {
@@ -255,99 +238,153 @@
255
238
  "resolved": "https://registry.npmjs.org/follow-redirects/-/follow-redirects-1.15.6.tgz",
256
239
  "version": "1.15.6"
257
240
  },
258
- "node_modules/foreground-child": {
241
+ "node_modules/form-data": {
259
242
  "dependencies": {
260
- "cross-spawn": "^7.0.0",
261
- "signal-exit": "^4.0.1"
243
+ "asynckit": "^0.4.0",
244
+ "combined-stream": "^1.0.8",
245
+ "es-set-tostringtag": "^2.1.0",
246
+ "hasown": "^2.0.2",
247
+ "mime-types": "^2.1.12"
262
248
  },
263
249
  "engines": {
264
- "node": ">=14"
250
+ "node": ">= 6"
265
251
  },
252
+ "integrity": "sha512-KrGhL9Q4zjj0kiUt5OO4Mr/A/jlI2jDYs5eHBpYHPcBEVSiipAvn2Ko2HnPe20rmcuuvMHNdZFp+4IlGTMF0Ow==",
253
+ "license": "MIT",
254
+ "resolved": "https://registry.npmjs.org/form-data/-/form-data-4.0.4.tgz",
255
+ "version": "4.0.4"
256
+ },
257
+ "node_modules/function-bind": {
266
258
  "funding": {
267
- "url": "https://github.com/sponsors/isaacs"
259
+ "url": "https://github.com/sponsors/ljharb"
268
260
  },
269
- "integrity": "sha512-TMKDUnIte6bfb5nWv7V/caI169OHgvwjb7V4WkeUvbQQdjr5rWKqHFiKWb/fcOwB+CzBT+qbWjvj+DVwRskpIg==",
270
- "license": "ISC",
271
- "resolved": "https://registry.npmjs.org/foreground-child/-/foreground-child-3.1.1.tgz",
272
- "version": "3.1.1"
261
+ "integrity": "sha512-7XHNxH7qX9xG5mIwxkhumTox/MIRNcOgDrxWsMt2pAr23WHp6MrRlN7FBSFpCpr+oVO0F744iUgR82nJMfG2SA==",
262
+ "license": "MIT",
263
+ "resolved": "https://registry.npmjs.org/function-bind/-/function-bind-1.1.2.tgz",
264
+ "version": "1.1.2"
273
265
  },
274
- "node_modules/form-data": {
266
+ "node_modules/get-intrinsic": {
275
267
  "dependencies": {
276
- "asynckit": "^0.4.0",
277
- "combined-stream": "^1.0.8",
278
- "mime-types": "^2.1.12"
268
+ "call-bind-apply-helpers": "^1.0.2",
269
+ "es-define-property": "^1.0.1",
270
+ "es-errors": "^1.3.0",
271
+ "es-object-atoms": "^1.1.1",
272
+ "function-bind": "^1.1.2",
273
+ "get-proto": "^1.0.1",
274
+ "gopd": "^1.2.0",
275
+ "has-symbols": "^1.1.0",
276
+ "hasown": "^2.0.2",
277
+ "math-intrinsics": "^1.1.0"
279
278
  },
280
279
  "engines": {
281
- "node": ">= 6"
280
+ "node": ">= 0.4"
281
+ },
282
+ "funding": {
283
+ "url": "https://github.com/sponsors/ljharb"
282
284
  },
283
- "integrity": "sha512-ETEklSGi5t0QMZuiXoA/Q6vcnxcLQP5vdugSpuAyi6SVGi2clPPp+xgEhuMaHC+zGgn31Kd235W35f7Hykkaww==",
285
+ "integrity": "sha512-9fSjSaos/fRIVIp+xSJlE6lfwhES7LNtKaCBIamHsjr2na1BiABJPo0mOjjz8GJDURarmCPGqaiVg5mfjb98CQ==",
284
286
  "license": "MIT",
285
- "resolved": "https://registry.npmjs.org/form-data/-/form-data-4.0.0.tgz",
286
- "version": "4.0.0"
287
+ "resolved": "https://registry.npmjs.org/get-intrinsic/-/get-intrinsic-1.3.0.tgz",
288
+ "version": "1.3.0"
287
289
  },
288
- "node_modules/glob": {
289
- "bin": {
290
- "glob": "dist/esm/bin.mjs"
290
+ "node_modules/get-proto": {
291
+ "dependencies": {
292
+ "dunder-proto": "^1.0.1",
293
+ "es-object-atoms": "^1.0.0"
294
+ },
295
+ "engines": {
296
+ "node": ">= 0.4"
291
297
  },
298
+ "integrity": "sha512-sTSfBjoXBp89JvIKIefqw7U2CCebsc74kiY6awiGogKtoSGbgjYE/G/+l9sF3MWFPNc9IcoOC4ODfKHfxFmp0g==",
299
+ "license": "MIT",
300
+ "resolved": "https://registry.npmjs.org/get-proto/-/get-proto-1.0.1.tgz",
301
+ "version": "1.0.1"
302
+ },
303
+ "node_modules/glob": {
292
304
  "dependencies": {
293
- "foreground-child": "^3.1.0",
294
- "jackspeak": "^3.1.2",
295
- "minimatch": "^9.0.1",
296
- "minipass": "^7.0.4",
297
- "path-scurry": "^1.11.0"
305
+ "minimatch": "^10.1.1",
306
+ "minipass": "^7.1.2",
307
+ "path-scurry": "^2.0.0"
298
308
  },
299
309
  "engines": {
300
- "node": ">=16 || 14 >=14.18"
310
+ "node": "20 || >=22"
301
311
  },
302
312
  "funding": {
303
313
  "url": "https://github.com/sponsors/isaacs"
304
314
  },
305
- "integrity": "sha512-JDKXl1DiuuHJ6fVS2FXjownaavciiHNUU4mOvV/B793RLh05vZL1rcPnCSaOgv1hDT6RDlY7AB7ZUvFYAtPgAw==",
306
- "license": "ISC",
307
- "resolved": "https://registry.npmjs.org/glob/-/glob-10.3.16.tgz",
308
- "version": "10.3.16"
315
+ "integrity": "sha512-tvZgpqk6fz4BaNZ66ZsRaZnbHvP/jG3uKJvAZOwEVUL4RTA5nJeeLYfyN9/VA8NX/V3IBG+hkeuGpKjvELkVhA==",
316
+ "license": "BlueOak-1.0.0",
317
+ "resolved": "https://registry.npmjs.org/glob/-/glob-13.0.0.tgz",
318
+ "version": "13.0.0"
309
319
  },
310
- "node_modules/is-fullwidth-code-point": {
320
+ "node_modules/gopd": {
311
321
  "engines": {
312
- "node": ">=8"
322
+ "node": ">= 0.4"
323
+ },
324
+ "funding": {
325
+ "url": "https://github.com/sponsors/ljharb"
313
326
  },
314
- "integrity": "sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==",
327
+ "integrity": "sha512-ZUKRh6/kUFoAiTAtTYPZJ3hw9wNxx+BIBOijnlG9PnrJsCcSjs1wyyD6vJpaYtgnzDrKYRSqf3OO6Rfa93xsRg==",
315
328
  "license": "MIT",
316
- "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz",
317
- "version": "3.0.0"
329
+ "resolved": "https://registry.npmjs.org/gopd/-/gopd-1.2.0.tgz",
330
+ "version": "1.2.0"
318
331
  },
319
- "node_modules/isexe": {
320
- "integrity": "sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==",
321
- "license": "ISC",
322
- "resolved": "https://registry.npmjs.org/isexe/-/isexe-2.0.0.tgz",
323
- "version": "2.0.0"
332
+ "node_modules/has-symbols": {
333
+ "engines": {
334
+ "node": ">= 0.4"
335
+ },
336
+ "funding": {
337
+ "url": "https://github.com/sponsors/ljharb"
338
+ },
339
+ "integrity": "sha512-1cDNdwJ2Jaohmb3sg4OmKaMBwuC48sYni5HUw2DvsC8LjGTLK9h+eb1X6RyuOHe4hT0ULCW68iomhjUoKUqlPQ==",
340
+ "license": "MIT",
341
+ "resolved": "https://registry.npmjs.org/has-symbols/-/has-symbols-1.1.0.tgz",
342
+ "version": "1.1.0"
324
343
  },
325
- "node_modules/jackspeak": {
344
+ "node_modules/has-tostringtag": {
326
345
  "dependencies": {
327
- "@isaacs/cliui": "^8.0.2"
346
+ "has-symbols": "^1.0.3"
328
347
  },
329
348
  "engines": {
330
- "node": ">=14"
349
+ "node": ">= 0.4"
331
350
  },
332
351
  "funding": {
333
- "url": "https://github.com/sponsors/isaacs"
352
+ "url": "https://github.com/sponsors/ljharb"
334
353
  },
335
- "integrity": "sha512-kWmLKn2tRtfYMF/BakihVVRzBKOxz4gJMiL2Rj91WnAB5TPZumSH99R/Yf1qE1u4uRimvCSJfm6hnxohXeEXjQ==",
336
- "license": "BlueOak-1.0.0",
337
- "optionalDependencies": {
338
- "@pkgjs/parseargs": "^0.11.0"
354
+ "integrity": "sha512-NqADB8VjPFLM2V0VvHUewwwsw0ZWBaIdgo+ieHtK3hasLz4qeCRjYcqfB6AQrBggRKppKF8L52/VqdVsO47Dlw==",
355
+ "license": "MIT",
356
+ "resolved": "https://registry.npmjs.org/has-tostringtag/-/has-tostringtag-1.0.2.tgz",
357
+ "version": "1.0.2"
358
+ },
359
+ "node_modules/hasown": {
360
+ "dependencies": {
361
+ "function-bind": "^1.1.2"
339
362
  },
340
- "resolved": "https://registry.npmjs.org/jackspeak/-/jackspeak-3.1.2.tgz",
341
- "version": "3.1.2"
363
+ "engines": {
364
+ "node": ">= 0.4"
365
+ },
366
+ "integrity": "sha512-0hJU9SCPvmMzIBdZFqNPXWa6dqh7WdH0cII9y+CyS8rG3nL48Bclra9HmKhVVUHyPWNH5Y7xDwAB7bfgSjkUMQ==",
367
+ "license": "MIT",
368
+ "resolved": "https://registry.npmjs.org/hasown/-/hasown-2.0.2.tgz",
369
+ "version": "2.0.2"
342
370
  },
343
371
  "node_modules/lru-cache": {
344
372
  "engines": {
345
- "node": "14 || >=16.14"
373
+ "node": "20 || >=22"
346
374
  },
347
- "integrity": "sha512-9hp3Vp2/hFQUiIwKo8XCeFVnrg8Pk3TYNPIR7tJADKi5YfcF7vEaK7avFHTlSy3kOKYaJQaalfEo6YuXdceBOQ==",
348
- "license": "ISC",
349
- "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-10.2.2.tgz",
350
- "version": "10.2.2"
375
+ "integrity": "sha512-B5Y16Jr9LB9dHVkh6ZevG+vAbOsNOYCX+sXvFWFu7B3Iz5mijW3zdbMyhsh8ANd2mSWBYdJgnqi+mL7/LrOPYg==",
376
+ "license": "BlueOak-1.0.0",
377
+ "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-11.2.4.tgz",
378
+ "version": "11.2.4"
379
+ },
380
+ "node_modules/math-intrinsics": {
381
+ "engines": {
382
+ "node": ">= 0.4"
383
+ },
384
+ "integrity": "sha512-/IXtbwEk5HTPyEwyKX6hGkYXxM9nbj64B+ilVJnC/R6B0pH5G4V3b0pVbL7DBj4tkhBAppbQUlf6F6Xl9LHu1g==",
385
+ "license": "MIT",
386
+ "resolved": "https://registry.npmjs.org/math-intrinsics/-/math-intrinsics-1.1.0.tgz",
387
+ "version": "1.1.0"
351
388
  },
352
389
  "node_modules/mime-db": {
353
390
  "engines": {
@@ -372,51 +409,49 @@
372
409
  },
373
410
  "node_modules/minimatch": {
374
411
  "dependencies": {
375
- "brace-expansion": "^2.0.1"
412
+ "@isaacs/brace-expansion": "^5.0.0"
376
413
  },
377
414
  "engines": {
378
- "node": ">=16 || 14 >=14.17"
415
+ "node": "20 || >=22"
379
416
  },
380
417
  "funding": {
381
418
  "url": "https://github.com/sponsors/isaacs"
382
419
  },
383
- "integrity": "sha512-KqWh+VchfxcMNRAJjj2tnsSJdNbHsVgnkBhTNrW7AjVo6OvLtxw8zfT9oLw1JSohlFzJ8jCoTgaoXvJ+kHt6fw==",
384
- "license": "ISC",
385
- "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-9.0.4.tgz",
386
- "version": "9.0.4"
420
+ "integrity": "sha512-enIvLvRAFZYXJzkCYG5RKmPfrFArdLv+R+lbQ53BmIMLIry74bjKzX6iHAm8WYamJkhSSEabrWN5D97XnKObjQ==",
421
+ "license": "BlueOak-1.0.0",
422
+ "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-10.1.1.tgz",
423
+ "version": "10.1.1"
387
424
  },
388
425
  "node_modules/minipass": {
389
426
  "engines": {
390
427
  "node": ">=16 || 14 >=14.17"
391
428
  },
392
429
  "integrity": "sha512-qOOzS1cBTWYF4BH8fVePDBOO9iptMnGUEZwNc/cMWnTV2nVLZ7VoNWEPHkYczZA0pdoA7dl6e7FL659nX9S2aw==",
430
+ "license": "ISC",
393
431
  "resolved": "https://registry.npmjs.org/minipass/-/minipass-7.1.2.tgz",
394
432
  "version": "7.1.2"
395
433
  },
396
- "node_modules/path-key": {
397
- "engines": {
398
- "node": ">=8"
399
- },
400
- "integrity": "sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==",
401
- "license": "MIT",
402
- "resolved": "https://registry.npmjs.org/path-key/-/path-key-3.1.1.tgz",
403
- "version": "3.1.1"
434
+ "node_modules/package-json-from-dist": {
435
+ "integrity": "sha512-UEZIS3/by4OC8vL3P2dTXRETpebLI2NiI5vIrjaD/5UtrkFX/tNbwjTSRAGC/+7CAo2pIcBaRgWmcBBHcsaCIw==",
436
+ "license": "BlueOak-1.0.0",
437
+ "resolved": "https://registry.npmjs.org/package-json-from-dist/-/package-json-from-dist-1.0.1.tgz",
438
+ "version": "1.0.1"
404
439
  },
405
440
  "node_modules/path-scurry": {
406
441
  "dependencies": {
407
- "lru-cache": "^10.2.0",
408
- "minipass": "^5.0.0 || ^6.0.2 || ^7.0.0"
442
+ "lru-cache": "^11.0.0",
443
+ "minipass": "^7.1.2"
409
444
  },
410
445
  "engines": {
411
- "node": ">=16 || 14 >=14.18"
446
+ "node": "20 || >=22"
412
447
  },
413
448
  "funding": {
414
449
  "url": "https://github.com/sponsors/isaacs"
415
450
  },
416
- "integrity": "sha512-Xa4Nw17FS9ApQFJ9umLiJS4orGjm7ZzwUrwamcGQuHSzDyth9boKDaycYdDcZDuqYATXw4HFXgaqWTctW/v1HA==",
451
+ "integrity": "sha512-oWyT4gICAu+kaA7QWk/jvCHWarMKNs6pXOGWKDTr7cw4IGcUbW+PeTfbaQiLGheFRpjo6O9J0PmyMfQPjH71oA==",
417
452
  "license": "BlueOak-1.0.0",
418
- "resolved": "https://registry.npmjs.org/path-scurry/-/path-scurry-1.11.1.tgz",
419
- "version": "1.11.1"
453
+ "resolved": "https://registry.npmjs.org/path-scurry/-/path-scurry-2.0.1.tgz",
454
+ "version": "2.0.1"
420
455
  },
421
456
  "node_modules/prettier": {
422
457
  "bin": {
@@ -429,10 +464,10 @@
429
464
  "funding": {
430
465
  "url": "https://github.com/prettier/prettier?sponsor=1"
431
466
  },
432
- "integrity": "sha512-e9MewbtFo+Fevyuxn/4rrcDAaq0IYxPGLvObpQjiZBMAzB9IGmzlnG9RZy3FFas+eBMu2vA0CszMeduow5dIuQ==",
467
+ "integrity": "sha512-v6UNi1+3hSlVvv8fSaoUbggEM5VErKmmpGA7Pl3HF8V6uKY7rvClBOJlH6yNwQtfTueNkGVpOv/mtWL9L4bgRA==",
433
468
  "license": "MIT",
434
- "resolved": "https://registry.npmjs.org/prettier/-/prettier-3.4.2.tgz",
435
- "version": "3.4.2"
469
+ "resolved": "https://registry.npmjs.org/prettier/-/prettier-3.7.4.tgz",
470
+ "version": "3.7.4"
436
471
  },
437
472
  "node_modules/proxy-from-env": {
438
473
  "integrity": "sha512-D+zkORCbA9f1tdWRK0RaCR3GPv50cMxcrz4X8k5LTSUD1Dkw47mKJEZQNunItRTkWwgtaUSo1RVFRIG9ZXiFYg==",
@@ -445,146 +480,19 @@
445
480
  "rimraf": "dist/esm/bin.mjs"
446
481
  },
447
482
  "dependencies": {
448
- "glob": "^10.3.7"
449
- },
450
- "engines": {
451
- "node": ">=18"
452
- },
453
- "funding": {
454
- "url": "https://github.com/sponsors/isaacs"
455
- },
456
- "integrity": "sha512-XSh0V2/yNhDEi8HwdIefD8MLgs4LQXPag/nEJWs3YUc3Upn+UHa1GyIkEg9xSSNt7HnkO5FjTvmcRzgf+8UZuw==",
457
- "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-5.0.8.tgz",
458
- "version": "5.0.8"
459
- },
460
- "node_modules/shebang-command": {
461
- "dependencies": {
462
- "shebang-regex": "^3.0.0"
463
- },
464
- "engines": {
465
- "node": ">=8"
466
- },
467
- "integrity": "sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==",
468
- "license": "MIT",
469
- "resolved": "https://registry.npmjs.org/shebang-command/-/shebang-command-2.0.0.tgz",
470
- "version": "2.0.0"
471
- },
472
- "node_modules/shebang-regex": {
473
- "engines": {
474
- "node": ">=8"
483
+ "glob": "^13.0.0",
484
+ "package-json-from-dist": "^1.0.1"
475
485
  },
476
- "integrity": "sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==",
477
- "license": "MIT",
478
- "resolved": "https://registry.npmjs.org/shebang-regex/-/shebang-regex-3.0.0.tgz",
479
- "version": "3.0.0"
480
- },
481
- "node_modules/signal-exit": {
482
486
  "engines": {
483
- "node": ">=14"
487
+ "node": "20 || >=22"
484
488
  },
485
489
  "funding": {
486
490
  "url": "https://github.com/sponsors/isaacs"
487
491
  },
488
- "integrity": "sha512-bzyZ1e88w9O1iNJbKnOlvYTrWPDl46O1bG0D3XInv+9tkPrxrN8jUUTiFlDkkmKWgn1M6CfIA13SuGqOa9Korw==",
489
- "license": "ISC",
490
- "resolved": "https://registry.npmjs.org/signal-exit/-/signal-exit-4.1.0.tgz",
491
- "version": "4.1.0"
492
- },
493
- "node_modules/string-width": {
494
- "dependencies": {
495
- "eastasianwidth": "^0.2.0",
496
- "emoji-regex": "^9.2.2",
497
- "strip-ansi": "^7.0.1"
498
- },
499
- "engines": {
500
- "node": ">=12"
501
- },
502
- "funding": {
503
- "url": "https://github.com/sponsors/sindresorhus"
504
- },
505
- "integrity": "sha512-HnLOCR3vjcY8beoNLtcjZ5/nxn2afmME6lhrDrebokqMap+XbeW8n9TXpPDOqdGK5qcI3oT0GKTW6wC7EMiVqA==",
506
- "license": "MIT",
507
- "resolved": "https://registry.npmjs.org/string-width/-/string-width-5.1.2.tgz",
508
- "version": "5.1.2"
509
- },
510
- "node_modules/string-width-cjs": {
511
- "dependencies": {
512
- "emoji-regex": "^8.0.0",
513
- "is-fullwidth-code-point": "^3.0.0",
514
- "strip-ansi": "^6.0.1"
515
- },
516
- "engines": {
517
- "node": ">=8"
518
- },
519
- "integrity": "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==",
520
- "license": "MIT",
521
- "name": "string-width",
522
- "resolved": "https://registry.npmjs.org/string-width/-/string-width-4.2.3.tgz",
523
- "version": "4.2.3"
524
- },
525
- "node_modules/string-width-cjs/node_modules/ansi-regex": {
526
- "engines": {
527
- "node": ">=8"
528
- },
529
- "integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==",
530
- "license": "MIT",
531
- "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz",
532
- "version": "5.0.1"
533
- },
534
- "node_modules/string-width-cjs/node_modules/emoji-regex": {
535
- "integrity": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==",
536
- "license": "MIT",
537
- "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-8.0.0.tgz",
538
- "version": "8.0.0"
539
- },
540
- "node_modules/string-width-cjs/node_modules/strip-ansi": {
541
- "dependencies": {
542
- "ansi-regex": "^5.0.1"
543
- },
544
- "engines": {
545
- "node": ">=8"
546
- },
547
- "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==",
548
- "license": "MIT",
549
- "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz",
550
- "version": "6.0.1"
551
- },
552
- "node_modules/strip-ansi": {
553
- "dependencies": {
554
- "ansi-regex": "^6.0.1"
555
- },
556
- "engines": {
557
- "node": ">=12"
558
- },
559
- "funding": {
560
- "url": "https://github.com/chalk/strip-ansi?sponsor=1"
561
- },
562
- "integrity": "sha512-iq6eVVI64nQQTRYq2KtEg2d2uU7LElhTJwsH4YzIHZshxlgZms/wIc4VoDQTlG/IvVIrBKG06CrZnp0qv7hkcQ==",
563
- "license": "MIT",
564
- "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-7.1.0.tgz",
565
- "version": "7.1.0"
566
- },
567
- "node_modules/strip-ansi-cjs": {
568
- "dependencies": {
569
- "ansi-regex": "^5.0.1"
570
- },
571
- "engines": {
572
- "node": ">=8"
573
- },
574
- "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==",
575
- "license": "MIT",
576
- "name": "strip-ansi",
577
- "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz",
578
- "version": "6.0.1"
579
- },
580
- "node_modules/strip-ansi-cjs/node_modules/ansi-regex": {
581
- "engines": {
582
- "node": ">=8"
583
- },
584
- "integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==",
585
- "license": "MIT",
586
- "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz",
587
- "version": "5.0.1"
492
+ "integrity": "sha512-cFCkPslJv7BAXJsYlK1dZsbP8/ZNLkCAQ0bi1hf5EKX2QHegmDFEFA6QhuYJlk7UDdc+02JjO80YSOrWPpw06g==",
493
+ "license": "BlueOak-1.0.0",
494
+ "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-6.1.2.tgz",
495
+ "version": "6.1.2"
588
496
  },
589
497
  "node_modules/tunnel": {
590
498
  "engines": {
@@ -604,114 +512,8 @@
604
512
  "optional": true,
605
513
  "resolved": "https://registry.npmjs.org/wcwidth/-/wcwidth-1.0.1.tgz",
606
514
  "version": "1.0.1"
607
- },
608
- "node_modules/which": {
609
- "bin": {
610
- "node-which": "bin/node-which"
611
- },
612
- "dependencies": {
613
- "isexe": "^2.0.0"
614
- },
615
- "engines": {
616
- "node": ">= 8"
617
- },
618
- "integrity": "sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==",
619
- "license": "ISC",
620
- "resolved": "https://registry.npmjs.org/which/-/which-2.0.2.tgz",
621
- "version": "2.0.2"
622
- },
623
- "node_modules/wrap-ansi": {
624
- "dependencies": {
625
- "ansi-styles": "^6.1.0",
626
- "string-width": "^5.0.1",
627
- "strip-ansi": "^7.0.1"
628
- },
629
- "engines": {
630
- "node": ">=12"
631
- },
632
- "funding": {
633
- "url": "https://github.com/chalk/wrap-ansi?sponsor=1"
634
- },
635
- "integrity": "sha512-si7QWI6zUMq56bESFvagtmzMdGOtoxfR+Sez11Mobfc7tm+VkUckk9bW2UeffTGVUbOksxmSw0AA2gs8g71NCQ==",
636
- "license": "MIT",
637
- "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-8.1.0.tgz",
638
- "version": "8.1.0"
639
- },
640
- "node_modules/wrap-ansi-cjs": {
641
- "dependencies": {
642
- "ansi-styles": "^4.0.0",
643
- "string-width": "^4.1.0",
644
- "strip-ansi": "^6.0.0"
645
- },
646
- "engines": {
647
- "node": ">=10"
648
- },
649
- "funding": {
650
- "url": "https://github.com/chalk/wrap-ansi?sponsor=1"
651
- },
652
- "integrity": "sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==",
653
- "license": "MIT",
654
- "name": "wrap-ansi",
655
- "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-7.0.0.tgz",
656
- "version": "7.0.0"
657
- },
658
- "node_modules/wrap-ansi-cjs/node_modules/ansi-regex": {
659
- "engines": {
660
- "node": ">=8"
661
- },
662
- "integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==",
663
- "license": "MIT",
664
- "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz",
665
- "version": "5.0.1"
666
- },
667
- "node_modules/wrap-ansi-cjs/node_modules/ansi-styles": {
668
- "dependencies": {
669
- "color-convert": "^2.0.1"
670
- },
671
- "engines": {
672
- "node": ">=8"
673
- },
674
- "funding": {
675
- "url": "https://github.com/chalk/ansi-styles?sponsor=1"
676
- },
677
- "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==",
678
- "license": "MIT",
679
- "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz",
680
- "version": "4.3.0"
681
- },
682
- "node_modules/wrap-ansi-cjs/node_modules/emoji-regex": {
683
- "integrity": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==",
684
- "license": "MIT",
685
- "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-8.0.0.tgz",
686
- "version": "8.0.0"
687
- },
688
- "node_modules/wrap-ansi-cjs/node_modules/string-width": {
689
- "dependencies": {
690
- "emoji-regex": "^8.0.0",
691
- "is-fullwidth-code-point": "^3.0.0",
692
- "strip-ansi": "^6.0.1"
693
- },
694
- "engines": {
695
- "node": ">=8"
696
- },
697
- "integrity": "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==",
698
- "license": "MIT",
699
- "resolved": "https://registry.npmjs.org/string-width/-/string-width-4.2.3.tgz",
700
- "version": "4.2.3"
701
- },
702
- "node_modules/wrap-ansi-cjs/node_modules/strip-ansi": {
703
- "dependencies": {
704
- "ansi-regex": "^5.0.1"
705
- },
706
- "engines": {
707
- "node": ">=8"
708
- },
709
- "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==",
710
- "license": "MIT",
711
- "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz",
712
- "version": "6.0.1"
713
515
  }
714
516
  },
715
517
  "requires": true,
716
- "version": "0.6.5"
518
+ "version": "0.6.7"
717
519
  }
package/package.json CHANGED
@@ -1,19 +1,19 @@
1
1
  {
2
- "artifactDownloadUrl": "https://github.com/cyfrin/aderyn/releases/download/aderyn-v0.6.5",
2
+ "artifactDownloadUrl": "https://github.com/cyfrin/aderyn/releases/download/aderyn-v0.6.7",
3
3
  "author": "Cyfrin <aderyn@cyfrin.io>",
4
4
  "bin": {
5
5
  "aderyn": "run-aderyn.js"
6
6
  },
7
7
  "dependencies": {
8
- "axios": "^1.7.9",
8
+ "axios": "^1.13.2",
9
9
  "axios-proxy-builder": "^0.1.2",
10
10
  "console.table": "^0.10.0",
11
- "detect-libc": "^2.0.3",
12
- "rimraf": "^5.0.8"
11
+ "detect-libc": "^2.1.2",
12
+ "rimraf": "^6.1.2"
13
13
  },
14
14
  "description": "Rust based Solidity AST analyzer backend",
15
15
  "devDependencies": {
16
- "prettier": "^3.4.2"
16
+ "prettier": "^3.7.4"
17
17
  },
18
18
  "engines": {
19
19
  "node": ">=14",
@@ -63,7 +63,7 @@
63
63
  "zipExt": ".tar.xz"
64
64
  }
65
65
  },
66
- "version": "0.6.5",
66
+ "version": "0.6.7",
67
67
  "volta": {
68
68
  "node": "18.14.1",
69
69
  "npm": "9.5.0"