vetguard 0.0.0
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/LICENSE +202 -0
- package/README.md +153 -0
- package/dist/chunk-XXICU3EZ.js +958 -0
- package/dist/cli.d.ts +1 -0
- package/dist/cli.js +108 -0
- package/dist/index.d.ts +263 -0
- package/dist/index.js +46 -0
- package/package.json +72 -0
|
@@ -0,0 +1,958 @@
|
|
|
1
|
+
// src/core/model.ts
|
|
2
|
+
var SEVERITY_ORDER = {
|
|
3
|
+
critical: 4,
|
|
4
|
+
high: 3,
|
|
5
|
+
medium: 2,
|
|
6
|
+
low: 1,
|
|
7
|
+
info: 0
|
|
8
|
+
};
|
|
9
|
+
|
|
10
|
+
// src/core/engine.ts
|
|
11
|
+
function runDetectors(facts, detectors, context) {
|
|
12
|
+
const findings = [];
|
|
13
|
+
for (const pkg2 of facts) {
|
|
14
|
+
for (const detector of detectors) {
|
|
15
|
+
findings.push(...detector.detect(pkg2));
|
|
16
|
+
}
|
|
17
|
+
}
|
|
18
|
+
findings.sort(
|
|
19
|
+
(a, b) => SEVERITY_ORDER[b.severity] - SEVERITY_ORDER[a.severity] || a.packageName.localeCompare(b.packageName)
|
|
20
|
+
);
|
|
21
|
+
const verdict = decideVerdict(findings, context.unverified);
|
|
22
|
+
return {
|
|
23
|
+
verdict,
|
|
24
|
+
target: context.target,
|
|
25
|
+
ecosystem: context.ecosystem,
|
|
26
|
+
packagesScanned: facts.length,
|
|
27
|
+
findings,
|
|
28
|
+
unverified: context.unverified,
|
|
29
|
+
generatedAt: context.generatedAt
|
|
30
|
+
};
|
|
31
|
+
}
|
|
32
|
+
function decideVerdict(findings, unverified) {
|
|
33
|
+
if (findings.length > 0) return "findings";
|
|
34
|
+
if (unverified.length > 0) return "could-not-verify";
|
|
35
|
+
return "clean";
|
|
36
|
+
}
|
|
37
|
+
|
|
38
|
+
// src/core/rules/nonexistent-package.ts
|
|
39
|
+
var nonexistentPackage = {
|
|
40
|
+
id: "nonexistent-package",
|
|
41
|
+
description: "Flags registry dependencies that do not exist on the registry.",
|
|
42
|
+
detect(pkg2) {
|
|
43
|
+
if (pkg2.source !== "registry") return [];
|
|
44
|
+
if (pkg2.existsOnRegistry !== false) return [];
|
|
45
|
+
return [
|
|
46
|
+
{
|
|
47
|
+
ruleId: this.id,
|
|
48
|
+
severity: "high",
|
|
49
|
+
confidence: "high",
|
|
50
|
+
packageName: pkg2.name,
|
|
51
|
+
...pkg2.version === void 0 ? {} : { packageVersion: pkg2.version },
|
|
52
|
+
title: "Dependency does not exist on the registry",
|
|
53
|
+
detail: "The registry has no record of this package name. AI assistants routinely hallucinate package names, and attackers register the predictable ones. Confirm the intended package before installing.",
|
|
54
|
+
...pkg2.evidencePath === void 0 ? {} : { location: pkg2.evidencePath }
|
|
55
|
+
}
|
|
56
|
+
];
|
|
57
|
+
}
|
|
58
|
+
};
|
|
59
|
+
|
|
60
|
+
// src/core/rules/young-package.ts
|
|
61
|
+
var YOUNG_AGE_DAYS = 30;
|
|
62
|
+
var LOW_WEEKLY_DOWNLOADS = 100;
|
|
63
|
+
var youngPackage = {
|
|
64
|
+
id: "young-package",
|
|
65
|
+
description: "Flags recently published packages with low or unknown adoption.",
|
|
66
|
+
detect(pkg2) {
|
|
67
|
+
if (pkg2.existsOnRegistry !== true) return [];
|
|
68
|
+
if (pkg2.ageDays === void 0 || pkg2.ageDays > YOUNG_AGE_DAYS) return [];
|
|
69
|
+
if (pkg2.weeklyDownloads !== void 0 && pkg2.weeklyDownloads >= LOW_WEEKLY_DOWNLOADS) {
|
|
70
|
+
return [];
|
|
71
|
+
}
|
|
72
|
+
const downloadsKnown = pkg2.weeklyDownloads !== void 0;
|
|
73
|
+
const evidence = downloadsKnown ? `first published ${pkg2.ageDays} day(s) ago, ~${pkg2.weeklyDownloads} weekly downloads` : `first published ${pkg2.ageDays} day(s) ago, download volume unknown`;
|
|
74
|
+
return [
|
|
75
|
+
{
|
|
76
|
+
ruleId: this.id,
|
|
77
|
+
severity: "medium",
|
|
78
|
+
confidence: downloadsKnown ? "medium" : "low",
|
|
79
|
+
packageName: pkg2.name,
|
|
80
|
+
...pkg2.version === void 0 ? {} : { packageVersion: pkg2.version },
|
|
81
|
+
title: "Recently published package with little adoption",
|
|
82
|
+
detail: "Newly registered, low-adoption packages are where supply-chain malware and slopsquats concentrate. Confirm this is the package you intended and not a fresh registration of a hallucinated or look-alike name.",
|
|
83
|
+
evidence,
|
|
84
|
+
...pkg2.evidencePath === void 0 ? {} : { location: pkg2.evidencePath }
|
|
85
|
+
}
|
|
86
|
+
];
|
|
87
|
+
}
|
|
88
|
+
};
|
|
89
|
+
|
|
90
|
+
// src/core/rules/install-scripts.ts
|
|
91
|
+
var INSTALL_SCRIPT_TRUST_DOWNLOADS = 1e4;
|
|
92
|
+
var INSTALL_SCRIPT_YOUNG_DAYS = 30;
|
|
93
|
+
var INSTALL_SCRIPT_LOW_DOWNLOADS = 100;
|
|
94
|
+
var INSTALL_SCRIPT_ESTABLISHED_DAYS = 365;
|
|
95
|
+
var installScripts = {
|
|
96
|
+
id: "install-scripts",
|
|
97
|
+
description: "Flags install lifecycle scripts on packages that are not well established.",
|
|
98
|
+
detect(pkg2) {
|
|
99
|
+
if (pkg2.hasInstallScript !== true) return [];
|
|
100
|
+
if (pkg2.existsOnRegistry !== true) return [];
|
|
101
|
+
const downloads = pkg2.weeklyDownloads;
|
|
102
|
+
const establishedByDownloads = downloads !== void 0 && downloads >= INSTALL_SCRIPT_TRUST_DOWNLOADS;
|
|
103
|
+
const oldWithUnknownAdoption = downloads === void 0 && pkg2.ageDays !== void 0 && pkg2.ageDays > INSTALL_SCRIPT_ESTABLISHED_DAYS;
|
|
104
|
+
if (establishedByDownloads || oldWithUnknownAdoption) return [];
|
|
105
|
+
const young = pkg2.ageDays !== void 0 && pkg2.ageDays <= INSTALL_SCRIPT_YOUNG_DAYS;
|
|
106
|
+
const lowDownloads = downloads !== void 0 && downloads < INSTALL_SCRIPT_LOW_DOWNLOADS;
|
|
107
|
+
const highRisk = young || lowDownloads;
|
|
108
|
+
const evidenceParts = ["declares a preinstall/install/postinstall script"];
|
|
109
|
+
if (pkg2.ageDays !== void 0) evidenceParts.push(`first published ${pkg2.ageDays} day(s) ago`);
|
|
110
|
+
if (downloads !== void 0) evidenceParts.push(`~${downloads} weekly downloads`);
|
|
111
|
+
else evidenceParts.push("adoption unknown");
|
|
112
|
+
return [
|
|
113
|
+
{
|
|
114
|
+
ruleId: this.id,
|
|
115
|
+
severity: highRisk ? "high" : "medium",
|
|
116
|
+
confidence: downloads !== void 0 || pkg2.ageDays !== void 0 ? "medium" : "low",
|
|
117
|
+
packageName: pkg2.name,
|
|
118
|
+
...pkg2.version === void 0 ? {} : { packageVersion: pkg2.version },
|
|
119
|
+
title: "Runs an install script and is not well established",
|
|
120
|
+
detail: "Install lifecycle scripts execute code on install, the most common way supply-chain malware runs. This package is not widely adopted, so confirm the script is legitimate (a native build, not an obfuscated payload or a network call) before installing.",
|
|
121
|
+
evidence: evidenceParts.join(", "),
|
|
122
|
+
...pkg2.evidencePath === void 0 ? {} : { location: pkg2.evidencePath }
|
|
123
|
+
}
|
|
124
|
+
];
|
|
125
|
+
}
|
|
126
|
+
};
|
|
127
|
+
|
|
128
|
+
// src/core/rules/unpublished-version.ts
|
|
129
|
+
var unpublishedVersion = {
|
|
130
|
+
id: "unpublished-version",
|
|
131
|
+
description: "Flags a pinned version that is not published on the registry.",
|
|
132
|
+
detect(pkg2) {
|
|
133
|
+
if (pkg2.existsOnRegistry !== true) return [];
|
|
134
|
+
if (pkg2.versionPublished !== false) return [];
|
|
135
|
+
return [
|
|
136
|
+
{
|
|
137
|
+
ruleId: this.id,
|
|
138
|
+
severity: "high",
|
|
139
|
+
confidence: "high",
|
|
140
|
+
packageName: pkg2.name,
|
|
141
|
+
...pkg2.version === void 0 ? {} : { packageVersion: pkg2.version },
|
|
142
|
+
title: "Pinned version is not published on the registry",
|
|
143
|
+
detail: "The package exists but this exact version is not on the registry. Versions disappear when npm removes malware or a publisher unpublishes; installing a version the registry does not serve is unsafe. Confirm the intended version.",
|
|
144
|
+
...pkg2.version === void 0 ? {} : { evidence: `version ${pkg2.version} not found on registry` },
|
|
145
|
+
...pkg2.evidencePath === void 0 ? {} : { location: pkg2.evidencePath }
|
|
146
|
+
}
|
|
147
|
+
];
|
|
148
|
+
}
|
|
149
|
+
};
|
|
150
|
+
|
|
151
|
+
// src/util/names.ts
|
|
152
|
+
var ALPHABET = "abcdefghijklmnopqrstuvwxyz0123456789-_.".split("");
|
|
153
|
+
var SEPARATORS = /[-_.]/g;
|
|
154
|
+
function depunctuate(name) {
|
|
155
|
+
return name.toLowerCase().replace(SEPARATORS, "");
|
|
156
|
+
}
|
|
157
|
+
function tokenize(name) {
|
|
158
|
+
const lower = name.toLowerCase();
|
|
159
|
+
const withoutScope = lower.startsWith("@") ? lower.slice(lower.indexOf("/") + 1) : lower;
|
|
160
|
+
return withoutScope.split(/[/\-_.]+/).filter((t) => t.length > 1 && !/^\d+$/.test(t));
|
|
161
|
+
}
|
|
162
|
+
function sortedTokenKey(tokens) {
|
|
163
|
+
return [...tokens].sort().join(" ");
|
|
164
|
+
}
|
|
165
|
+
function edits1(word) {
|
|
166
|
+
const result = /* @__PURE__ */ new Set();
|
|
167
|
+
const n = word.length;
|
|
168
|
+
for (let i = 0; i < n; i++) {
|
|
169
|
+
result.add(word.slice(0, i) + word.slice(i + 1));
|
|
170
|
+
}
|
|
171
|
+
for (let i = 0; i < n - 1; i++) {
|
|
172
|
+
result.add(word.slice(0, i) + word[i + 1] + word[i] + word.slice(i + 2));
|
|
173
|
+
}
|
|
174
|
+
for (let i = 0; i < n; i++) {
|
|
175
|
+
for (const c of ALPHABET) {
|
|
176
|
+
if (c !== word[i]) result.add(word.slice(0, i) + c + word.slice(i + 1));
|
|
177
|
+
}
|
|
178
|
+
}
|
|
179
|
+
for (let i = 0; i <= n; i++) {
|
|
180
|
+
for (const c of ALPHABET) {
|
|
181
|
+
result.add(word.slice(0, i) + c + word.slice(i));
|
|
182
|
+
}
|
|
183
|
+
}
|
|
184
|
+
result.delete(word);
|
|
185
|
+
return result;
|
|
186
|
+
}
|
|
187
|
+
var QWERTY_ROWS = ["1234567890-", "qwertyuiop", "asdfghjkl", "zxcvbnm"];
|
|
188
|
+
var QWERTY_ADJ = (() => {
|
|
189
|
+
const adj = /* @__PURE__ */ new Map();
|
|
190
|
+
const add = (a, b) => {
|
|
191
|
+
if (!adj.has(a)) adj.set(a, /* @__PURE__ */ new Set());
|
|
192
|
+
adj.get(a).add(b);
|
|
193
|
+
};
|
|
194
|
+
for (let r = 0; r < QWERTY_ROWS.length; r++) {
|
|
195
|
+
const row = QWERTY_ROWS[r];
|
|
196
|
+
for (let c = 0; c < row.length; c++) {
|
|
197
|
+
const ch = row[c];
|
|
198
|
+
if (c > 0) add(ch, row[c - 1]);
|
|
199
|
+
if (c < row.length - 1) add(ch, row[c + 1]);
|
|
200
|
+
const below = QWERTY_ROWS[r + 1];
|
|
201
|
+
if (below && below[c]) add(ch, below[c]);
|
|
202
|
+
const above = QWERTY_ROWS[r - 1];
|
|
203
|
+
if (above && above[c]) add(ch, above[c]);
|
|
204
|
+
}
|
|
205
|
+
}
|
|
206
|
+
return adj;
|
|
207
|
+
})();
|
|
208
|
+
function keyboardAdjacent(a, b) {
|
|
209
|
+
return QWERTY_ADJ.get(a)?.has(b) ?? false;
|
|
210
|
+
}
|
|
211
|
+
function classifyTransform(candidate, target) {
|
|
212
|
+
if (candidate === target) return void 0;
|
|
213
|
+
if (depunctuate(candidate) === depunctuate(target)) return "separator";
|
|
214
|
+
const lenDiff = candidate.length - target.length;
|
|
215
|
+
if (lenDiff === 0) {
|
|
216
|
+
const diffs = [];
|
|
217
|
+
for (let i = 0; i < candidate.length; i++) {
|
|
218
|
+
if (candidate[i] !== target[i]) diffs.push(i);
|
|
219
|
+
}
|
|
220
|
+
if (diffs.length === 1) {
|
|
221
|
+
const i = diffs[0];
|
|
222
|
+
return keyboardAdjacent(candidate[i], target[i]) ? "substitution-adjacent" : "substitution";
|
|
223
|
+
}
|
|
224
|
+
if (diffs.length === 2 && diffs[1] === diffs[0] + 1 && candidate[diffs[0]] === target[diffs[1]] && candidate[diffs[1]] === target[diffs[0]]) {
|
|
225
|
+
return "transposition";
|
|
226
|
+
}
|
|
227
|
+
return void 0;
|
|
228
|
+
}
|
|
229
|
+
if (lenDiff === 1) return "insertion";
|
|
230
|
+
if (lenDiff === -1) return "deletion";
|
|
231
|
+
return void 0;
|
|
232
|
+
}
|
|
233
|
+
|
|
234
|
+
// src/ecosystems/npm/data/popular-packages.ts
|
|
235
|
+
var POPULAR_NAMES = ["semver", "minimatch", "debug", "ansi-styles", "brace-expansion", "strip-ansi", "ansi-regex", "ms", "supports-color", "chalk", "commander", "lru-cache", "string-width", "wrap-ansi", "tslib", "picomatch", "emoji-regex", "glob", "type-fest", "color-name", "eslint-visitor-keys", "color-convert", "ajv", "minipass", "source-map", "balanced-match", "readable-stream", "which", "glob-parent", "escape-string-regexp", "has-flag", "find-up", "locate-path", "json-schema-traverse", "p-limit", "yallist", "safe-buffer", "uuid", "p-locate", "undici-types", "ignore", "iconv-lite", "signal-exit", "esbuild", "is-fullwidth-code-point", "js-yaml", "entities", "globals", "postcss", "isexe", "isarray", "path-key", "string_decoder", "argparse", "ws", "mime-db", "resolve", "agent-base", "@esbuild/linux-x64", "yargs-parser", "mime-types", "acorn", "estraverse", "cross-spawn", "react-is", "picocolors", "fs-extra", "hasown", "nanoid", "yargs", "resolve-from", "shebang-command", "pretty-format", "json5", "https-proxy-agent", "path-to-regexp", "path-exists", "punycode", "js-tokens", "cliui", "shebang-regex", "@babel/types", "chokidar", "strip-json-comments", "inherits", "webidl-conversions", "get-stream", "eslint-scope", "cookie", "@babel/parser", "qs", "is-number", "whatwg-url", "@types/estree", "tr46", "convert-source-map", "is-glob", "braces", "fast-deep-equal", "form-data", "lodash", "@babel/helper-validator-identifier", "electron-to-chromium", "fill-range", "function-bind", "readdirp", "escalade", "graceful-fs", "negotiator", "is-stream", "camelcase", "@babel/runtime", "yocto-queue", "to-regex-range", "node-fetch", "micromatch", "node-releases", "get-intrinsic", "universalify", "path-scurry", "jsesc", "browserslist", "es-errors", "statuses", "@radix-ui/react-primitive", "magic-string", "rimraf", "is-extglob", "@jridgewell/trace-mapping", "@jridgewell/resolve-uri", "http-errors", "onetime", "has-symbols", "es-define-property", "gopd", "util-deprecate", "object-assign", "jiti", "yaml", "dotenv", "@babel/generator", "@babel/template", "imurmurhash", "postcss-selector-parser", "fast-glob", "update-browserslist-db", "@types/node", "@babel/compat-data", "eventemitter3", "callsites", "http-proxy-agent", "detect-libc", "espree", "execa", "@babel/core", "@babel/helpers", "concat-map", "source-map-js", "tinyglobby", "call-bind-apply-helpers", "flat-cache", "fdir", "pify", "@jest/types", "normalize-path", "is-core-module", "eslint", "minimist", "estree-walker", "file-entry-cache", "object-inspect", "buffer", "uri-js", "import-fresh", "@babel/helper-module-transforms", "optionator", "flatted", "math-intrinsics", "safer-buffer", "y18n", "@babel/helper-module-imports", "mkdirp", "dunder-proto", "path-parse", "fastq", "levn", "@babel/helper-compilation-targets", "@babel/helper-string-parser", "keyv", "get-proto", "csstype", "npm-run-path", "fast-json-stable-stringify", "reusify", "@babel/helper-plugin-utils", "kind-of", "mime", "caniuse-lite", "lines-and-columns", "fast-levenshtein", "supports-preserve-symlinks-flag", "make-dir", "slash", "prelude-ls", "typescript", "strip-bom", "parent-module", "esutils", "ci-info", "@smithy/util-utf8", "type-check", "mimic-fn", "@babel/helper-validator-option", "@types/json-schema", "@rolldown/pluginutils", "side-channel-list", "json-buffer", "raw-body", "has-tostringtag", "wrappy", "diff", "jackspeak", "baseline-browser-mapping", "deep-is", "foreground-child", "@eslint/js", "anymatch", "natural-compare", "esquery", "@eslint-community/regexpp", "es-set-tostringtag", "acorn-jsx", "parse5", "finalhandler", "parse-json", "depd", "axios", "run-parallel", "source-map-support", "esrecurse", "call-bound", "content-disposition", "human-signals", "ts-api-utils", "ansi-escapes", "jest-util", "send", "@opentelemetry/core", "type-is", "encodeurl", "once", "cosmiconfig", "lodash.merge", "json-stable-stringify-without-jsonify", "open", "prettier", "@eslint/eslintrc", "is-arrayish", "@jridgewell/sourcemap-codec", "gensync", "word-wrap", "express", "arg", "jsonfile", "schema-utils", "@smithy/is-array-buffer", "@typescript-eslint/types", "chownr", "delayed-stream", "@smithy/util-buffer-from", "asynckit", "tapable", "enhanced-resolve", "aria-query", "indent-string", "bytes", "binary-extensions", "ini", "@radix-ui/react-context", "doctrine", "queue-microtask", "accepts", "merge2", "get-caller-file", "@humanwhocodes/retry", "@jridgewell/gen-mapping", "@typescript-eslint/typescript-estree", "jest-worker", "proxy-from-env", "clsx", "side-channel-map", "@typescript-eslint/visitor-keys", "fresh", "restore-cursor", "on-finished", "is-plain-obj", "ipaddr.js", "pathe", "@jest/schemas", "base64-js", "@smithy/types", "require-directory", "tough-cookie", "is-binary-path", "body-parser", "postcss-value-parser", "media-typer", "setprototypeof", "side-channel-weakmap", "@typescript-eslint/tsconfig-utils", "@isaacs/cliui", "@rollup/rollup-linux-x64-gnu", "is-wsl", "retry", "@aws-sdk/types", "@types/react-dom", "combined-stream", "es-object-atoms", "@eslint/core", "whatwg-mimetype", "domutils", "@rollup/rollup-linux-x64-musl", "core-util-is", "@typescript-eslint/scope-manager", "esprima", "loose-envify", "cookie-signature", "follow-redirects", "cli-cursor", "strip-final-newline", "@typescript-eslint/project-service", "eastasianwidth", "json-parse-even-better-errors", "sprintf-js", "path-type", "content-type", "es-module-lexer", "@nodelib/fs.scandir", "write-file-atomic", "@eslint/plugin-kit", "ieee754", "prop-types", "require-from-string", "dom-serializer", "call-bind", "@eslint/config-array", "has-property-descriptors", "@nodelib/fs.stat", "merge-descriptors", "slice-ansi", "rxjs", "p-map", "toidentifier", "globby", "domhandler", "async", "@babel/helper-globals", "pirates", "@opentelemetry/semantic-conventions", "@typescript-eslint/utils", "date-fns", "is-docker", "tar", "which-typed-array", "ajv-formats", "@opentelemetry/api-logs", "@opentelemetry/resources", "side-channel", "cjs-module-lexer", "range-parser", "@humanfs/node", "define-data-property", "node-addon-api", "pako", "lilconfig", "fast-uri", "ip-address", "fs.realpath", "@img/sharp-libvips-linuxmusl-x64", "cssesc", "@opentelemetry/instrumentation", "domelementtype", "hosted-git-info", "@eslint/object-schema", "etag", "@eslint/config-helpers", "package-json-from-dist", "@humanfs/core", "htmlparser2", "jest-message-util", "for-each", "pkg-dir", "unpipe", "buffer-from", "es-abstract", "is-unicode-supported", "@types/yargs", "is-callable", "fast-xml-parser", "istanbul-lib-instrument", "escape-html", "is-regex", "dom-accessibility-api", "css-tree", "error-ex", "ee-first", "@types/unist", "log-symbols", "path-is-absolute", "end-of-stream", "@vitest/utils", "object.assign", "object-keys", "tinyexec", "scheduler", "p-try", "process-nextick-args", "vary", "@babel/traverse", "@pkgjs/parseargs", "@types/babel__generator", "kleur", "zod", "merge-stream", "available-typed-arrays", "mute-stream", "is-typed-array", "safe-regex-test", "tsconfig-paths", "minizlib", "tar-stream", "@floating-ui/core", "jose", "deepmerge", "get-tsconfig", "set-function-length", "@vitest/spy", "css-select", "@types/babel__core", "forwarded", "react", "@typescript-eslint/parser", "ajv-keywords", "define-properties", "is-generator-function", "regexp.prototype.flags", "acorn-walk", "pump", "data-uri-to-buffer", "object-hash", "jsdom", "nopt", "@babel/plugin-syntax-jsx", "@floating-ui/dom", "tiny-invariant", "strip-indent", "d3-array", "chai", "@babel/code-frame", "@typescript-eslint/eslint-plugin", "proxy-addr", "parseurl", "@floating-ui/utils", "ora", "html-encoding-sniffer", "pnpm", "whatwg-encoding", "events", "@typescript-eslint/type-utils", "env-paths", "internal-slot", "string.prototype.trimend", "extend", "resolve-pkg-maps", "istanbul-lib-coverage", "react-dom", "is-number-object", "@radix-ui/primitive", "is-plain-object", "string.prototype.trimstart", "@babel/plugin-syntax-typescript", "jest-diff", "define-lazy-prop", "globalthis", "which-boxed-primitive", "@vitest/expect", "sax", "@floating-ui/react-dom", "@vitest/pretty-format", "internmap", "@radix-ui/react-compose-refs", "is-symbol", "@eslint-community/eslint-utils", "bl", "serve-static", "get-symbol-description", "is-shared-array-buffer", "functions-have-names", "array-buffer-byte-length", "socks-proxy-agent", "extend-shallow", "@radix-ui/react-use-layout-effect", "function.prototype.name", "is-bigint", "is-string", "protobufjs", "tmp", "is-date-object", "lightningcss-linux-x64-musl", "proc-log", "long", "@opentelemetry/sdk-trace-base", "nth-check", "d3-path", "@types/babel__template", "jest-regex-util", "@radix-ui/react-use-controllable-state", "jest-mock", "socks", "lightningcss", "assertion-error", "es-to-primitive", "tinyrainbow", "possible-typed-array-names", "figures", "xml-name-validator", "any-promise", "d3-shape", "terser", "std-env", "is-array-buffer", "safe-array-concat", "@aws-sdk/token-providers", "data-urls", "d3-interpolate", "@radix-ui/react-dismissable-layer", "set-function-name", "css-what", "typed-array-length", "typed-array-byte-offset", "thenify", "mz", "react-remove-scroll", "@radix-ui/react-id", "is-weakset", "is-boolean-object", "@alloc/quick-lru", "html-escaper", "has-bigints", "@aws-sdk/credential-provider-node", "lightningcss-linux-x64-gnu", "@radix-ui/react-presence", "w3c-xmlserializer", "istanbul-reports", "@babel/helper-annotate-as-pure", "typed-array-buffer", "@nodelib/fs.walk", "sharp", "arraybuffer.prototype.slice", "d3-format", "has-proto", "d3-timer", "lodash.isplainobject", "@aws-sdk/util-endpoints", "@radix-ui/react-use-callback-ref", "d3-time-format", "is-weakref", "autoprefixer", "istanbul-lib-report", "postcss-load-config", "strnum", "core-js", "@vitest/snapshot", "@aws-sdk/credential-provider-env", "define-property", "@sinonjs/fake-timers", "@aws-sdk/credential-provider-web-identity", "clone", "normalize-package-data", "d3-color", "d3-time", "colorette", "is-negative-zero", "unbox-primitive", "data-view-byte-length", "data-view-buffer", "regenerator-runtime", "is-set", "saxes", "decimal.js", "@aws-sdk/core", "@radix-ui/react-portal", "d3-scale", "dequal", "which-collection", "cli-width", "@radix-ui/react-use-escape-keydown", "@swc/helpers", "data-view-byte-offset", "@aws-sdk/util-user-agent-node", "is-map", "is-path-inside", "xtend", "is-finalizationregistry", "import-in-the-middle", "xmlbuilder", "@sinclair/typebox", "is-async-function", "tsx", "d3-ease", "jwa", "@aws-sdk/middleware-user-agent", "@types/express-serve-static-core", "thenify-all", "@jridgewell/remapping", "@vitest/runner", "decamelize", "clean-stack", "abbrev", "@aws-sdk/middleware-logger", "type-detect", "@radix-ui/react-collection", "@radix-ui/react-focus-scope", "loader-utils", "mimic-response", "string.prototype.trim", "fraction.js", "ast-types", "which-builtin-type", "array-includes", "@bcoe/v8-coverage", "expect", "@types/d3-shape", "@smithy/protocol-http", "cli-spinners", "@types/d3-time", "@types/d3-color", "@radix-ui/react-focus-guards", "sucrase", "typed-array-byte-length", "@radix-ui/react-popper", "aria-hidden", "escodegen", "@types/d3-array", "bn.js", "split2", "http-cache-semantics", "utils-merge", "buffer-crc32", "boolbase", "@smithy/fetch-http-handler", "@types/d3-path", "@ungap/structured-clone", "@radix-ui/react-direction", "react-remove-scroll-bar", "@types/send", "mdn-data", "cors", "@types/express", "is-weakmap", "reflect.getprototypeof", "jest-haste-map", "eslint-config-prettier", "postcss-import", "neo-async", "array-union", "ssri", "@types/d3-interpolate", "@aws-sdk/middleware-host-header", "@radix-ui/react-visually-hidden", "@babel/helper-replace-supers", "@radix-ui/react-arrow", "stop-iteration-iterator", "@aws-sdk/credential-provider-process", "istanbul-lib-source-maps", "dedent", "is-data-view", "@smithy/signature-v4", "redent", "@aws-sdk/credential-provider-http", "is-promise", "object.values", "@istanbuljs/schema", "@sindresorhus/is", "own-keys", "@jest/fake-timers", "safe-push-apply", "cssstyle", "destroy", "@jest/transform", "react-transition-group", "@babel/helper-member-expression-to-functions", "ts-interface-checker", "dom-helpers", "@opentelemetry/api", "@img/sharp-linux-x64", "isobject", "array.prototype.flatmap", "@types/ws", "es-shim-unscopables", "vitest", "array.prototype.flat", "@babel/plugin-syntax-import-attributes", "gcp-metadata", "@emnapi/runtime", "@types/chai", "@types/prop-types", "@types/d3-ease", "@babel/helper-create-class-features-plugin", "@radix-ui/react-roving-focus", "@jest/environment", "jest-matcher-utils", "symbol-tree", "detect-node-es", "test-exclude", "dlv", "@vitest/mocker", "@smithy/property-provider", "xmlchars", "webpack-sources", "@smithy/util-middleware", "shell-quote", "smart-buffer", "set-proto", "graphemer", "@aws-sdk/region-config-resolver", "@aws-sdk/util-user-agent-browser", "gaxios", "is-extendable", "@radix-ui/react-dialog", "vite", "get-nonce", "is-potential-custom-element-name", "@types/d3-timer", "@smithy/querystring-builder", "inflight", "@radix-ui/react-use-size", "leven", "@tailwindcss/oxide-linux-x64-musl", "@aws-sdk/middleware-recursion-detection", "read-cache", "@types/ms", "@aws-sdk/xml-builder", "google-auth-library", "why-is-node-running", "aggregate-error", "setimmediate", "read-pkg", "@smithy/smithy-client", "react-hook-form", "methods", "@sinonjs/commons", "object.entries", "babel-jest", "@types/serve-static", "is-interactive", "event-target-shim", "jest-get-type", "postcss-js", "@rollup/pluginutils", "tldts-core", "class-variance-authority", "@napi-rs/wasm-runtime", "@openai/codex", "@jest/console", "@radix-ui/react-use-previous", "pure-rand", "object.fromentries", "babel-plugin-istanbul", "dir-glob", "siginfo", "jest-validate", "@smithy/middleware-endpoint", "babel-plugin-polyfill-corejs3", "@types/istanbul-lib-coverage", "babel-plugin-jest-hoist", "async-function", "array-flatten", "didyoumean", "tinybench", "get-east-asian-width", "@smithy/shared-ini-file-loader", "dayjs", "recharts", "@jest/test-result", "@radix-ui/rect", "@octokit/types", "@babel/plugin-transform-react-jsx-source", "@tootallnate/once", "@protobufjs/utf8", "@protobufjs/codegen", "rollup", "@radix-ui/number", "@smithy/core", "@types/qs", "jest-environment-node", "@protobufjs/inquire", "@babel/plugin-transform-modules-commonjs", "ansi-colors", "jest-resolve", "@smithy/util-base64", "cssom", "@smithy/credential-provider-imds", "ecdsa-sig-formatter", "eslint-import-resolver-node", "camelcase-css", "immer", "victory-vendor", "@smithy/middleware-serde", "@tailwindcss/node", "@types/yargs-parser", "@radix-ui/react-label", "@babel/helper-optimise-call-expression", "process", "@aws-sdk/nested-clients", "@smithy/url-parser", "fast-equals", "@noble/hashes", "jest-snapshot", "@tailwindcss/oxide", "@smithy/middleware-stack", "cli-truncate", "eslint-plugin-import", "@testing-library/dom", "webpack", "@csstools/css-tokenizer", "@smithy/util-retry", "serialize-javascript", "@smithy/service-error-classification", "@types/react", "@radix-ui/react-dropdown-menu", "jest-docblock", "sisteransi", "@aws-sdk/credential-provider-ini", "postcss-nested", "@smithy/querystring-parser", "lie", "@smithy/util-stream", "@colors/colors", "requires-port", "string-length", "web-streams-polyfill", "@radix-ui/react-tooltip", "@smithy/node-config-provider", "@octokit/openapi-types", "diff-sequences", "unist-util-visit", "@smithy/util-uri-escape", "@types/istanbul-reports", "tar-fs", "expect-type", "is-buffer", "@testing-library/jest-dom", "@types/deep-eql", "terser-webpack-plugin", "unist-util-visit-parents", "@tanstack/query-core", "file-type", "watchpack", "@radix-ui/react-separator", "synckit", "babel-preset-jest", "@smithy/middleware-retry", "@smithy/util-hex-encoding", "@radix-ui/react-menu", "eslint-plugin-react", "prompts", "@types/body-parser", "find-cache-dir", "unist-util-is", "make-fetch-happen", "chardet", "jest-watcher", "core-js-compat", "jws", "stack-utils", "is-obj", "@types/range-parser", "@radix-ui/react-select", "jest-runtime", "@smithy/util-endpoints", "inquirer", "rfdc", "unist-util-stringify-position", "import-local", "@radix-ui/react-collapsible", "through2", "@smithy/util-defaults-mode-node", "@radix-ui/react-popover", "regjsparser", "node-gyp", "string.prototype.matchall", "unplugin", "micromark-util-symbol", "color", "decimal.js-light", "nwsapi", "abort-controller", "spdx-expression-parse", "@radix-ui/react-tabs", "@protobufjs/eventemitter", "jest", "@tanstack/react-query", "jsonwebtoken", "@jest/reporters", "@protobufjs/fetch", "tailwindcss", "unique-filename", "make-error", "color-string", "@hookform/resolvers", "glob-to-regexp", "bluebird", "@adobe/css-tools", "@tailwindcss/oxide-linux-x64-gnu", "ts-node", "@smithy/hash-node", "is-descriptor", "@inquirer/type", "psl", "typescript-eslint", "wordwrap", "jest-cli", "@csstools/css-calc", "resolve-cwd", "@types/json5", "@csstools/css-parser-algorithms", "@jest/globals", "@protobufjs/aspromise", "@img/sharp-linuxmusl-x64", "@radix-ui/react-progress", "@jest/expect-utils", "fflate", "get-package-type", "@types/hast", "jest-leak-detector", "@types/istanbul-lib-report", "@babel/plugin-transform-classes", "@types/mdast", "pathval", "safe-stable-stringify", "node-int64", "@radix-ui/react-toggle", "@babel/helper-define-polyfill-provider", "loupe", "char-regex", "@babel/plugin-transform-block-scoping", "jest-runner", "eslint-module-utils", "decompress-response", "uglify-js", "@smithy/util-defaults-mode-browser", "@radix-ui/react-avatar", "jest-circus", "micromark-util-character", "google-logging-utils", "regexpu-core", "lz-string", "min-indent", "@babel/plugin-syntax-numeric-separator", "@babel/plugin-syntax-optional-catch-binding", "fb-watchman", "bser", "@babel/plugin-transform-spread", "deep-eql", "@babel/plugin-syntax-top-level-await", "@babel/plugin-syntax-nullish-coalescing-operator", "zod-to-json-schema", "progress", "@smithy/util-body-length-browser", "@babel/plugin-transform-parameters", "@jest/source-map", "immediate", "@aws-sdk/client-sso", "@babel/plugin-syntax-object-rest-spread", "normalize-url", "@smithy/config-resolver", "@babel/plugin-syntax-logical-assignment-operators", "@protobufjs/pool", "jest-changed-files", "@babel/plugin-syntax-json-strings", "@csstools/color-helpers", "@types/lodash", "webpack-virtual-modules", "jest-resolve-dependencies", "through", "util", "micromark-util-types", "cacache", "@types/stack-utils", "@emnapi/wasi-threads", "axobject-query", "@pkgr/core", "@radix-ui/react-scroll-area", "arrify", "@babel/plugin-transform-computed-properties", "array.prototype.findlastindex", "@opentelemetry/sdk-metrics", "@babel/plugin-transform-for-of", "@emnapi/core", "@babel/plugin-transform-async-to-generator", "@babel/plugin-syntax-class-properties", "defaults", "jsx-ast-utils", "yauzl", "jsonc-parser", "detect-newline", "@aws-crypto/sha256-js", "@types/http-errors", "require-in-the-middle", "@webassemblyjs/helper-wasm-bytecode", "@types/babel__traverse", "@babel/plugin-transform-literals", "@npmcli/fs", "@protobufjs/path", "check-error", "pg-types", "v8-to-istanbul", "babel-plugin-polyfill-corejs2", "@babel/plugin-transform-regenerator", "@testing-library/react", "@types/debug", "url-parse", "@aws-sdk/credential-provider-sso", "eventsource-parser", "bignumber.js", "emittery", "es-iterator-helpers", "wcwidth", "character-entities", "@babel/plugin-syntax-async-generators", "co", "express-rate-limit", "@babel/plugin-syntax-optional-chaining", "css.escape", "@babel/plugin-transform-destructuring", "@types/eslint", "@webassemblyjs/leb128", "character-entities-legacy", "@csstools/css-color-parser", "@webassemblyjs/ast", "querystringify", "vfile-message", "node-domexception", "@protobufjs/base64", "pkg-types", "minipass-collect", "tmpl", "lodash.once", "confbox", "@vitejs/plugin-react", "dompurify", "@babel/plugin-transform-template-literals", "regenerate-unicode-properties", "@webassemblyjs/wasm-opt", "@radix-ui/react-radio-group", "tinyspy", "vfile", "exponential-backoff", "walker", "@types/aria-query", "listr2", "@smithy/util-config-provider", "@webassemblyjs/helper-wasm-section", "object.groupby", "spdx-license-ids", "ufo", "@webassemblyjs/floating-point-hex-parser", "@smithy/middleware-content-length", "graphql", "loader-runner", "babel-plugin-polyfill-regenerator", "@babel/plugin-transform-function-name", "@types/jest", "@babel/plugin-transform-sticky-regex", "quick-lru", "yn", "@grpc/proto-loader", "unicode-match-property-value-ecmascript", "@babel/plugin-transform-arrow-functions", "immutable", "@babel/plugin-transform-shorthand-properties", "@radix-ui/react-alert-dialog", "micromark", "on-headers", "lodash.isstring", "router", "postgres-date", "p-retry", "array.prototype.tosorted", "@inquirer/core", "@types/uuid", "@grpc/grpc-js", "minipass-flush", "spdx-exceptions", "@webassemblyjs/utf8", "unicorn-magic", "@humanwhocodes/module-importer", "@inquirer/figures", "@smithy/util-body-length-node", "mdast-util-to-string", "@babel/helper-remap-async-to-generator", "jszip", "text-table", "eslint-plugin-react-refresh", "log-update", "stylis", "@webassemblyjs/wast-printer", "babel-preset-current-node-syntax", "@webassemblyjs/helper-api-error", "eslint-plugin-prettier", "string.prototype.repeat", "@webassemblyjs/wasm-gen", "@types/pg", "lodash.camelcase", "@jridgewell/source-map", "@babel/helper-wrap-function", "micromark-factory-space", "@webassemblyjs/ieee754", "@babel/plugin-transform-block-scoped-functions", "formdata-polyfill", "@babel/plugin-transform-member-expression-literals", "@babel/plugin-syntax-import-meta", "unique-slug", "@babel/plugin-syntax-private-property-in-object", "set-blocking", "fast-diff", "concat-stream", "lodash.includes", "jest-config", "minimalistic-assert", "@babel/plugin-syntax-import-assertions", "lodash.isinteger", "deep-extend", "@webassemblyjs/wasm-edit", "read-pkg-up", "@babel/plugin-transform-named-capturing-groups-regex", "he", "err-code", "asap", "bowser", "property-information", "cmdk", "iterator.prototype", "lodash.isboolean", "b4a", "@babel/plugin-transform-private-methods", "@istanbuljs/load-nyc-config", "@babel/plugin-transform-unicode-regex", "@babel/plugin-transform-nullish-coalescing-operator", "cac", "@babel/plugin-transform-optional-chaining", "set-cookie-parser", "@webassemblyjs/wasm-parser", "@babel/plugin-syntax-class-static-block", "@babel/helper-create-regexp-features-plugin", "is-inside-container", "run-async", "dot-prop", "@webassemblyjs/helper-buffer", "@babel/plugin-transform-dotall-regex", "meow", "makeerror", "is-generator-fn", "randombytes", "@babel/helper-skip-transparent-expression-wrappers", "process-warning", "array.prototype.findlast", "v8-compile-cache-lib", "lower-case", "@tsconfig/node12", "encoding", "@radix-ui/react-hover-card", "lodash.debounce", "minipass-sized", "fetch-blob", "jest-each", "@ampproject/remapping", "archiver-utils", "micromark-util-sanitize-uri", "@babel/plugin-transform-object-super", "@types/mime", "@babel/plugin-transform-duplicate-keys", "tunnel-agent", "@radix-ui/react-context-menu", "@radix-ui/react-navigation-menu", "run-applescript", "@babel/plugin-transform-modules-systemjs", "pend", "@swc/counter", "p-timeout", "validate-npm-package-license", "resolve.exports", "unified", "chrome-trace-event", "@modelcontextprotocol/sdk", "@tsconfig/node14", "@babel/plugin-transform-class-properties", "default-browser-id", "consola", "tree-kill", "minipass-pipeline", "@babel/plugin-transform-typescript", "@babel/plugin-transform-reserved-words", "handlebars", "rc", "pg-protocol", "@tsconfig/node10", "@babel/plugin-transform-property-literals", "napi-postinstall", "lodash-es", "commondir", "minipass-fetch", "pngjs", "@tsconfig/node16", "collect-v8-coverage", "path-browserify", "bare-events", "no-case", "xml2js", "bundle-name", "lodash.memoize", "fast-xml-builder", "use-sync-external-store", "got", "space-separated-tokens", "is-alphabetical", "spdx-correct", "is-decimal", "which-module", "embla-carousel", "lodash.isnumber", "json-stringify-safe", "micromark-util-chunked", "playwright-core", "@babel/plugin-transform-private-property-in-object", "@rtsao/scc", "@jridgewell/set-array", "wsl-utils", "unicode-canonical-property-names-ecmascript", "micromark-util-normalize-identifier", "compression", "@smithy/invalid-dependency", "@babel/plugin-transform-exponentiation-operator", "react-refresh", "zustand", "@aws-sdk/credential-provider-login", "@babel/preset-typescript", "dotenv-expand", "streamx", "@radix-ui/react-menubar", "@aws-sdk/middleware-sdk-s3", "unrs-resolver", "@xtuc/long", "@xtuc/ieee754", "node-gyp-build", "fast-fifo", "ccount", "is-arguments", "fs-constants", "jest-pnp-resolver", "@inquirer/confirm", "@webassemblyjs/helper-numbers", "@swc/core", "micromark-util-classify-character", "@babel/plugin-transform-unicode-escapes", "@swc/core-linux-x64-gnu", "zwitch", "compressible", "@emotion/memoize", "mdast-util-to-markdown", "embla-carousel-reactive-utils", "@opentelemetry/otlp-exporter-base", "@aws-crypto/sha256-browser", "parse-entities", "@babel/plugin-transform-numeric-separator", "memfs", "@babel/plugin-transform-new-target", "require-main-filename", "mdast-util-to-hast", "embla-carousel-react", "hono", "parse5-htmlparser2-tree-adapter", "moment", "micromark-factory-label", "unicode-property-aliases-ecmascript", "regjsgen", "@babel/plugin-transform-async-generator-functions", "mdast-util-from-markdown", "@humanwhocodes/object-schema", "default-browser", "unicode-match-property-ecmascript", "@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining", "playwright", "module-details-from-path", "acorn-import-attributes", "eslint-plugin-jsx-a11y", "micromark-util-subtokenize", "@jest/expect", "fast-safe-stringify", "micromark-factory-title", "normalize-range", "@hono/node-server", "html-entities", "cheerio", "@smithy/node-http-handler", "remark-parse", "@swc/types", "eventsource", "pino", "lowercase-keys", "micromark-core-commonmark", "node-forge", "@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression", "damerau-levenshtein", "tinypool", "prettier-linter-helpers", "micromark-util-html-tag-name", "astral-regex", "mrmime", "micromark-util-combine-extensions", "@types/retry", "ast-types-flow", "p-cancelable", "ejs", "@testing-library/user-event", "react-resizable-panels", "micromark-util-encode", "trough", "language-tags", "@smithy/abort-controller", "micromark-util-resolve-all", "bail", "fs-minipass", "style-to-object", "@types/parse-json", "pg-connection-string", "input-otp", "@babel/plugin-transform-json-strings", "comma-separated-tokens", "cross-fetch", "fd-slicer", "postgres-interval", "@img/sharp-libvips-linux-x64", "longest-streak", "big.js", "crc-32", "micromark-util-decode-string", "map-obj", "json-schema", "@octokit/request", "validate-npm-package-name", "json-bigint", "@smithy/util-waiter", "micromark-factory-whitespace", "is-alphanumerical", "micromark-util-decode-numeric-character-reference", "reselect", "sonic-boom", "performance-now", "promise-retry", "p-finally", "@opentelemetry/otlp-transformer", "@babel/plugin-transform-object-rest-spread", "@opentelemetry/sdk-logs", "@humanwhocodes/config-array", "jsbn", "micromark-factory-destination", "pino-abstract-transport", "styled-jsx", "@types/semver", "@xmldom/xmldom", "@jest/test-sequencer", "devlop", "interpret", "mdast-util-phrasing", "@babel/plugin-proposal-private-property-in-object", "@types/tough-cookie", "redux", "svgo", "decode-named-character-reference", "character-reference-invalid", "duplexify", "tweetnacl", "typedarray", "client-only", "recast", "@opentelemetry/context-async-hooks", "widest-line", "hoist-non-react-statics", "@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly", "language-subtag-registry", "inline-style-parser", "@babel/plugin-transform-logical-assignment-operators", "@jest/core", "gtoken", "@babel/plugin-transform-unicode-sets-regex", "mimic-function", "@smithy/eventstream-serde-node", "luxon", "supports-hyperlinks", "is-windows", "is-hexadecimal", "@types/eslint-scope", "is-typedarray", "@radix-ui/react-aspect-ratio", "hast-util-whitespace", "@oxc-project/types", "pino-std-serializers", "@humanfs/types", "@babel/plugin-transform-unicode-property-regex", "@smithy/eventstream-serde-config-resolver", "eslint-import-resolver-typescript", "memoize-one", "@tailwindcss/vite", "character-entities-html4", "@inquirer/ansi", "global-prefix", "dot-case", "pg-int8", "pluralize", "@octokit/request-error", "string-argv", "@next/env", "motion-utils", "@octokit/endpoint", "stringify-entities", "pg", "@types/graceful-fs", "image-size", "@radix-ui/react-toast", "unist-util-position", "camel-case", "@babel/plugin-transform-typeof-symbol", "husky", "exit", "@unrs/resolver-binding-linux-x64-gnu", "cacheable-request", "motion-dom", "flat", "@octokit/core", "cheerio-select", "@aws-sdk/client-s3", "@aws-sdk/util-locate-window", "rrweb-cssom", "ansis", "@babel/plugin-transform-modules-amd", "@graphql-tools/utils", "@smithy/eventstream-codec", "@babel/plugin-transform-modules-umd", "reflect-metadata", "@babel/highlight", "sirv", "component-emitter", "regenerate", "@babel/plugin-transform-react-jsx", "trim-lines", "@babel/plugin-syntax-unicode-sets-regex", "remark-rehype", "domexception", "@aws-crypto/util", "pg-pool", "obug", "enquirer", "simple-swizzle", "npm-package-arg", "universal-user-agent", "@unrs/resolver-binding-linux-x64-musl", "@aws-sdk/middleware-flexible-checksums", "@babel/preset-env", "faye-websocket", "promise", "lodash.uniq", "global-modules", "@babel/preset-modules", "nan", "@octokit/graphql", "proxy-agent", "@emotion/unitless", "rechoir", "abab", "@inquirer/external-editor", "responselike", "@aws-sdk/middleware-bucket-endpoint", "param-case", "@octokit/auth-token", "@protobufjs/float", "@smithy/eventstream-serde-universal", "create-require", "json-schema-typed", "thread-stream", "pretty-bytes", "@asamuzakjp/css-color", "@hapi/hoek", "next-themes", "environment", "@types/resolve", "ua-parser-js", "bare-stream", "asn1", "lodash.defaults", "@smithy/uuid", "crc32-stream", "at-least-node", "jake", "invariant", "csso", "@babel/plugin-bugfix-safari-class-field-initializer-scope", "bare-fs", "cookie-es", "filelist", "@babel/plugin-transform-optional-catch-binding", "@aws-sdk/util-arn-parser", "fsevents", "css-loader", "totalist", "is-bun-module", "hermes-estree", "pascal-case", "crypto-random-string", "hermes-parser", "zip-stream", "react-redux", "@octokit/plugin-paginate-rest", "acorn-globals", "@emotion/hash", "pg-cloudflare", "babel-plugin-macros", "pac-proxy-agent", "@babel/plugin-transform-class-static-block", "ret", "before-after-hook", "undici", "extsprintf", "deep-equal", "postcss-modules-scope", "pac-resolver", "zod-validation-error", "http-parser-js", "cli-boxes", "@aws-sdk/middleware-ssec", "degenerator", "archiver", "basic-ftp", "linkify-it", "@emotion/is-prop-valid", "emojis-list", "@babel/plugin-transform-export-namespace-from", "classnames", "bare-path", "cli-table3", "@polka/url", "extract-zip", "parse-ms", "websocket-driver", "shallow-clone", "busboy", "@types/connect", "estree-util-is-identifier-name", "real-require", "tailwind-merge", "streamsearch", "markdown-table", "secure-json-parse", "@next/swc-linux-x64-gnu", "@types/jsonwebtoken", "stream-shift", "micromark-extension-gfm-table", "mitt", "object-is", "http-proxy-middleware", "webpack-dev-middleware", "@smithy/md5-js", "load-json-file", "events-universal", "magicast", "mdast-util-gfm-table", "postcss-modules-local-by-default", "denque", "@parcel/watcher", "yoctocolors-cjs", "globrex", "icss-utils", "get-uri", "mdast-util-gfm-task-list-item", "os-tmpdir", "@babel/plugin-transform-regexp-modifiers", "hash.js", "@aws-sdk/middleware-expect-continue", "babel-loader", "decode-uri-component", "style-to-js", "compress-commons", "mdast-util-mdx-jsx", "@babel/plugin-transform-runtime", "@radix-ui/react-slot", "postcss-modules-values", "http2-wrapper", "file-uri-to-path", "boxen", "@inquirer/prompts", "defu", "uc.micro", "unique-string", "js-cookie", "@types/use-sync-external-store", "detect-node", "@js-sdsl/ordered-map", "@octokit/plugin-rest-endpoint-methods", "tailwindcss-animate", "react-router", "@babel/plugin-transform-dynamic-import", "dateformat", "duplexer", "micromark-extension-gfm-footnote", "http-proxy", "clone-deep", "npm-normalize-package-bin", "remark-stringify", "is-accessor-descriptor", "pretty-ms", "colors", "stack-trace", "mdast-util-gfm", "@types/normalize-package-data", "react-day-picker", "encoding-sniffer", "@smithy/hash-blob-browser", "web-vitals", "@types/yauzl", "parse5-parser-stream", "tsconfck", "mdurl", "mkdirp-classic", "@szmarczak/http-timer", "atomic-sleep", "@inquirer/select", "micromark-extension-gfm-tagfilter", "buffer-equal-constant-time", "aws4", "micromark-extension-gfm-strikethrough", "@sentry/core", "p-queue", "@babel/preset-react", "websocket-extensions", "@inquirer/input", "verror", "node-abi", "@babel/plugin-transform-react-jsx-development", "@aws-sdk/middleware-location-constraint", "mdast-util-gfm-strikethrough", "micromark-extension-gfm-task-list-item", "validator", "mdast-util-mdxjs-esm", "postcss-modules-extract-imports", "mlly", "underscore", "@opentelemetry/instrumentation-http", "is-data-descriptor", "@jest/pattern", "prismjs", "big-integer", "http-signature", "async-retry", "lazystream", "url", "@types/geojson", "@babel/plugin-transform-react-pure-annotations", "@jest/diff-sequences", "micromark-extension-gfm", "stackframe", "serialize-error", "@babel/plugin-bugfix-firefox-class-in-computed-class-key", "fastest-levenshtein", "whatwg-fetch", "readdir-glob", "axe-core", "bindings", "@inquirer/expand", "strtok3", "xml", "@smithy/chunked-blob-reader-native", "detect-indent", "mdast-util-gfm-autolink-literal", "sass", "acorn-import-phases", "@smithy/hash-stream-node", "simple-get", "change-case", "@vue/shared", "assert-plus", "cacheable-lookup", "defer-to-connect", "form-data-encoder", "@opentelemetry/instrumentation-mongodb", "are-we-there-yet", "react-fast-compare", "openai", "ts-jest", "@inquirer/editor", "error-stack-parser", "@inquirer/number", "@opentelemetry/instrumentation-graphql", "markdown-it", "@opentelemetry/instrumentation-pg", "micromark-extension-gfm-autolink-literal", "rolldown", "winston", "strip-literal", "@cspotcode/source-map-support", "common-tags", "yoctocolors", "@babel/helper-split-export-declaration", "has-value", "vite-node", "@opentelemetry/instrumentation-mongoose", "@emotion/serialize", "@types/node-fetch", "node-exports-info", "@opentelemetry/instrumentation-mysql", "hastscript", "agentkeepalive", "formidable", "@popperjs/core", "@opentelemetry/sdk-trace-node", "aproba", "jsprim", "typedarray-to-buffer", "fecha", "ts-dedent", "clean-css", "lodash.sortby", "@emotion/sheet", "@opentelemetry/instrumentation-generic-pool", "generator-function", "@hapi/topo", "@types/trusted-types", "simple-concat", "@emotion/cache", "repeat-string", "@smithy/chunked-blob-reader", "highlight.js", "d3-dispatch", "lint-staged", "@inquirer/rawlist", "bidi-js", "@opentelemetry/instrumentation-hapi", "remark-gfm", "@opentelemetry/instrumentation-connect", "delegates", "ansi-align", "snake-case", "token-types", "hash-base", "fork-ts-checker-webpack-plugin", "mdast-util-gfm-footnote", "react-router-dom", "logform", "isstream", "has-values", "fs-monkey", "@emotion/utils", "@opentelemetry/instrumentation-fs", "@radix-ui/react-toggle-group", "@emotion/weak-memoize", "caseless", "@babel/plugin-transform-explicit-resource-management", "style-loader", "@opentelemetry/instrumentation-lru-memoizer", "@tailwindcss/postcss", "aws-sign2", "hast-util-parse-selector", "@vitest/coverage-v8", "sshpk", "teeny-request", "socket.io-parser", "upath", "redux-thunk", "winston-transport", "bs-logger", "mdast-util-mdx-expression", "triple-beam", "h3", "cluster-key-slot", "joi", "@inquirer/password", "@nolyfill/is-core-module", "@opentelemetry/instrumentation-knex", "tabbable", "is-regexp", "dashdash", "json-parse-better-errors", "@ai-sdk/provider-utils", "@csstools/css-syntax-patches-for-csstree", "getpass", "@opentelemetry/exporter-trace-otlp-http", "@aws/lambda-invoke-store", "@inquirer/search", "preact", "@types/pg-pool", "base64-arraybuffer", "@vue/compiler-core", "react-markdown", "is-node-process", "@opentelemetry/instrumentation-ioredis", "jsonparse", "external-editor", "superagent", "perfect-debounce", "@anthropic-ai/sdk", "@noble/curves", "temp-dir", "gauge", "@opentelemetry/instrumentation-amqplib", "stable-hash", "tsutils", "webpack-merge", "symbol-observable", "@cloudflare/kv-asset-handler", "mdast-util-find-and-replace", "@opentelemetry/instrumentation-tedious", "node-abort-controller", "@types/minimatch", "jest-environment-jsdom", "@ai-sdk/provider", "strict-event-emitter", "@aws-crypto/supports-web-crypto", "@cloudflare/workerd-linux-64", "miniflare", "humanize-ms", "builtin-modules", "@aws-crypto/crc32", "@types/mysql", "citty", "@types/triple-beam", "@opentelemetry/instrumentation-mysql2", "eslint-config-next", "idb", "@esbuild/linux-arm64", "@parcel/watcher-linux-x64-glibc", "@vue/compiler-dom", "@sentry-internal/replay-canvas", "d3-selection", "registry-auth-token", "debounce", "one-time", "@aws-sdk/signature-v4-multi-region", "@supabase/realtime-js", "is-ci", "@smithy/eventstream-serde-browser", "camelcase-keys", "tagged-tag", "ioredis", "postgres-bytea", "lodash.isequal", "d3-drag", "gzip-size", "is-reference", "@babel/plugin-syntax-decorators", "eslint-utils", "query-string", "color-support", "retry-request", "punycode.js", "@opentelemetry/redis-common", "@supabase/auth-js", "@types/cors", "@supabase/storage-js", "table", "is-lambda", "@fastify/busboy", "dezalgo", "npmlog", "@babel/plugin-syntax-dynamic-import", "enabled", "@types/d3-scale", "resolve-alpn", "@emotion/babel-plugin", "@types/http-proxy", "@supabase/supabase-js", "@mswjs/interceptors", "unenv", "d3-transition", "kuler", "@supabase/postgrest-js", "pidtree", "@reduxjs/toolkit", "jquery", "mri", "vitefu", "@opentelemetry/instrumentation-koa", "@formatjs/intl-localematcher", "get-port", "@rolldown/binding-linux-x64-gnu", "wide-align", "fn.name", "@isaacs/balanced-match", "loglevel", "create-jest", "@jest/get-type", "marked", "ohash", "jsonpointer", "@sentry-internal/feedback", "global-dirs", "@supabase/functions-js", "vite-tsconfig-paths", "to-fast-properties", "is-installed-globally", "@types/http-cache-semantics", "@babel/plugin-transform-react-display-name", "@babel/helper-simple-access", "@babel/plugin-syntax-flow", "obuf", "eslint-plugin-react-hooks", "duplexer2", "@azure/abort-controller", "outvariant", "stream-browserify", "@emotion/react", "d3-zoom", "engine.io-parser", "lodash.isarguments", "ts-morph", "fast-check", "napi-build-utils", "lodash.castarray", "for-in", "selfsigned", "ast-v8-to-istanbul", "cross-env", "postcss-loader", "text-hex", "prebuild-install", "connect-history-api-fallback", "asn1.js", "@tybys/wasm-util", "envinfo", "stdin-discarder", "registry-url", "@asamuzakjp/nwsapi", "youch", "@types/react-transition-group", "to-buffer", "smol-toml", "proto3-json-serializer", "expand-template", "lodash.get", "netmask", "forever-agent", "proto-list", "json-schema-to-ts", "libphonenumber-js", "webpack-dev-server", "redis-errors", "html-void-elements", "html-minifier-terser", "postcss-discard-duplicates", "postgres-array", "d3-geo", "robust-predicates", "@vue/compiler-sfc", "joycon", "rou3", "youch-core", "@types/aws-lambda", "config-chain", "lodash.clonedeep", "launch-editor", "wildcard", "clone-response", "stringify-object", "@babel/plugin-proposal-decorators", "@opentelemetry/instrumentation-express", "browserify-zlib", "raf", "urlpattern-polyfill", "remove-trailing-separator", "node-gyp-build-optional-packages", "destr", "arr-diff", "@emotion/use-insertion-effect-with-fallbacks", "msgpackr", "redis-parser", "@ts-morph/common", "postcss-minify-selectors", "@types/glob", "postcss-discard-empty", "filesize", "vscode-uri", "fast-copy", "postcss-merge-rules", "get-stdin", "@opentelemetry/instrumentation-dataloader", "filter-obj", "map-cache", "terminal-link", "@opentelemetry/instrumentation-undici", "cookiejar", "void-elements", "@graphql-tools/merge", "moment-timezone", "dns-packet", "cssnano", "import-meta-resolve", "@puppeteer/browsers", "core-js-pure", "github-from-package", "has", "@graphql-tools/schema", "sass-loader", "postcss-merge-longhand", "@sentry/react", "postcss-minify-params", "postcss-convert-values", "@angular-devkit/core", "strict-uri-encode", "@babel/helper-function-name", "ecc-jsbn", "@sentry-internal/browser-utils", "blake3-wasm", "traverse", "@jsonjoy.com/util", "@sentry-internal/replay", "trim-newlines", "select-hose", "@types/tedious", "@yarnpkg/lockfile", "@radix-ui/react-slider", "postcss-svgo", "@types/jsdom", "@azure/msal-common", "import-lazy", "assert", "set-value", "bare-url", "spdy-transport", "mini-css-extract-plugin", "html-url-attributes", "postcss-calc", "cssnano-preset-default", "@babel/plugin-transform-flow-strip-types", "postcss-normalize-whitespace", "stylehacks", "@tootallnate/quickjs-emscripten", "batch", "is-what", "colord", "es6-promise", "ansi-html-community", "opener", "console-control-strings", "@vue/compiler-ssr", "@tanstack/history", "@vitejs/plugin-react-swc", "postcss-normalize-url", "telecom-mas-agent", "@faker-js/faker", "node-fetch-native", "has-unicode", "@dnd-kit/core", "@types/mdx", "tunnel", "@babel/plugin-transform-duplicate-named-capturing-groups-regex", "url-join", "@dnd-kit/utilities", "postcss-normalize-timing-functions", "@opentelemetry/exporter-logs-otlp-http", "@aws-sdk/client-sts", "crypto-js", "relateurl", "w3c-keyname", "devtools-protocol", "spdy", "lucide-react", "bcrypt-pbkdf", "sha.js", "postcss-unique-selectors", "@sentry/cli", "postcss-normalize-display-values", "@csstools/selector-specificity", "eventemitter2", "@cloudflare/unenv-preset", "@aws-sdk/util-format-url", "@types/cookie", "@babel/helper-environment-visitor", "copy-anything", "vfile-location", "postcss-reduce-transforms", "postcss-discard-overridden", "xdg-basedir", "xmlbuilder2", "@isaacs/fs-minipass", "@google-cloud/paginator", "type", "jspdf", "css-declaration-sorter", "fast-content-type-parse", "uint8array-extras", "postcss-colormin", "srvx", "pdfjs-dist", "@formatjs/ecma402-abstract", "nice-try", "html-webpack-plugin", "effect", "giget", "serve-index", "upper-case", "@opentelemetry/otlp-grpc-exporter-base", "postcss-ordered-values", "shallowequal", "package-manager-detector", "postcss-reduce-initial", "postcss-discard-comments", "homedir-polyfill", "postcss-minify-gradients", "@standard-schema/spec", "rw", "functional-red-black-tree", "concurrently", "headers-polyfill", "untildify", "@svgr/babel-plugin-transform-react-native-svg", "@opentelemetry/instrumentation-redis", "jwt-decode", "parse-passwd", "@opentelemetry/propagator-jaeger", "warning", "postcss-normalize-charset", "@types/d3-zoom", "@svgr/babel-plugin-svg-dynamic-title", "expand-tilde", "@babel/plugin-proposal-class-properties", "postcss-minify-font-values", "multicast-dns", "stream-events", "sockjs", "hpack.js", "@svgr/plugin-jsx", "nodemailer", "react-docgen", "@tanstack/router-core", "postcss-normalize-unicode", "postcss-normalize-positions", "@rollup/plugin-node-resolve", "@svgr/babel-plugin-svg-em-dimensions", "@formatjs/fast-memoize", "adm-zip", "code-block-writer", "postcss-normalize-string", "queue", "@svgr/hast-util-to-babel-ast", "upper-case-first", "d3-hierarchy", "@mdx-js/react", "rc9", "pretty-error", "wbuf", "lodash.truncate", "thunky", "atob", "postcss-normalize-repeat-style", "renderkid", "lodash.flatten", "throat", "@formatjs/icu-skeleton-parser", "has-ansi", "@npmcli/agent", "@date-fns/tz", "@tanstack/router-plugin", "array-unique", "@svgr/babel-preset", "@formatjs/icu-messageformat-parser", "caniuse-api", "empathic", "safe-regex", "tempy", "seroval", "querystring", "intl-messageformat", "@opentelemetry/propagator-b3", "@tanstack/react-virtual", "@svgr/babel-plugin-remove-jsx-empty-expression", "msgpackr-extract", "@jsonjoy.com/json-pack", "help-me", "tldts", "@types/statuses", "request", "@babel/plugin-transform-react-jsx-self", "@parcel/watcher-linux-x64-musl", "@svgr/babel-plugin-replace-jsx-attribute-value", "ignore-walk", "@tanstack/router-generator", "md5", "@types/long", "@esbuild/darwin-arm64", "eslint-plugin-jest", "bplist-parser", "@jest/snapshot-utils", "@tanstack/router-utils", "conventional-commits-parser", "@svgr/core", "delaunator", "get-value", "stubs", "arr-union", "@types/d3-transition", "@angular-devkit/schematics", "@types/d3-selection", "isomorphic-ws", "c12", "@babel/plugin-syntax-bigint", "@paralleldrive/cuid2", "del", "har-validator", "@types/request", "@azure/msal-node", "@dnd-kit/accessibility", "charenc", "@jsonjoy.com/base64", "@graphql-typed-document-node/core", "d3-quadtree", "@types/mdurl", "@tanstack/virtual-file-routes", "@types/keyv", "throttleit", "nypm", "@dnd-kit/sortable", "supertest", "dependency-graph", "@svgr/babel-plugin-add-jsx-attribute", "oauth-sign", "ramda", "chromium-bidi", "elliptic", "ripemd160", "@octokit/rest", "@svgr/babel-plugin-remove-jsx-attribute", "@shikijs/types", "configstore", "@types/connect-history-api-fallback", "@types/d3-time-format", "arch", "@types/doctrine", "shimmer", "utila", "expand-brackets", "engine.io", "stackback", "sort-keys", "npm-install-checks", "@tanstack/store", "@types/responselike", "@types/html-minifier-terser", "@sentry/opentelemetry", "@opentelemetry/instrumentation-kafkajs", "npm-bundled", "node-emoji", "npm-pick-manifest", "bonjour-service", "prr", "@shikijs/engine-oniguruma", "node-pty", "append-field", "json-stable-stringify", "web-namespaces", "promise-inflight", "layout-base", "split-on-first", "@esbuild/win32-x64", "@types/d3-drag", "@asamuzakjp/dom-selector", "@types/sockjs", "mocha", "connect", "@jsonjoy.com/buffers", "@npmcli/promise-spawn", "@types/js-yaml", "d3-force", "resolve-dir", "@rollup/plugin-commonjs", "proper-lockfile", "@rushstack/eslint-patch", "@types/markdown-it", "@babel/plugin-proposal-object-rest-spread", "local-pkg", "d3-delaunay", "pinkie", "@ioredis/commands", "create-hash", "use-sidecar", "react-docgen-typescript", "hast-util-from-parse5", "@discoveryjs/json-ext", "klona", "@inquirer/checkbox", "@npmcli/git", "socket.io", "npm-packlist", "@types/serve-index", "is-module", "seroval-plugins", "conventional-changelog-angular", "find-root", "@types/minimist", "har-schema", "cssnano-utils", "is-retry-allowed", "@msgpackr-extract/msgpackr-extract-linux-x64", "@sentry/node-core", "des.js", "@bufbuild/protobuf", "mustache", "lodash.escaperegexp", "handle-thing", "q", "@types/fs-extra", "jsonify", "@babel/helper-hoist-variables", "url-template", "errno", "regexpp", "@aws-sdk/s3-request-presigner", "assign-symbols", "exit-x", "@opentelemetry/exporter-metrics-otlp-http", "path-case", "csv-parse", "limiter", "crypt", "extglob", "fbjs", "text-decoder", "@vercel/oidc", "@aws-crypto/crc32c", "cron-parser", "i18next", "pinkie-promise", "@socket.io/component-emitter", "sourcemap-codec", "@esbuild/darwin-x64", "@opentelemetry/exporter-trace-otlp-grpc", "svg-parser", "@borewit/text-codec", "@types/d3-delaunay", "base64id", "basic-auth", "slugify", "hmac-drbg", "minimist-options", "vscode-languageserver-types", "qrcode", "http-deceiver", "lighthouse-logger", "@apidevtools/json-schema-ref-parser", "quansync", "socket.io-adapter", "@types/bonjour", "@mapbox/node-pre-gyp", "@types/d3-format", "@tanstack/start-client-core", "@tanstack/start-storage-context", "@tanstack/start-server-core", "brorand", "@tanstack/start-plugin-core", "sentence-case", "@tanstack/react-start-server", "@tanstack/react-start-client", "object.pick", "d3-dsv", "@types/d3-scale-chromatic", "js-base64", "@sideway/formula", "xml-js", "es-get-iterator", "nullthrows", "walk-up-path", "ts-loader", "lodash.throttle", "katex", "constant-case", "@dabh/diagnostics", "@tanstack/start-fn-stubs", "get-own-enumerable-property-symbols", "use-callback-ref", "@azure/msal-browser", "@tanstack/table-core", "graphql-tag", "string.prototype.includes", "@tanstack/react-table", "tsconfig-paths-webpack-plugin", "es6-symbol", "socket.io-client", "@azure/core-client", "is-url", "@types/hoist-non-react-statics", "workerpool", "needle", "formdata-node", "@types/sinonjs__fake-timers", "es5-ext", "use-isomorphic-layout-effect", "@types/validator", "es6-error", "bson", "dom-converter", "hast-util-to-parse5", "source-map-resolve", "isbinaryfile", "header-case", "capital-case", "css-line-break", "npm-registry-fetch", "strip-eof", "split", "@types/superagent", "on-exit-leak-free", "engine.io-client", "googleapis-common", "d3-polygon", "package-json", "d3-axis", "@types/d3-hierarchy", "react-style-singleton", "@types/caseless", "@trysound/sax", "@shikijs/langs", "postcss-safe-parser", "pkce-challenge", "is-path-cwd", "next-tick", "unzipper", "compare-versions", "google-gax", "semver-compare", "minimalistic-crypto-utils", "@sindresorhus/merge-streams", "chrome-launcher", "html2canvas", "@types/pako", "@actions/http-client", "@napi-rs/canvas", "nodemon", "ignore-by-default", "decamelize-keys", "@mui/types", "deprecation", "@emotion/styled", "prosemirror-transform", "regenerator-transform", "crelt", "@tanstack/react-start", "d", "compare-func", "@sentry/cli-linux-x64", "lodash.difference", "@types/d3-force", "dataloader", "union-value", "@svgr/babel-plugin-transform-svg-component", "motion", "confusing-browser-globals", "@opentelemetry/exporter-trace-otlp-proto", "jwks-rsa", "@shikijs/themes", "hast-util-raw", "d3-chord", "simple-update-notifier", "@types/cookiejar", "@babel/plugin-proposal-optional-chaining", "@isaacs/brace-expansion", "@types/node-forge", "lodash.union", "is-relative", "standard-as-callback", "touch", "path-is-inside", "webpack-cli", "vue", "portfinder", "@opentelemetry/exporter-metrics-otlp-proto", "source-map-url", "tree-dump", "d3", "html-tags", "JSONStream", "thingies", "file-loader", "@graphql-codegen/plugin-helpers", "tinycolor2", "split-string", "@sentry/node", "lodash.isfunction", "copy-webpack-plugin", "unc-path-regex", "is-unc-path", "resize-observer-polyfill", "cipher-base", "@jsonjoy.com/json-pointer", "is-absolute", "@rollup/plugin-replace", "@types/cacheable-request", "tsscmp", "hookable", "@azure/core-tracing", "is-property", "@types/luxon", "pbkdf2", "findup-sync", "camelize", "es6-iterator", "@lukeed/csprng", "@npmcli/run-script", "call-me-maybe", "unbzip2-stream", "hard-rejection", "vscode-languageserver-textdocument", "generate-function", "@ai-sdk/gateway", "pumpify", "lru-memoizer", "puppeteer-core", "address", "@shikijs/core", "chart.js", "pkg-up", "@opentelemetry/exporter-metrics-otlp-grpc", "comment-json", "@types/d3", "yup", "shiki", "unist-util-remove-position", "@prisma/get-platform", "ext", "hyperdyperid", "metro-source-map", "array-ify", "lodash.snakecase", "@google-cloud/storage", "git-raw-commits", "array-back", "metro-runtime", "@sentry/types", "import-from", "plist", "browserify-aes", "to-object-path", "rehype-raw", "lodash.mergewith", "npm", "@npmcli/node-gyp", "get-func-name", "undefsafe", "stream-buffers", "fault", "@sentry/babel-plugin-component-annotate", "prosemirror-commands", "escape-goat", "hast-util-is-element", "@rolldown/binding-linux-x64-musl", "d3-brush", "@vue/reactivity", "metro-symbolicate", "unset-value", "@esbuild/linux-loong64", "d3-contour", "title-case", "builtins", "adler-32", "ob1", "@babel/plugin-proposal-nullish-coalescing-operator", "@types/d3-geo", "is-nan", "@prisma/debug", "css-color-keywords", "esbuild-register", "pstree.remy", "typical", "@tanstack/react-start-rsc", "@turf/helpers", "crypto-browserify", "oxc-parser", "storybook", "jsonpath-plus", "toposort", "polished", "event-emitter", "prosemirror-view", "webpack-bundle-analyzer", "dset", "ip-regex", "morgan", "@types/supertest", "@jsonjoy.com/codegen", "mixin-deep", "compute-scroll-into-view", "object-visit", "@svgr/plugin-svgo", "@types/d3-axis", "pseudomap", "@aws-sdk/client-cognito-identity", "repeat-element", "@tiptap/pm", "d3-random", "@tiptap/extension-paragraph", "@types/estree-jsx", "@cloudflare/vite-plugin", "constants-browserify", "cfb", "ssf", "acorn-import-assertions", "@jest/create-cache-key-function", "os-homedir", "async-limiter", "html-parse-stringify", "@types/d3-random", "@types/d3-fetch", "prosemirror-state", "@types/d3-brush", "swr", "mysql2", "svg-pathdata", "@npmcli/installed-package-contents", "@types/d3-dsv", "@types/shimmer", "@opentelemetry/exporter-prometheus", "@expo/json-file", "@types/d3-dispatch", "metro-transform-worker", "metro-cache-key", "helmet", "metro", "@esbuild/linux-ppc64", "@jsdevtools/ono", "@clack/core", "@base44/vite-plugin", "copy-descriptor", "global-directory", "css-to-react-native", "@flmngr/flmngr-react", "@whatwg-node/node-fetch", "@tiptap/extension-italic", "ajv-draft-04", "arr-flatten", "tiny-warning", "browserify-sign", "@esbuild/freebsd-x64", "fragment-cache", "metro-transform-plugins", "common-path-prefix", "xmlhttprequest-ssl", "miller-rabin", "browserify-rsa", "@vue/runtime-core", "deepmerge-ts", "prepend-http", "esniff", "@vue/runtime-dom", "urix", "notifications-node-client", "copy-to-clipboard", "mnemonist", "@types/methods", "valibot", "path-root", "@shikijs/engine-javascript", "prosemirror-model", "@remix-run/router", "@floating-ui/react", "https-browserify", "@esbuild/sunos-x64", "use", "resolve-url", "stream-http", "yargs-unparser", "d3-fetch", "@azure/core-rest-pipeline", "metro-cache", "cache-base", "papaparse", "codepage", "ai", "react-dropzone", "graphql-ws", "parse-asn1", "prosemirror-tables", "v8-compile-cache", "xlsx", "fstream", "@storybook/react", "@tiptap/extension-strike", "diffie-hellman", "@open-draft/logger", "quick-format-unescaped", "source-map-loader", "canvg", "@actions/core", "@nestjs/core", "hasha", "buffers", "class-utils", "snapdragon", "file-selector", "bottleneck", "path-root-regex", "@aws-crypto/sha1-browser", "collection-visit", "fbjs-css-vars", "@esbuild/win32-arm64", "marky", "frac", "@vue/server-renderer", "shelljs", "wmf", "pascalcase", "github-slugger", "jsdoc-type-pratt-parser", "@nestjs/common", "create-hmac", "regex-not", "@tiptap/extension-heading", "@kwsites/file-exists", "puppeteer", "parse-filepath", "redis", "posix-character-classes", "domain-browser", "nanomatch", "@lovable.dev/vite-tanstack-config", "metro-config", "p-defer", "@tiptap/extension-bold", "pgpass", "quickselect", "@types/phoenix", "@google-cloud/promisify", "auto-bind", "fuse.js", "@mui/system", "@leichtgewicht/ip-codec", "word", "static-extend", "@types/d3-polygon", "regex", "@tiptap/extension-bubble-menu", "conventional-changelog-conventionalcommits", "@babel/eslint-parser", "@babel/runtime-corejs3", "base", "format", "fast-redact", "@tiptap/extension-bullet-list", "known-css-properties", "@sideway/pinpoint", "@esbuild/linux-ia32", "@types/prettier", "snapdragon-node", "@graphql-codegen/visitor-plugin-common", "is-network-error", "@tiptap/extension-blockquote", "@esbuild/linux-riscv64", "@esbuild/netbsd-x64", "public-encrypt", "to-regex", "@google/genai", "@tiptap/extension-ordered-list", "object-copy", "@sentry/utils", "multer", "@slack/types", "source-list-map", "yaml-ast-parser", "map-visit", "@azure/core-util", "metro-file-map", "@tiptap/extension-code-block", "object.getownpropertydescriptors", "@graphql-tools/batch-execute", "@speed-highlight/core", "@vitest/ui", "@webpack-cli/serve", "@esbuild/openbsd-x64", "@esbuild/android-arm64", "pvutils", "@esbuild/freebsd-arm64", "@babel/plugin-proposal-numeric-separator", "chainsaw", "stable", "@types/d3-chord", "snapdragon-util", "latest-version", "@tiptap/extension-list-item", "harmony-reflect", "swagger-ui-dist", "attr-accept", "is-npm", "@babel/helper-builder-binary-assignment-operator-visitor", "array-timsort", "lodash.flattendeep", "vm-browserify", "@swc/core-linux-x64-musl", "@pnpm/network.ca-file", "selderee", "@storybook/addon-docs", "@esbuild/android-x64", "@esbuild/linux-mips64el", "chevrotain", "oniguruma-to-es", "browser-stdout", "bcryptjs", "@microsoft/tsdoc", "case-sensitive-paths-webpack-plugin", "simple-git", "find-up-simple", "@firebase/util", "@kurkle/color", "@webpack-cli/info", "hookified", "querystring-es3", "console-browserify", "regex-recursion", "@tiptap/extension-link", "tty-browserify", "@esbuild/android-arm", "index-to-position", "dargs", "os-browserify", "sinon", "less", "react-i18next", "fast-wrap-ansi", "@pnpm/config.env-replace", "stackblur-canvas", "@babel/plugin-proposal-private-methods", "binary", "class-transformer", "@whatwg-node/fetch", "property-expr", "@babel/register", "typed-query-selector", "metro-babel-transformer", "md5.js", "memory-fs", "builtin-status-codes", "@fast-csv/format", "hyphenate-style-name", "fast-querystring", "@volar/language-core", "ip", "@redis/client", "is-builtin-module", "astring", "@esbuild/linux-arm", "@babel/plugin-syntax-export-namespace-from", "is-lower-case", "@esbuild/linux-s390x", "pvtsutils", "@rollup/plugin-babel", "@types/d3-contour", "rettime", "@opentelemetry/instrumentation-nestjs-core", "asn1js", "linkifyjs", "browser-process-hrtime", "@types/whatwg-url", "jsep", "@aws-sdk/credential-providers", "@selderee/plugin-htmlparser2", "regex-parser", "@npmcli/package-json", "number-is-nan", "default-gateway", "infer-owner", "timers-browserify", "is-upper-case", "comment-parser", "fast-csv", "@storybook/theming", "styled-components", "@graphql-tools/load", "html-to-text", "@oxc-parser/binding-linux-x64-gnu", "react-lifecycles-compat", "swap-case", "@tokenizer/token", "adjust-sourcemap-loader", "msw", "stylelint", "isomorphic-fetch", "@actions/io", "vscode-languageserver-protocol", "postcss-media-query-parser", "aws-sdk", "lodash.groupby", "@mui/styled-engine", "@react-native/dev-middleware", "parseley", "code-point-at", "async-mutex", "@esbuild/aix-ppc64", "jest-serializer", "resolve-url-loader", "@slack/web-api", "babel-plugin-syntax-hermes-parser", "@graphql-tools/optimize", "@tiptap/extension-code", "identity-obj-proxy", "@tiptap/extension-document", "crossws", "buffer-xor", "filenamify", "@azure/core-paging", "natural-compare-lite", "jest-junit", "for-own", "brotli", "@graphql-tools/relay-operation-optimizer", "parse-node-version", "generic-pool", "semver-diff", "@webpack-cli/configtest", "@csstools/media-query-list-parser", "matcher", "better-opn", "date-fns-tz", "@tiptap/extension-gapcursor", "from2", "@braintree/sanitize-url", "randexp", "array-uniq", "yarn", "@expo/plist", "@tufjs/models", "@mui/core-downloads-tracker", "@chevrotain/types", "@tiptap/starter-kit", "@esbuild/win32-ia32", "base-x", "@mui/utils", "lodash.isnil", "class-validator", "sqlstring", "object-treeify", "cachedir", "react-error-boundary", "@vue/devtools-api", "react-devtools-core", "lowlight", "vscode-languageserver", "uid", "lodash.startcase", "@slack/logger", "http-status-codes", "fast-decode-uri-component", "metro-minify-terser", "jmespath", "@mui/private-theming", "pino-pretty", "@svgr/webpack", "@radix-ui/react-toolbar", "@jsep-plugin/assignment", "@commitlint/types", "postgres", "@keyv/serialize", "fast-sha256", "tuf-js", "earcut", "@sinonjs/samsam", "openid-client", "create-ecdh", "@types/sizzle", "cookie-parser", "update-notifier", "pixelmatch", "react-icons", "iterare", "toggle-selection", "@tiptap/extension-underline", "@iconify/types", "@graphql-tools/graphql-tag-pluck", "svg-tags", "pacote", "lodash.kebabcase", "@azure/logger", "@ardatan/relay-compiler", "temp", "@mui/material", "rope-sequence", "moo", "browserify-cipher", "@prisma/config", "editorconfig", "nx", "chalk-template", "util.promisify", "p-event", "w3c-hr-time", "spark-md5", "css-minimizer-webpack-plugin", "turbo", "es-array-method-boxes-properly", "cross-inspect", "history", "supercluster", "kdbush", "is-utf8", "@stablelib/base64", "@fast-csv/parse", "@kwsites/promise-deferred", "@clack/prompts", "@expo/config-plugins", "jju", "cosmiconfig-typescript-loader", "react-select", "@commitlint/execute-rule", "uncrypto", "@commitlint/load", "is-text-path", "@types/linkify-it", "bare-os", "@tiptap/react", "@react-native/debugger-frontend", "@chevrotain/cst-dts-gen", "googleapis", "lodash.isundefined", "@module-federation/sdk", "@google-cloud/projectify", "anser", "devalue", "hast-util-to-text", "@octokit/plugin-request-log", "@antfu/install-pkg", "@sigstore/bundle", "detect-file", "text-extensions", "globjoin", "ulid", "eslint-plugin-testing-library", "lower-case-first", "workbox-core", "filename-reserved-regex", "@firebase/logger", "prosemirror-schema-list", "pupa", "text-segmentation", "@opentelemetry/instrumentation-grpc", "safe-regex2", "@pmmmwh/react-refresh-webpack-plugin", "mdast-util-definitions", "@stripe/stripe-js", "@biomejs/biome", "eslint-plugin-unused-imports", "@jsep-plugin/regex", "@react-aria/interactions", "@aws-sdk/credential-provider-cognito-identity", "buffer-indexof-polyfill", "@redis/search", "date-fns-jalali", "@graphql-tools/executor-http", "@commitlint/resolve-extends", "@react-native/normalize-colors", "@vue/language-core", "@typescript-eslint/experimental-utils", "prosemirror-markdown", "@types/scheduler", "@anthropic-ai/claude-code", "archy", "webpack-node-externals", "@tufjs/canonical-json", "tinyqueue", "@react-aria/focus", "strip-comments", "babel-runtime", "@graphql-tools/executor", "sanitize-html", "@storybook/csf", "cookies", "is-electron", "wait-on", "@octokit/auth-app", "leac", "find-versions", "@anthropic-ai/claude-code-linux-x64", "date-format", "potpack", "@volar/source-map", "@sigstore/tuf", "istanbul-lib-hook", "@repeaterjs/repeater", "@module-federation/webpack-bundler-runtime", "semver-regex", "@redis/json", "hast-util-from-html", "birpc", "@radix-ui/react-use-rect", "@chevrotain/gast", "find-yarn-workspace-root", "@commitlint/rules", "@nicolo-ribaudo/eslint-scope-5-internals", "@types/webidl-conversions", "@tanstack/query-devtools", "sigstore", "btoa", "fd-package-json", "@sigstore/sign", "@lezer/lr", "jpeg-js", "graphql-config", "@commitlint/to-lines", "@aws-sdk/client-sqs", "@redis/time-series", "peek-readable", "@commitlint/cli", "vinyl", "graphql-request", "fromentries", "@yarnpkg/parsers", "react-easy-router", "@react-aria/ssr", "@tiptap/extension-horizontal-rule", "@types/js-cookie", "lazy-cache", "vlq", "@types/bunyan", "@react-types/shared", "prosemirror-dropcursor", "read-cmd-shim", "@opentelemetry/exporter-zipkin", "jest-jasmine2", "postcss-nesting", "toml", "replace-ext", "prosemirror-schema-basic", "sparse-bitfield", "p-is-promise", "@prisma/fetch-engine", "refractor", "postcss-custom-media", "read-package-json-fast", "postcss-custom-properties", "multimatch", "@codemirror/view", "@radix-ui/react-use-effect-event", "@aws-sdk/middleware-sdk-sqs", "array-differ", "@sideway/address", "ts-toolbelt", "sade", "workbox-expiration", "roarr", "@esbuild/openbsd-arm64", "@scarf/scarf", "nyc", "cytoscape", "prisma", "@typespec/ts-http-runtime", "@graphql-tools/executor-common", "prosemirror-gapcursor", "find-my-way", "exit-hook", "@commitlint/lint", "oauth4webapi", "types-registry", "@react-stately/utils", "@types/ssh2", "workbox-navigation-preload", "mongodb", "@graphql-tools/json-file-loader", "ofetch", "workbox-google-analytics", "@prisma/engines-version", "workbox-streams", "workbox-background-sync", "workbox-strategies", "@storybook/core-events", "unstorage", "fastify", "url-parse-lax", "@remirror/core-constants", "@biomejs/cli-linux-x64", "boolean", "collapse-white-space", "@expo/config-types", "@firebase/database-types", "@nx/devkit", "executable", "array.prototype.reduce", "@nestjs/platform-express", "xpath", "global", "value-or-promise", "prosemirror-trailing-node", "@sigstore/verify", "get-port-please", "@redis/bloom", "@storybook/preview-api", "prosemirror-changeset", "@cypress/request", "js-beautify", "muggle-string", "unixify", "next", "@commitlint/ensure", "superjson", "jest-watch-typeahead", "@graphql-tools/wrap", "@commitlint/config-conventional", "koa", "eslint-plugin-storybook", "@commitlint/read", "postcss-selector-not", "workbox-range-requests", "@commitlint/is-ignored", "postcss-custom-selectors", "utility-types", "unicode-properties", "postcss-pseudo-class-any-link", "@aws-sdk/client-secrets-manager", "postcss-color-rebeccapurple", "streamroller", "postcss-attribute-case-insensitive", "zen-observable-ts", "sonner", "estree-util-visit", "js-levenshtein", "fast-json-stringify", "iron-webcrypto", "workbox-cacheable-response", "@radix-ui/react-accordion", "eslint-import-context", "classcat", "detect-port", "jscodeshift", "@aws-sdk/client-lambda", "scroll-into-view-if-needed", "light-my-request", "fastify-plugin", "@sigstore/core", "@commitlint/format", "append-transform", "@module-federation/runtime-tools", "@aws-sdk/middleware-endpoint-discovery", "caller-path", "keygrip", "postcss-focus-visible", "@aashutoshrathi/word-wrap", "pprof-format", "@commitlint/config-validator", "@module-federation/runtime-core", "@sentry/webpack-plugin", "@graphql-tools/executor-graphql-ws", "@commitlint/message", "oniguruma-parser", "postcss-lab-function", "prosemirror-menu", "cli-progress", "@commitlint/top-level", "postcss-gap-properties", "postcss-place", "css-functions-list", "workbox-build", "@storybook/components", "is-absolute-url", "micromark-extension-mdxjs-esm", "getenv", "postcss-font-variant", "caching-transform", "cmd-shim", "@firebase/app-types", "stable-hash-x", "dd-trace", "es6-weak-map", "postcss-color-functional-notation", "evp_bytestokey", "postcss-replace-overflow-wrap", "@storybook/client-logger", "css-blank-pseudo", "cssdb", "@esbuild/netbsd-arm64", "@rollup/rollup-linux-arm64-gnu", "global-agent", "hpagent", "@opentelemetry/sql-common", "@radix-ui/react-checkbox", "ssh2", "workbox-window", "@aws-sdk/util-utf8-browser", "server-only", "@posthog/core", "@graphql-tools/delegate", "@chevrotain/utils", "@react-aria/utils", "@isaacs/ttlcache", "abstract-logging", "@babel/plugin-proposal-async-generator-functions", "patch-package", "@rollup/plugin-json", "react-textarea-autosize", "micromark-extension-mdx-jsx", "postcss-dir-pseudo-class", "@aws-sdk/lib-storage", "@zkochan/js-yaml", "seedrandom", "micromark-factory-mdx-expression", "@babel/plugin-transform-react-constant-elements", "unist-util-position-from-estree", "@firebase/auth-interop-types", "load-tsconfig", "sync-fetch", "@apideck/better-ajv-errors", "nise", "eslint-compat-utils", "postcss-resolve-nested-selector", "@gar/promisify", "workbox-routing", "@graphql-tools/code-file-loader", "glob-to-regex.js", "avvio", "@nestjs/schematics", "exsolve", "@opentelemetry/instrumentation-aws-sdk", "is-directory", "log4js", "csv-stringify", "eslint-config-airbnb-base", "prosemirror-collab", "request-progress", "istanbul-lib-processinfo", "@babel/plugin-proposal-export-default-from", "klaw-sync", "remark-mdx", "@types/multer", "async-each", "delay", "@lezer/highlight", "cypress", "localforage", "@nestjs/mapped-types", "buildcheck", "less-loader", "@open-draft/until", "passport", "@rushstack/node-core-library", "@lezer/common", "@commitlint/parse", "@azure/identity", "workbox-recipes", "@firebase/database-compat", "@drizzle-team/brocli", "strip-dirs", "@octokit/plugin-throttling", "@types/q", "postcss-color-hex-alpha", "stylelint-config-recommended", "min-document", "clipboardy", "dc-polyfill", "ansi-html", "workbox-broadcast-update", "alien-signals", "flow-enums-runtime", "axios-retry", "throttle-debounce", "postcss-preset-env", "postcss-logical", "fontkit", "linebreak", "@types/nodemailer", "css-prefers-color-scheme", "@opentelemetry/instrumentation-redis-4", "postcss-image-set-function", "node-preload", "micromark-extension-mdx-expression", "flow-parser", "@sigstore/protobuf-specs", "@types/mocha", "bs58", "@datadog/pprof", "@octokit/oauth-app", "@opentelemetry/instrumentation-winston", "package-hash", "openapi-types", "workbox-sw", "@react-native/babel-preset", "stack-generator", "spawn-wrap", "@types/sinon", "goober", "process-on-spawn", "stream-combiner", "@azure/core-lro", "@oxc-resolver/binding-linux-x64-gnu", "requireindex", "postcss-double-position-gradients", "cli-highlight", "babel-core", "@vueuse/core", "@mdx-js/mdx", "kolorist", "memorystream", "has-yarn", "systeminformation", "seq-queue", "hachure-fill", "micromark-extension-mdxjs", "@storybook/global", "@types/react-reconciler", "cpu-features", "@mermaid-js/parser", "@module-federation/error-codes", "@tanstack/react-query-devtools", "ajv-errors", "p-reduce", "@turf/meta", "micromark-extension-mdx-md", "@nx/nx-linux-x64-gnu", "@csstools/postcss-progressive-custom-properties", "release-zalgo", "@mui/icons-material", "postcss-page-break", "@nestjs/testing", "mem", "@aws-sdk/client-sso-oidc", "remeda", "@babel/plugin-proposal-logical-assignment-operators", "bun-types", "@google-cloud/firestore", "fast-json-patch", "common-ancestor-path", "async-lock", "style-mod", "@opentelemetry/instrumentation-bunyan", "forwarded-parse", "codemirror", "atomically", "array-find-index", "@storybook/channels", "@radix-ui/react-accessible-icon", "vue-demi", "eslint-plugin-n", "vue-eslint-parser", "map-or-similar", "varint", "stream-chain", "formatly", "duplexer3", "@graphql-tools/github-loader", "@types/prismjs", "cytoscape-cose-bilkent", "micromark-util-events-to-acorn", "tdigest", "@opentelemetry/instrumentation-fastify", "stream-json", "canvas", "colorspace", "tiny-emitter", "better-sqlite3", "khroma", "app-root-path", "memoizerific", "@react-native/community-cli-plugin", "@types/google.maps", "pause", "@graphql-tools/graphql-file-loader", "readable-web-to-node-stream", "ts-invariant", "buffer-alloc-unsafe", "http-assert", "@scure/base", "@rollup/rollup-linux-arm64-musl", "css-in-js-utils", "piscina", "@typescript/native-preview", "@storybook/manager-api", "convert-hrtime", "p-filter", "bintrees", "@graphql-tools/import", "gl-matrix", "@graphql-tools/executor-legacy-ws", "@opentelemetry/instrumentation-pino", "@ai-sdk/openai", "webpack-hot-middleware", "radix-ui", "jsc-safe-url", "lunr", "koa-compose", "@whatwg-node/promise-helpers", "node-html-parser", "@wry/equality", "cytoscape-fcose", "browserify-des", "@edsdk/n1ed-react", "@cucumber/messages", "@types/dompurify", "@dnd-kit/modifiers", "@electric-sql/pglite", "os-locale", "seek-bzip", "react-syntax-highlighter", "conventional-commits-filter", "@vueuse/shared", "@react-native/codegen", "@angular-devkit/architect", "@types/tmp", "postcss-focus-within", "openapi3-ts", "@sentry/nextjs", "bundle-require", "smob", "@redocly/ajv", "blob-util", "css-has-pseudo", "@octokit/auth-oauth-app", "@google-cloud/common", "monaco-editor", "is-yarn-global", "@opentelemetry/resource-detector-gcp", "prom-client", "@fastify/error", "oxlint", "file-saver", "bin-links", "v8flags", "@radix-ui/react-switch", "read", "load-esm", "eslint-plugin-promise", "firebase-admin", "@jsonjoy.com/fs-node-builtins", "columnify", "@types/whatwg-mimetype", "check-more-types", "@babel/plugin-proposal-optional-catch-binding", "bufferutil", "@sentry/browser", "@types/lodash-es", "@vitejs/plugin-vue", "nano-spawn", "buffer-alloc", "@babel/preset-flow", "@octokit/webhooks", "drizzle-kit", "@algolia/requester-node-http", "passport-strategy", "@algolia/client-search", "@playwright/test", "roughjs", "@iconify/utils", "@types/argparse", "@babel/plugin-syntax-export-default-from", "@codemirror/commands", "@radix-ui/react-form", "@surma/rollup-plugin-off-main-thread", "@react-native/virtualized-lists", "@jsonjoy.com/fs-node", "recursive-readdir", "grapheme-splitter", "unquote", "@pnpm/npm-conf", "@expo/image-utils", "@cypress/xvfb", "@opentelemetry/instrumentation-socket.io", "sanitize-filename", "fast-text-encoding", "buffer-fill", "@joshwooding/vite-plugin-react-docgen-typescript", "@rollup/plugin-terser", "bootstrap", "@csstools/postcss-is-pseudo-class", "recharts-scale", "find-replace", "@storybook/builder-vite", "@rollup/rollup-win32-x64-msvc", "http-server", "string-env-interpolation", "@types/qrcode", "map-stream", "points-on-curve", "@algolia/client-common", "google-p12-pem", "@babel/plugin-proposal-unicode-property-regex", "@aws-sdk/eventstream-handler-node", "@esbuild/openharmony-arm64", "@envelop/core", "@tanstack/virtual-core", "@rollup/rollup-darwin-arm64", "@csstools/postcss-cascade-layers", "svix", "unfetch", "utf-8-validate", "@algolia/requester-browser-xhr", "postcss-values-parser", "@csstools/postcss-normalize-display-values", "simple-plist", "@next/swc-linux-x64-musl", "@scure/bip39", "time-span", "@turf/invariant", "mdast-util-mdx", "randomfill", "@firebase/data-connect", "@csstools/postcss-hwb-function", "protocols", "@storybook/addon-actions", "@dotenvx/dotenvx", "@tiptap/extension-hard-break", "term-size", "gray-matter", "remove-accents", "@csstools/postcss-font-format-keywords", "query-selector-shadow-dom", "@actions/github", "@csstools/postcss-color-function", "esm", "value-equal", "@fastify/fast-json-stringify-compiler", "@internationalized/date", "@rushstack/ts-command-line", "ospath", "@vueuse/metadata", "async-sema", "@tiptap/extension-floating-menu", "@types/history", "eslint-plugin-unicorn", "vue-router", "@jsonjoy.com/fs-snapshot", "truncate-utf8-bytes", "ent", "hast-util-to-estree", "postcss-opacity-percentage", "@vercel/nft", "@changesets/types", "just-extend", "@types/katex", "@algolia/client-analytics", "qrcode-terminal", "protocol-buffers-schema", "node-dir", "caller-callsite", "coa", "@acemir/cssom", "@nestjs/config", "@types/mime-types", "@opentelemetry/instrumentation-restify", "@pnpm/types", "@standard-schema/utils", "react-draggable", "nock", "use-debounce", "@typescript/native-preview-linux-x64", "corser", "@npmcli/move-file", "named-placeholders", "command-line-args", "conventional-changelog-writer", "@prisma/client", "@eslint/compat", "use-composed-ref", "@sentry-internal/tracing", "is-finite", "strip-bom-string", "parse-srcset", "idb-keyval", "@graphql-codegen/typescript", "@tiptap/extension-placeholder", "@sec-ant/readable-stream", "ts-log", "@so-ric/colorspace", "estree-util-to-js", "lazy-ass", "@peculiar/asn1-schema", "utf8-byte-length", "read-package-up", "kysely", "@opentelemetry/instrumentation-cassandra-driver", "read-package-json", "rehype-parse", "@types/d3-quadtree", "lit-html", "@mongodb-js/saslprep", "png-js", "@wry/context", "table-layout", "@opentelemetry/instrumentation-memcached", "@rushstack/terminal", "@csstools/postcss-trigonometric-functions", "discontinuous-range", "clean-regexp", "postcss-clamp", "expo-constants", "rehype-stringify", "@cacheable/utils", "@opentelemetry/resource-detector-container", "@graphql-tools/git-loader", "@algolia/client-personalization", "parse-path", "pretty-hrtime", "base-64", "@next/eslint-plugin-next", "event-stream", "react-window", "hashery", "pause-stream", "@stoplight/types", "use-latest", "command-line-usage", "babel-plugin-transform-flow-enums", "@juggle/resize-observer", "urijs", "markdown-extensions", "@aws-sdk/middleware-websocket", "@tiptap/extension-text", "rollup-plugin-visualizer", "@csstools/postcss-nested-calc", "@opentelemetry/instrumentation-net", "invert-kv", "@expo/cli", "sort-keys-length", "cacheable", "lodash.upperfirst", "universal-github-app-jwt", "lit", "@jsonjoy.com/fs-print", "@csstools/postcss-oklab-function", "rsvp", "@sentry/vercel-edge", "@storybook/icons", "ncp", "tsup", "wordwrapjs", "@swc/jest", "@mapbox/unitbezier", "@types/three", "@react-stately/flags", "es6-promisify", "qified", "@react-spring/shared", "pbf", "lcid", "@opentelemetry/resource-detector-aws", "base64url", "@nuxt/opencollective", "railroad-diagrams", "@react-spring/types", "@expo/package-manager", "colorjs.io", "@react-spring/core", "octokit", "@turbo/linux-64", "mini-svg-data-uri", "@expo/osascript", "path-dirname", "workbox-precaching", "mongodb-connection-string-url", "@expo/metro-config", "yoga-layout", "resolve-protobuf-schema", "ext-list", "stubborn-fs", "byline", "de-indent", "preact-render-to-string", "radix3", "nearley", "@anthropic-ai/claude-agent-sdk", "@cucumber/gherkin", "emojilib", "@nestjs/cli", "estree-util-attach-comments", "jsonschema", "stacktrace-js", "@radix-ui/react-one-time-password-field", "stacktrace-gps", "react-popper", "expo-modules-core", "stylelint-config-standard", "@rspack/binding", "@types/memcached", "rgbcolor", "secure-compare", "@azure/core-xml", "@storybook/addon-viewport", "lottie-web", "@aws-sdk/middleware-eventstream", "@types/web-bluetooth", "node-notifier", "@storybook/addon-controls", "ky", "libmime", "@es-joy/jsdoccomment", "@csstools/postcss-ic-unit", "url-loader", "@opentelemetry/instrumentation-router", "ansicolors", "babel-plugin-dynamic-import-node", "ext-name", "@algolia/recommend", "map-age-cleaner", "parse-url", "@nestjs/swagger", "@mapbox/vector-tile", "@csstools/postcss-text-decoration-shorthand", "react-native-safe-area-context", "tippy.js", "@urql/core", "is-path-in-cwd", "jasmine-core", "@gar/promise-retry", "union", "@babel/plugin-proposal-json-strings", "@xyflow/system", "when-exit", "regexp-tree", "serve-handler", "@contenthook/node", "uniq", "merge-options", "@opentelemetry/instrumentation-aws-lambda", "cron", "node-mock-http", "expo-modules-autolinking", "@react-spring/animated", "@expo/spawn-async", "@types/raf", "@vitest/browser", "git-up", "@volar/typescript", "@storybook/builder-webpack5", "string.prototype.padend", "propagate", "estree-util-build-jsx", "@azure/core-http-compat", "from", "is-ssh", "@angular/core", "contenthook", "hast-util-to-jsx-runtime", "foreach", "lodash.isobject", "postcss-overflow-shorthand", "oxc-resolver", "@oclif/core", "babel-plugin-syntax-trailing-function-commas", "lodash.uniqby", "@jsonjoy.com/fs-node-to-fsa", "expo-font", "section-matter", "@csstools/postcss-unset-value", "lru-queue", "@types/inquirer", "bullmq", "@aws-sdk/middleware-signing", "@graphql-codegen/schema-ast", "@types/through", "browser-assert", "@electron/get", "unicode-emoji-modifier-base", "@types/cookie-parser", "@stripe/react-stripe-js", "@contenthook/browser", "@react-spring/rafz", "mathml-tag-names", "@pnpm/exe", "to-readable-stream", "@types/supercluster", "obliterator", "opentracing", "@react-native/js-polyfills", "@types/hammerjs", "@shikijs/vscode-textmate", "@microsoft/tsdoc-config", "nested-error-stacks", "array-slice", "memoizee", "skin-tone", "@react-native/assets-registry", "@jsonjoy.com/fs-fsa", "postcss-flexbugs-fixes", "css-select-base-adapter", "@storybook/blocks", "rc-util", "@csstools/postcss-stepped-value-functions", "git-url-parse", "@open-draft/deferred-promise", "@babel/plugin-proposal-dynamic-import", "@aws-sdk/util-dynamodb", "@tweenjs/tween.js", "lit-element", "tarn", "metro-resolver", "find-file-up", "@types/webpack", "@types/react-router-dom", "listenercount", "metro-core", "@graphql-codegen/typescript-operations", "dotenv-cli", "algoliasearch", "@sentry/integrations", "js-md4", "meshoptimizer", "@radix-ui/react-use-is-hydrated", "p-each-series", "geojson-vt", "@types/sanitize-html", "@types/react-router", "@redocly/openapi-core", "timers-ext", "check-types", "@jest/environment-jsdom-abstract", "langsmith", "@napi-rs/canvas-linux-x64-musl", "which-pm-runs", "@storybook/react-vite", "find-pkg", "stylelint-scss", "@babel/plugin-proposal-export-namespace-from", "@vue/devtools-kit", "marked-terminal", "@aws-sdk/client-dynamodb", "murmurhash-js", "@oxlint/binding-linux-x64-gnu", "react-test-renderer", "@storybook/addon-highlight", "@graphql-codegen/add", "static-eval", "@opentelemetry/instrumentation-dns", "@hapi/bourne", "promise-polyfill", "relay-runtime", "babel-plugin-react-compiler", "stoppable", "@azure-rest/core-client", "hast-util-sanitize", "@storybook/addon-backgrounds", "@vue/devtools-shared", "pdf-lib", "outdent", "inflection", "@sentry/bundler-plugin-core", "fast-json-parse", "@peculiar/asn1-cms", "@react-navigation/elements", "js-tiktoken", "object.hasown", "@react-native/gradle-plugin", "@firebase/auth", "babel-plugin-transform-react-remove-prop-types", "jsonc-eslint-parser", "json-stringify-pretty-compact", "@sinonjs/text-encoding", "@fastify/proxy-addr", "flush-write-stream", "@csstools/selector-resolve-nested", "fp-ts", "@opencode-ai/sdk", "please-upgrade-node", "@storybook/addon-toolbars", "@storybook/addon-essentials", "is-primitive", "@storybook/addon-measure", "@pnpm/linux-x64", "semver-truncate", "qrcode.react", "i18next-browser-languagedetector", "iterall", "spawn-command", "babel-preset-expo", "lmdb", "@oxc-parser/binding-linux-x64-musl", "default-require-extensions", "@graphql-codegen/core", "mpath", "@storybook/types", "ts-pattern", "@angular/common", "sift", "@octokit/webhooks-methods", "is-root", "hast-util-to-string", "@lit/reactive-element", "osenv", "lib0", "raf-schd", "@aws-sdk/client-ssm", "eslint-plugin-vue", "react-native", "prettier-plugin-tailwindcss", "repeating", "expo-file-system", "@webgpu/types", "flatbuffers", "@types/stylis", "eslint-plugin-es", "tiny-case", "command-exists", "@img/sharp-linux-arm64", "wonka", "uid-safe", "@react-spring/web", "queue-tick", "esm-env", "abitype", "@storybook/react-dom-shim", "babel-plugin-react-native-web", "strip-outer", "node-machine-id", "@tailwindcss/typography", "trim-repeated", "@opentelemetry/resource-detector-azure", "yocto-spinner", "superstruct", "into-stream", "@npmcli/arborist", "mquery", "ts-essentials", "detective-postcss", "@hapi/boom", "@babel/regjsgen", "@storybook/core", "@base44/sdk", "@rushstack/rig-package", "pdf-parse", "expo-keep-awake", "react-native-screens", "react-error-overlay", "@types/testing-library__jest-dom", "@xyflow/react", "@apollo/client", "@tiptap/extension-image", "@react-native/babel-plugin-codegen", "shellwords", "@opentelemetry/instrumentation-cucumber", "signedsource", "@cfworker/json-schema", "string-hash", "xdg-app-paths", "leaflet", "sass-embedded", "parse-conflict-json", "@types/webxr", "safe-json-stringify", "direction", "@tiptap/core", "@react-navigation/routers", "hash-sum", "@types/archiver", "lightningcss-linux-arm64-gnu", "vaul", "request-promise-core", "neotraverse", "gonzales-pe", "@types/react-redux", "@opentelemetry/resource-detector-alibaba-cloud", "@aws-sdk/dynamodb-codec", "just-diff", "@types/koa", "javascript-natural-sort", "redeyed", "@opentelemetry/auto-instrumentations-node", "@aws-sdk/client-bedrock-runtime", "detective-stylus", "@firebase/app-compat", "@storybook/core-webpack", "@cacheable/memory", "@datadog/browser-rum-core", "@graphql-hive/signal", "@vitejs/plugin-basic-ssl", "stream-to-array", "fined", "are-docs-informative", "@storybook/addon-outline", "unplugin-utils", "bcrypt", "ast-module-types", "@rollup/rollup-darwin-x64", "@babel/helper-get-function-arity", "@apidevtools/swagger-parser", "@nuxt/kit", "turbo-linux-64", "browser-resolve", "xss", "postcss-initial", "google-protobuf", "swc-loader", "oauth", "@types/stats.js", "@react-native-async-storage/async-storage", "getos", "rehype-sanitize", "webpack-subresource-integrity", "react-dev-utils", "change-case-all", "rollup-pluginutils", "eslint-plugin-simple-import-sort", "xxhash-wasm", "vite-plugin-svgr", "should", "@emotion/stylis", "@lmdb/lmdb-linux-x64", "@algolia/requester-fetch", "@graphql-codegen/cli", "should-equal", "framer-motion", "stat-mode", "clone-stats", "@storybook/instrumenter", "klaw", "@mui/x-date-pickers", "tlds", "@redis/graph", "@aws-crypto/ie11-detection", "popper.js", "defined", "esbuild-wasm", "@codemirror/lint", "https", "fontfaceobserver", "esast-util-from-estree", "ast-kit", "mdast-util-math", "react-freeze", "npm-run-all", "state-local", "@nx/nx-linux-x64-musl", "path", "@react-navigation/native", "should-format", "@types/offscreencanvas", "@contenthook/cli", "front-matter", "tiny-inflate", "opn", "@algolia/client-query-suggestions", "@wry/trie", "fetch-retry", "micromark-extension-frontmatter", "zone.js", "@stylistic/eslint-plugin", "fs-readdir-recursive", "prosemirror-inputrules", "react-aria", "flagged-respawn", "uvu", "normalize-svg-path", "random-bytes", "buffer-equal", "react-dnd-html5-backend", "@nx/js", "@posthog/types", "string-natural-compare", "@opencode-ai/plugin", "detective-typescript", "firebase", "treeverse", "amdefine", "zen-observable", "growly", "@types/accepts", "@module-federation/runtime", "postcss-media-minmax", "babel-preset-fbjs", "@microsoft/api-extractor-model", "posthog-node", "@types/papaparse", "find-my-way-ts", "@napi-rs/nice", "extract-files", "tmp-promise", "markdown-to-jsx", "recma-build-jsx", "@jimp/utils", "@cloudflare/workers-types", "@firebase/performance", "wait-port", "lodash.isempty", "hast-util-from-dom", "@microsoft/api-extractor", "@expo/env", "num2fraction", "node-source-walk", "react-datepicker", "cardinal", "screenfull", "remove-trailing-spaces", "detective-es6", "@graphql-tools/documents", "precinct", "@keyv/bigmap", "focus-trap", "@expo/fingerprint", "@react-navigation/native-stack", "react-intersection-observer", "@storybook/csf-plugin", "@nestjs/axios", "dockerode", "conf", "platform", "@expo/xcpretty", "@rollup/rollup-win32-x64-gnu", "module-definition", "array-each", "currently-unhandled", "memory-pager", "xstate", "@storybook/addon-links", "mammoth", "easy-table", "bfj", "@azure/storage-blob", "cssfilter", "exec-sh", "@xstate/fsm", "openapi-fetch", "node-libs-browser", "@firebase/ai", "react-colorful", "@ant-design/colors", "unicode-trie", "@axe-core/playwright", "@firebase/functions", "@firebase/analytics", "prosemirror-keymap", "detective-sass", "openapi-typescript-helpers", "@jsonjoy.com/fs-core", "eslint-webpack-plugin", "@firebase/messaging", "react-native-gesture-handler", "@angular/compiler", "@ai-sdk/google", "to-arraybuffer", "loud-rejection", "endent", "eslint-plugin-flowtype", "@storybook/react-docgen-typescript-plugin", "@rollup/rollup-win32-arm64-msvc", "object.defaults", "twilio", "@storybook/node-logger", "@egjs/hammerjs", "parse5-sax-parser", "@types/jsonfile", "quill-delta", "fs-write-stream-atomic", "parse-cache-control", "@octokit/openapi-webhooks-types", "@react-navigation/bottom-tabs", "eslint-plugin-es-x", "opencollective-postinstall", "rehype-recma", "@emotion/css", "parallel-transform", "sorted-array-functions", "ox", "just-diff-apply", "lightningcss-darwin-arm64", "ordered-binary", "react-native-svg", "babylon", "detect-port-alt", "stripe", "react-use-measure", "shadcn", "babel-code-frame", "telejson", "oidc-token-hash", "@firebase/component", "cli-table", "toad-cache", "micromark-extension-directive", "get-amd-module-type", "@expo/code-signing-certificates", "@algolia/ingestion", "acorn-loose", "@monaco-editor/react", "@algolia/monitoring", "node-stream-zip", "@opentelemetry/sdk-node", "webpack-manifest-plugin", "should-util", "rbush", "is-in-ci", "@firebase/webchannel-wrapper", "timed-out", "@storybook/addon-interactions", "swagger2openapi", "detective-scss", "remark-math", "lodash.template", "pidusage", "jotai", "@graphql-codegen/typed-document-node", "parse5-html-rewriting-stream", "drizzle-orm", "is-function", "json-stringify-nice", "react-number-format", "hast-util-from-html-isomorphic", "css", "node-cache", "rehype-katex", "reftools", "recma-jsx", "@firebase/auth-types", "scule", "@apm-js-collab/tracing-hooks", "@octokit/app", "react-helmet-async", "diff-match-patch", "detective-amd", "@opentelemetry/exporter-logs-otlp-proto", "@npmcli/redact", "@tiptap/extension-text-style", "@amplitude/analytics-core", "@storybook/test", "stealthy-require", "@img/sharp-linuxmusl-arm64", "@jsonjoy.com/fs-node-utils", "@firebase/app-check", "promise-call-limit", "@angular-devkit/schematics-cli", "@img/sharp-libvips-linuxmusl-arm64", "@preact/signals-core", "@firebase/functions-types", "lodash.templatesettings", "libqp", "omggif", "@aws-sdk/lib-dynamodb", "docker-modem", "@types/keygrip", "@unrs/resolver-binding-linux-arm64-gnu", "unist-util-generated", "@types/content-disposition", "typedoc", "@firebase/auth-compat", "lightningcss-linux-arm64-musl", "js-sha3", "react-stately", "@firebase/functions-compat", "cyclist", "@opentelemetry/exporter-logs-otlp-grpc", "mississippi", "@wdio/logger", "is-stream-ended", "@googlemaps/js-api-loader", "properties-reader", "@sqltools/formatter", "@module-federation/dts-plugin", "liftoff", "clipanion", "@tiptap/extension-list-keymap", "string-convert", "react-pdf", "turndown", "babel-plugin-styled-components", "@swc/core-linux-arm64-gnu", "node-readfiles", "@langchain/core", "@module-federation/managers", "pkijs", "@use-gesture/react", "typed-assert", "@chromatic-com/storybook", "scuid", "eslint-config-react-app", "@firebase/firestore-types", "pino-http", "@module-federation/enhanced", "@jimp/core", "@aws-sdk/endpoint-cache", "indexes-of", "@octokit/webhooks-types", "@nx/workspace", "@electric-sql/pglite-tools", "lru_map", "@algolia/client-abtesting", "third-party-web", "backo2", "@nrwl/devkit", "should-type", "@jimp/types", "json-with-bigint", "@phenomnomnominal/tsquery", "remark", "meros", "oas-validator", "@img/sharp-darwin-arm64", "bytestreamjs", "@rollup/rollup-android-arm64", "@graphql-codegen/gql-tag-operations", "@firebase/messaging-interop-types", "@expo/sdk-runtime-versions", "generic-names", "@urql/exchange-retry", "@rspack/binding-linux-x64-gnu", "@angular/platform-browser", "lightningcss-win32-x64-msvc", "@oxfmt/binding-linux-x64-gnu", "@rollup/rollup-freebsd-x64", "should-type-adaptors", "update-check", "@storybook/router", "mv", "raw-loader", "@babel/cli", "promise-all-reject-late", "recma-parse", "@vue/compiler-vue2", "@wdio/types", "@tiptap/extension-dropcursor", "mongoose", "is-object", "@algolia/client-insights", "fuzzysort", "docker-compose", "json2mq", "utrie", "@datadog/native-metrics", "ethereum-cryptography", "@rollup/rollup-linux-arm-gnueabihf", "@react-aria/i18n", "locate-character", "oas-resolver", "postcss-scss", "emitter-listener", "oas-linter", "@rollup/rollup-android-arm-eabi", "@module-federation/bridge-react-webpack-plugin", "sass-embedded-linux-x64", "pony-cause", "stream-each", "@opentelemetry/instrumentation-runtime-node", "detective-cjs", "isomorphic-dompurify", "whatwg-url-without-unicode", "@heroicons/react", "valid-url", "eslint-plugin-playwright", "convert-to-spaces", "topojson-client", "weak-lru-cache", "@napi-rs/nice-linux-x64-musl", "@use-gesture/core", "lodash._reinterpolate", "eslint-plugin-cypress", "oas-kit-common", "@firebase/app-check-types", "libbase64", "sane", "formik", "@rollup/rollup-linux-arm-musleabihf", "babel-preset-react-app", "exceljs", "@angular/compiler-cli", "@types/bcryptjs", "@types/readdir-glob", "@rollup/rollup-linux-s390x-gnu", "pptxgenjs", "corepack", "resolve-pathname", "@angular/forms", "mobx-react-lite", "postcss-env-function", "@types/dockerode", "@tokenizer/inflate", "capture-exit", "@module-federation/rspack", "@algolia/abtesting", "@jimp/plugin-resize", "stack-chain", "getopts", "@module-federation/manifest", "estree-util-scope", "@types/which", "@maplibre/maplibre-gl-style-spec", "@npmcli/name-from-folder", "vue-tsc", "@ai-sdk/anthropic", "@types/koa-compose", "@firebase/remote-config", "@babel/helper-explode-assignable-expression", "usehooks-ts", "find-babel-config", "hoopy", "babel-plugin-module-resolver", "@angular/router", "rollup-plugin-terser", "oas-schema-walker", "recma-stringify", "@types/oracledb", "@headlessui/react", "longest", "ylru", "tryer", "encoding-japanese", "@types/css-font-loading-module", "fuzzy", "@rollup/rollup-win32-ia32-msvc", "uri-js-replace", "humanize-duration", "@types/http-assert", "eslint-plugin-import-x", "js-sdsl", "@react-types/button", "json-to-pretty-yaml", "@radix-ui/react-icons", "@types/passport", "mobx", "@module-federation/data-prefetch", "@swc/cli", "@storybook/preset-react-webpack", "web-worker", "vue-component-type-helpers", "deep-object-diff", "@listr2/prompt-adapter-inquirer", "swagger-ui-express", "peberminta", "graphlib", "@datadog/datadog-ci", "@mui/x-internals", "@astrojs/compiler", "@npmcli/metavuln-calculator", "@types/pluralize", "window-size", "@parcel/watcher-linux-arm64-glibc", "abs-svg-path", "testcontainers", "debounce-fn", "make-iterator", "@agentclientprotocol/sdk", "node-schedule", "@apidevtools/openapi-schemas", "hast-util-has-property", "@graphql-tools/url-loader", "@npmcli/query", "callsite", "@types/tapable", "openapi-typescript", "@graphql-codegen/client-preset", "is-url-superb", "dijkstrajs", "@firebase/remote-config-types", "@mui/base", "node-cron", "@sendgrid/mail", "dom-walk", "@sendgrid/client", "discord-api-types", "@module-federation/third-party-dts-extractor", "@peculiar/asn1-pkcs9", "vscode-jsonrpc", "@types/validate-npm-package-name", "@one-ini/wasm", "@img/sharp-win32-x64", "@sendgrid/helpers", "textextensions", "@datadog/native-iast-taint-tracking", "@nuxtjs/opencollective", "its-fine", "parchment", "split-ca", "is-natural-number", "@octokit/oauth-methods", "nanostores", "lodash.ismatch", "ink", "typanion", "write", "figgy-pudding", "@rollup/rollup-linux-riscv64-gnu", "parse-imports-exports", "postcss-modules", "@zip.js/zip.js", "knip", "@datadog/native-appsec", "rtl-css-js", "@types/react-syntax-highlighter", "json-pointer", "objectorarray", "babel-types", "stacktrace-parser", "@react-pdf/fns", "@ant-design/icons", "@firebase/performance-types", "d3-sankey", "code-excerpt", "patch-console", "import-cwd", "ultrahtml", "iferr", "onnxruntime-common", "shallow-equal", "@firebase/remote-config-compat", "db0", "@react-dnd/invariant", "@pinojs/redact", "@apollo/utils.keyvaluecache", "expo-status-bar", "@react-pdf/font", "@types/crypto-js", "crc", "private", "@unrs/resolver-binding-linux-arm64-musl", "gitconfiglocal", "worker-farm", "@module-federation/inject-external-runtime-core-plugin", "object.map", "@tailwindcss/forms", "expo-server", "@schematics/angular", "requirejs", "p-throttle", "@whatwg-node/events", "@fastify/cors", "styleq", "react-toastify", "binaryextensions", "@types/xml2js", "@datadog/wasm-js-rewriter", "@envelop/instrumentation", "@types/compression", "@turf/bbox", "has-own-prop", "css-selector-parser", "@manypkg/get-packages", "@rspack/lite-tapable", "os-name", "timeout-signal", "@electron/notarize", "better-path-resolve", "serve", "@expo/require-utils", "@ngtools/webpack", "cose-base", "@azure/core-auth", "async-exit-hook", "@anthropic-ai/claude-agent-sdk-linux-x64", "git-semver-tags", "@storybook/core-common", "@oxc-resolver/binding-linux-x64-musl", "quote-unquote", "@flmngr/flmngr-server-node-express", "@lezer/javascript", "any-base", "@vercel/blob", "@biomejs/cli-linux-x64-musl", "@types/urijs", "@react-dnd/asap", "@semantic-release/error", "@react-native/debugger-shell", "aws-cdk", "@peculiar/webcrypto", "move-concurrently", "focus-lock", "workbox-webpack-plugin", "@codemirror/theme-one-dark", "@babel/plugin-proposal-class-static-block", "junk", "is-subdir", "walkdir", "quill", "js2xmlparser", "babel-eslint", "@swc-node/register", "react-hot-toast", "@types/mute-stream", "@bundled-es-modules/cookie", "@angular/platform-browser-dynamic", "@rollup/rollup-freebsd-arm64", "pkg-conf", "tcp-port-used", "tiny-async-pool", "async-hook-jl", "@angular/build", "@react-dnd/shallowequal", "is2", "@rollup/plugin-inject", "@react-stately/overlays", "string-template", "run-queue", "modify-values", "@bundled-es-modules/statuses", "decompress-targz", "decompress-tarbz2", "@unrs/resolver-binding-darwin-arm64", "expo-linking", "conventional-changelog-core", "bunyan", "decompress-tar", "unimport", "rfc4648", "react-app-polyfill", "dnd-core", "@datadog/browser-core", "express-session", "@nx/eslint", "@swc-node/sourcemap-support", "@lukeed/uuid", "@types/webpack-sources", "remark-frontmatter", "sumchecker", "pg-numeric", "@whatwg-node/disposablestack", "@types/parse5", "wrangler", "fancy-log", "html-react-parser", "dagre-d3-es", "pinia", "cache-manager", "@storybook/core-server", "@tiptap/suggestion", "@edge-runtime/primitives", "@unrs/resolver-binding-win32-x64-msvc", "@apm-js-collab/code-transformer", "xmlcreate", "html-dom-parser", "optimism", "dependency-tree", "module-lookup-amd", "copy-concurrently", "oxc-transform", "conventional-changelog-preset-loader", "@manypkg/find-root", "uncontrollable", "@aws-sdk/client-cloudwatch-logs", "bmp-js", "debuglog", "@storybook/csf-tools", "@vercel/analytics", "c8", "jsonpath", "babel-plugin-syntax-jsx", "request-promise-native", "react-helmet", "stream-combiner2", "html-to-image", "@webassemblyjs/helper-code-frame", "@webassemblyjs/helper-fsm", "regexp-to-ast", "@react-aria/toolbar", "parse-png", "babel-plugin-transform-typescript-metadata", "react-native-web", "@scure/bip32", "parse-statements", "resolve-dependency-path", "fast-url-parser", "@fortawesome/fontawesome-common-types", "@firebase/database", "rc-slider", "csscolorparser", "ts-declaration-location", "@types/har-format", "postcss-browser-comments", "custom-event", "next-intl", "@prisma/query-plan-executor", "@electron/asar", "z-schema", "@react-types/overlays", "readline-sync", "match-sorter", "dns-equal", "@expo/schema-utils", "@vue/test-utils", "@react-aria/overlays", "@types/webpack-env", "glob-stream", "eslint-config-airbnb", "@react-aria/label", "@types/pbf", "passport-jwt", "plugin-error", "zimmerframe", "@types/jquery", "resolve-workspace-root", "@metamask/utils", "windows-release", "exif-parser", "decompress-unzip", "uid2", "lodash.keys", "super-regex", "filing-cabinet", "pdfkit", "hyperlinker", "@codemirror/language", "@intlify/shared", "@vercel/build-utils", "d3-scale-chromatic", "@simple-git/args-pathspec", "@lezer/css", "js-sha256", "merge", "@webassemblyjs/helper-module-context", "ps-tree", "@react-native-community/cli-tools", "only", "downshift", "react-resizable", "@dual-bundle/import-meta-resolve", "@simple-git/argv-parser", "@js-joda/core", "store2", "react-dnd", "aes-js", "parse-svg-path", "koa-convert", "@wdio/utils", "@react-pdf/layout", "@lit-labs/ssr-dom-shim", "license-webpack-plugin", "@noble/ciphers", "vite-plugin-dts", "@types/passport-strategy", "@react-pdf/render", "app-module-path", "@types/bcrypt", "@walletconnect/utils", "cls-hooked", "cli-color", "find-process", "strong-log-transformer", "decompress", "@angular-devkit/build-angular", "@jimp/plugin-rotate", "javascript-stringify", "@types/canvas-confetti", "rehype", "@jimp/plugin-mask", "@playwright/mcp", "remedial", "@types/emscripten", "@tiptap/extensions", "@prisma/driver-adapter-utils", "constantinople", "function-timeout", "@jimp/plugin-color", "@edge-runtime/vm", "@rollup/rollup-linux-riscv64-musl", "swiper", "sass-embedded-linux-musl-x64", "postcss-normalize", "@angular-devkit/build-webpack", "@csstools/normalize.css", "loglevel-plugin-prefix", "@zeit/schemas", "optimist", "@react-stately/collections", "@aws-sdk/signature-v4", "web-push", "add-stream", "@types/ramda", "sanitize.css", "expo-splash-screen", "babel-plugin-named-asset-import", "bplist-creator", "vinyl-fs", "@jimp/plugin-displace", "xregexp", "@swc/core-linux-arm64-musl", "@solana/codecs-numbers", "lighthouse-stack-packs", "@jimp/plugin-blur", "@cnakazawa/watch", "hyphen", "sass-lookup", "growl", "proggy", "@csstools/postcss-relative-color-syntax", "walk-sync", "@expo/metro-runtime", "react-shallow-renderer", "stylus-lookup", "@redocly/config", "@jimp/plugin-print", "exenv", "@astrojs/internal-helpers", "hot-shots", "internal-ip", "@apollo/utils.usagereporting", "mdast-util-directive", "simple-wcswidth", "parse-latin", "check-disk-space", "@jimp/plugin-contain", "@types/wrap-ansi", "@sindresorhus/slugify", "dfa", "eta", "jstransformer", "console-table-printer", "get-pkg-repo", "react-clientside-effect", "eslint-plugin-node", "tsconfig", "human-id", "@formatjs/intl", "@wry/caches", "@hapi/tlds", "@prisma/client-runtime-utils", "http-link-header", "highlightjs-vue", "@react-pdf/types", "stylelint-config-recommended-scss", "treeify", "@nestjs/schedule", "react-chartjs-2", "@fastify/ajv-compiler", "@aws-sdk/client-kms", "@react-stately/tree", "@react-email/render", "@solana/codecs-core", "utf8", "lockfile", "@vitest/browser-playwright", "unist-util-visit-children", "typeorm", "es-aggregate-error", "@parcel/watcher-win32-x64", "js-md5", "react-property", "mapbox-gl", "grid-index", "@webassemblyjs/wast-parser", "@prisma/studio-core", "sortablejs", "@azure/storage-common", "@vercel/node", "@jimp/plugin-circle", "macos-release", "@react-stately/form", "react-focus-lock", "module-alias", "@types/ejs", "rc-motion", "with", "character-parser", "io-ts", "@oozcitak/util", "karma", "@oclif/plugin-help", "@nestjs/jwt", "lightningcss-darwin-x64", "@marijn/find-cluster-break", "@types/source-list-map", "readdir-scoped-modules", "html-minifier", "bin-version", "@types/cookies", "cache-content-type", "merge-source-map", "builder-util-runtime", "farmhash-modern", "unload", "pug-walk", "@img/sharp-darwin-x64", "@graphql-tools/prisma-loader", "@react-pdf/renderer", "@aws-sdk/protocol-http", "pug-runtime", "bs58check", "@lexical/utils", "unist-util-modify-children", "@nestjs/passport", "@google-cloud/precise-date", "@amplitude/analytics-types", "@react-pdf/textkit", "@csstools/cascade-layer-name-parser", "requirejs-config-file", "@conventional-changelog/git-client", "retext-stringify", "retext-latin", "js-string-escape", "react-use", "hls.js", "eyes", "@react-aria/form", "ethers", "better-auth", "nanoclone", "@react-types/grid", "csp_evaluator", "is-expression", "sync-child-process", "@types/diff", "use-memo-one", "react-native-worklets", "retext-smartypants", "@fastify/static", "pug-lexer", "@segment/analytics-core", "esrap", "@react-stately/tabs", "editions", "sort-object-keys", "@antfu/utils", "@lexical/html", "@tiptap/extension-text-align", "lodash.capitalize", "react-intl", "draco3d", "@walletconnect/sign-client", "@electric-sql/pglite-socket", "env-editor", "@csstools/utilities", "sponge-case", "nlcst-to-string", "@jimp/plugin-fisheye", "@csstools/postcss-color-mix-function", "lodash.mapvalues", "@types/uglify-js", "suspend-react", "@codemirror/state", "dom-serialize", "@module-federation/cli", "expo-web-browser", "@shikijs/transformers", "@react-stately/list", "@sentry/hub", "@internationalized/string", "echarts", "pug-parser", "detective", "git-remote-origin-url", "doctypes", "assert-never", "git-hooks-list", "@vercel/functions", "jsbi", "mailparser", "@expo/config", "fs-exists-sync", "@unrs/resolver-binding-darwin-x64", "robots-parser", "is-gzip", "trim-right", "bin-version-check", "@expo/devtools", "@types/mapbox__point-geometry", "proxy-compare", "@lexical/list", "@isaacs/string-locale-compare", "@react-types/combobox", "error", "is", "@better-auth/core", "react-virtualized-auto-sizer", "fast-memoize", "intersection-observer", "@react-stately/menu", "@lexical/table", "postgres-range", "@parcel/watcher-darwin-arm64", "nano-css", "@ljharb/through", "concat-with-sourcemaps", "image-q", "token-stream", "pug", "@internationalized/message", "mermaid", "esbuild-linux-64", "@angular-eslint/bundled-angular-compiler", "pug-linker", "@electron/osx-sign", "markdown-it-anchor", "@react-types/dialog", "pug-filters", "retry-as-promised", "unist-builder", "@react-types/menu", "clone-buffer", "@types/color-name", "babel-traverse", "@restart/hooks", "lolex", "native-duplexpair", "inspect-with-kind", "@pnpm/error", "@parcel/watcher-linux-arm64-musl", "@lexical/clipboard", "@better-auth/telemetry", "@react-aria/combobox", "@mapbox/whoots-js", "cloneable-readable", "pug-code-gen", "@react-types/datepicker", "parse-bmfont-xml", "warn-once", "@react-aria/dialog", "@lexical/history", "is-valid-glob", "@angular-eslint/eslint-plugin", "@mrleebo/prisma-ast", "css-mediaquery", "@prisma/dev", "@sindresorhus/transliterate", "@react-stately/selection", "vite-plugin-pwa", "@changesets/assemble-release-plan", "vue-i18n", "scslre", "@exodus/bytes", "expo", "@codemirror/autocomplete", "@changesets/parse", "@react-stately/table", "refa", "@types/conventional-commits-parser", "mark.js", "xml-parse-from-string", "react-virtuoso", "dir-compare", "hoek", "kareem", "nprogress", "@lexical/rich-text", "fake-indexeddb", "@react-stately/radio", "@react-aria/live-announcer", "@rushstack/problem-matcher", "@intlify/message-compiler", "@types/strip-json-comments", "unbash", "pug-error", "@react-aria/listbox", "jimp-compact", "@oozcitak/dom", "knex", "tlhunter-sorted-set", "@lexical/overflow", "@types/ua-parser-js", "@types/ssh2-streams", "@auth/core", "@changesets/get-release-plan", "@lexical/selection", "@changesets/cli", "@lexical/markdown", "@prisma/adapter-pg", "@xstate/react", "@react-email/tailwind", "rc-tooltip", "qjobs", "@react-types/radio", "create-next-app", "@react-aria/datepicker", "specificity", "@react-stately/datepicker", "@blazediff/core", "@react-pdf/primitives", "@aws-sdk/client-iam", "@react-aria/selection", "native-promise-only", "file-system-cache", "remark-smartypants", "@changesets/git", "trim-trailing-lines", "@csstools/postcss-logical-viewport-units", "@mistralai/mistralai", "@types/file-saver", "webcrypto-core", "async-listen", "@vue/babel-helper-vue-transform-on", "di", "@react-aria/visually-hidden", "@swc/core-darwin-arm64", "media-engine", "@storybook/addon-onboarding", "@react-email/components", "@csstools/postcss-logical-float-and-clear", "@supabase/node-fetch", "@lexical/link", "@react-email/html", "sequelize", "minipass-json-stream", "conventional-recommended-bump", "@img/sharp-wasm32", "@vue/babel-plugin-jsx", "@react-email/section", "rambda", "@types/strip-bom", "@vitest/eslint-plugin", "@changesets/get-dependents-graph", "@react-email/container", "@rollup/plugin-typescript", "@react-email/img", "@react-email/preview", "graphmatch", "expo-image", "object.omit", "sockjs-client", "pug-strip-comments", "@react-email/link", "sitemap", "@types/jasmine", "@tailwindcss/oxide-linux-arm64-gnu", "expand-range", "watchpack-chokidar2", "@apidevtools/swagger-methods", "redis-commands", "@react-email/heading", "@rollup/rollup-linux-ppc64-gnu", "indexof", "deep-diff", "@react-email/body", "expo-manifests", "wkx", "path-data-parser", "drange", "@react-email/row", "nunjucks", "splaytree", "underscore.string", "timsort", "@fortawesome/fontawesome-svg-core", "flatten", "is-observable", "babel-messages", "prosemirror-history", "@globalart/nestjs-logger", "@react-types/textfield", "now-and-later", "image-ssim", "pug-load", "@lexical/text", "@aws-sdk/service-error-classification", "resolve-global", "@cucumber/cucumber-expressions", "@types/filewriter", "@apollo/usage-reporting-protobuf", "java-properties", "@datadog/browser-logs", "@apollo/utils.sortast", "hexoid", "@img/sharp-linux-arm", "@types/cli-progress", "@react-stately/grid", "d3-voronoi", "webpack-log", "css-color-names", "kafkajs", "uqr", "karma-chrome-launcher", "cssfontparser", "@lexical/plain-text", "@msgpack/msgpack", "@types/readable-stream", "@types/command-line-args", "beasties", "@edge-runtime/format", "@shikijs/primitive", "@npmcli/map-workspaces", "babel-template", "regexp-ast-analysis", "teen_process", "rc-resize-observer", "@lexical/mark", "jspdf-autotable", "@aws-sdk/middleware-sdk-sts", "@expo/prebuild-config", "maath", "@google/generative-ai", "regexparam", "dottie", "@changesets/config", "@dagrejs/graphlib", "@turf/distance", "@react-types/tooltip", "@changesets/apply-release-plan", "gunzip-maybe", "pug-attrs", "eslint-plugin-eslint-comments", "lodash.escape", "@react-types/table", "is-deflate", "gsap", "@lexical/react", "@types/tinycolor2", "@react-types/switch", "@ai-sdk/openai-compatible", "@datadog/sketches-js", "@csstools/postcss-media-queries-aspect-ratio-number-values", "@intlify/core-base", "orderedmap", "react-hotkeys-hook", "load-script", "@aws-sdk/client-ses", "edge-runtime", "retext", "merge-refs", "karma-source-map-support", "js-library-detector", "@sveltejs/acorn-typescript", "@edge-runtime/ponyfill", "@react-types/listbox", "@react-types/select", "@edge-runtime/node-utils", "@react-types/slider", "@octokit/auth-unauthenticated", "yazl", "utif2", "mathjs", "@hapi/address", "@types/react-test-renderer", "acorn-node", "lodash.omit", "zrender", "@rspack/plugin-react-refresh", "@lexical/code", "datadog-metrics", "fastparse", "better-call", "pnp-webpack-plugin", "@react-aria/menu", "crypto-randomuuid", "@react-stately/numberfield", "webrtc-adapter", "@langchain/openai", "@lexical/offset", "@electron/universal", "@rollup/plugin-alias", "@react-types/link", "@react-types/breadcrumbs", "@react-native-community/cli-platform-android", "@rollup/rollup-openharmony-arm64", "tv4", "@hey-api/openapi-ts", "is-hotkey", "mobx-react", "typed-rest-client", "eslint-config-standard", "hast-util-heading-rank", "tsc-alias", "croner", "is-negated-glob", "@csstools/postcss-gradients-interpolation-method", "require-package-name", "@react-aria/link", "lead", "@globalart/nestcord", "browser-or-node", "unist-util-find-after", "stylus", "@csstools/postcss-media-minmax", "speedline-core", "@react-email/button", "@graphql-tools/apollo-engine-loader", "@octokit/plugin-retry", "isomorphic-unfetch", "@napi-rs/nice-linux-x64-gnu", "math-expression-evaluator", "reduce-css-calc", "xml-crypto", "@sentry/minimal", "react-modal", "@turf/clone", "@react-types/numberfield", "@xhmikosr/downloader", "signale", "@apollo/utils.printwithreducedwhitespace", "@rspack/binding-linux-x64-musl", "slide", "array-equal", "read-yaml-file", "@datadog/browser-rum", "@angular-eslint/utils", "rc-menu", "@changesets/pre", "hsl-to-rgb-for-reals", "three-mesh-bvh", "@changesets/read", "sort-package-json", "@react-aria/progress", "@types/better-sqlite3", "@react-aria/grid", "@csstools/postcss-logical-resize", "inline-style-prefixer", "ts-graphviz", "@aws-cdk/asset-node-proxy-agent-v6", "@parcel/watcher-darwin-x64", "@uiw/codemirror-extensions-basic-setup", "@cucumber/html-formatter", "@changesets/changelog-git", "@changesets/write", "bcp-47-match", "apache-arrow", "@aws-sdk/client-sns", "@nicolo-ribaudo/chokidar-2", "@datadog/datadog-ci-base", "@vue/babel-plugin-resolve-type", "@oxc-transform/binding-linux-x64-gnu", "@wdio/repl", "chevrotain-allstar", "react-scripts", "@google-cloud/bigquery", "micro", "@types/styled-components", "fzf", "@globalart/ddd", "@globalart/oxide", "@iarna/toml", "@react-native/metro-babel-transformer", "@apollo/utils.logger", "ts-deepmerge", "@react-types/progress", "babel-walk", "@changesets/errors", "@react-email/code-block", "webdriver", "vite-compatible-readable-stream", "@globalart/nestjs-swagger", "@types/filesystem", "user-home", "globule", "is-resolvable", "@img/sharp-win32-ia32", "@tiptap/extension-mention", "@prisma/engines", "@astrojs/telemetry", "@fortawesome/free-solid-svg-icons", "@types/adm-zip", "@aws-sdk/client-cognito-identity-provider", "@datadog/flagging-core", "@ant-design/icons-svg", "bech32", "@hapi/pinpoint", "@datadog/openfeature-node-server", "@datadog/datadog-ci-plugin-deployment", "@datadog/datadog-ci-plugin-dora", "@datadog/datadog-ci-plugin-gate", "@changesets/logger", "@ionic/utils-stream", "requizzle", "@react-stately/select", "nuqs", "abortcontroller-polyfill", "nocache", "@unrs/resolver-binding-win32-arm64-msvc", "@typescript/vfs", "@nestjs/typeorm", "jss", "react-grid-layout", "@sveltejs/vite-plugin-svelte", "lodash.map", "clone-regexp", "@vercel/python", "vue-template-compiler", "@supabase/ssr", "@react-leaflet/core", "@napi-rs/canvas-linux-x64-gnu", "@types/rimraf", "@trivago/prettier-plugin-sort-imports", "@img/sharp-linux-s390x", "@react-aria/toggle", "stream-to-promise", "errorhandler", "hermes-compiler", "catharsis", "@angular-eslint/eslint-plugin-template", "ts-pnp", "react-leaflet", "sudo-prompt", "tailwind-variants", "tw-animate-css", "flmngr", "@ethereumjs/rlp", "react-native-reanimated", "to-through", "@react-native-community/cli-server-api", "value-or-function", "prettier-plugin-organize-imports", "chroma-js", "@uiw/react-codemirror", "@react-aria/numberfield", "remark-breaks", "@unrs/resolver-binding-linux-arm-musleabihf", "@react-pdf/pdfkit", "sync-message-port", "password-prompt", "@expo/vector-icons", "@astrojs/markdown-remark", "@types/zen-observable", "@mrmlnc/readdir-enhanced", "expo-json-utils", "@vercel/static-build", "yauzl-promise", "@unrs/resolver-binding-freebsd-x64", "lightningcss-freebsd-x64", "object-path", "@aws-cdk/asset-awscli-v1", "structured-headers", "maplibre-gl", "@react-aria/spinbutton", "is-invalid-path", "@aws-sdk/node-http-handler", "rc-collapse", "rc-overflow", "csv-parser", "p-pipe", "react-base16-styling", "heap-js", "@react-navigation/core", "@react-stately/toast", "@unrs/resolver-binding-linux-arm-gnueabihf", "nerf-dart", "@react-aria/switch", "@next/bundle-analyzer", "tldts-icann", "three-stdlib", "vinyl-sourcemap", "xhr", "@rollup/rollup-linux-loong64-gnu", "@react-aria/radio", "flattie", "resolve-options", "camera-controls", "@asyncapi/specs", "lightningcss-win32-arm64-msvc", "@types/events", "node-rsa", "@types/nlcst", "@peculiar/json-schema", "@nx/web", "json-schema-ref-resolver", "rc-tree", "@mapbox/point-geometry", "titleize", "individual", "constructs", "rehype-slug", "react-confetti", "detect-gpu", "@vercel/remix-builder", "@rolldown/binding-linux-arm64-gnu", "stats.js", "@commander-js/extra-typings", "@pnpm/constants", "@types/google-protobuf", "compare-version", "standardwebhooks", "@csstools/postcss-logical-overflow", "unix-dgram", "vercel", "left-pad", "unist-util-remove", "@testing-library/react-hooks", "@react-native-community/cli-types", "@react-email/code-inline", "@types/draco3d", "@types/command-line-usage", "@react-aria/tabs", "@semantic-release/npm", "troika-three-utils", "@angular-eslint/template-parser", "next-intl-swc-plugin-extractor", "@csstools/postcss-scope-pseudo-class", "rc-dropdown", "@tiptap/extension-table-cell", "expo-secure-store", "@types/json-stable-stringify", "ansi-wrap", "troika-worker-utils", "@csstools/postcss-light-dark-function", "@rc-component/trigger", "@react-aria/breadcrumbs", "@aws-sdk/util-hex-encoding", "@tiptap/extension-table-row", "@turf/boolean-point-in-polygon", "randomatic", "@apollo/cache-control-types", "re-resizable", "@globalart/nestjs-grpc", "@types/sarif", "@vercel/gatsby-plugin-vercel-builder", "serve-favicon", "multipipe", "expo-updates-interface", "@tanstack/eslint-plugin-query", "@opentelemetry/propagation-utils", "jest-canvas-mock", "perfect-scrollbar", "is-dotfile", "@apollo/utils.withrequired", "@storybook/addon-vitest", "tween-functions", "@unrs/resolver-binding-linux-riscv64-gnu", "@react-types/checkbox", "@semantic-release/release-notes-generator", "ag-grid-community", "remark-directive", "madge", "gaze", "chrono-node", "@types/codemirror", "@tiptap/extension-table-header", "vscode-nls", "@ionic/utils-subprocess", "react-native-url-polyfill", "lowdb", "moo-color", "d3-collection", "@tailwindcss/oxide-linux-arm64-musl", "hsl-to-hex", "@aws-sdk/is-array-buffer", "web-encoding", "webgl-sdf-generator", "@react-email/text", "typed-function", "time-stamp", "@parcel/watcher-freebsd-x64", "lightningcss-linux-arm-gnueabihf", "@fastify/merge-json-schemas", "vt-pbf", "@mui/x-data-grid", "react-native-webview", "@unrs/resolver-binding-android-arm64", "fs-mkdirp-stream", "canvas-confetti", "estree-util-value-to-estree", "lodash.zip", "rc-virtual-list", "semantic-release", "parse-glob", "peek-stream", "rc-select", "@react-stately/searchfield", "rc-pagination", "@react-aria/dnd", "@react-types/searchfield", "typebox", "launchdarkly-js-client-sdk", "@storybook/addons", "lazy-universal-dotenv", "make-cancellable-promise", "webgl-constants", "eslint-rule-composer", "safe-identifier", "@bytecodealliance/preview2-shim", "bonjour", "@tailwindcss/oxide-darwin-arm64", "@react-native-community/cli", "@types/geojson-vt", "cwd", "@react-stately/dnd", "@unrs/resolver-binding-linux-ppc64-gnu", "css-selector-tokenizer", "@semantic-release/commit-analyzer", "metaviewport-parser", "amqplib", "error-stack-parser-es", "@vscode/l10n", "system-architecture", "write-json-file", "unconfig-core", "filename-regex", "json-schema-to-typescript", "math-random", "@vercel/redwood", "@types/passport-jwt", "@unrs/resolver-binding-linux-s390x-gnu", "packet-reader", "@azure/keyvault-common", "server-destroy", "@expo/sudo-prompt", "@apollo/protobufjs", "rc-cascader", "init-package-json", "eslint-plugin-jsdoc", "msw-storybook-addon", "is-equal-shallow", "@types/micromatch", "@dagrejs/dagre", "@react-aria/gridlist", "@aws-sdk/client-eventbridge", "node-polyfill-webpack-plugin", "@firebase/app-check-interop-types", "multistream", "lodash.assign", "antd", "elegant-spinner", "@types/pdfkit", "request-ip", "@react-native-community/cli-clean", "react-native-is-edge-to-edge", "@stoplight/spectral-runtime", "@unrs/resolver-binding-wasm32-wasi", "@nx/eslint-plugin", "i18next-http-backend", "aws-cdk-lib", "@img/colour", "postcss-sorting", "phin", "@unrs/resolver-binding-win32-ia32-msvc", "vite-plugin-checker", "@mapbox/mapbox-gl-supported", "chance", "@lydell/node-pty-linux-x64", "@lovable.dev/vite-plugin-hmr-gate", "@google-cloud/logging", "queue-lit", "@csstools/postcss-gamut-mapping", "@exodus/schemasafe", "@slack/bolt", "is-posix-bracket", "@mapbox/geojson-rewind", "parse-numeric-range", "@csstools/postcss-initial", "@storybook/docs-tools", "magic-string-ast", "framesync", "secp256k1", "@next/swc-darwin-arm64", "lottie-react", "@stoplight/spectral-formats", "aws-ssl-profiles", "import-from-esm", "openapi-sampler", "listr-verbose-renderer", "hsl-regex", "@parcel/watcher-android-arm64", "@apollo/server-gateway-interface", "jss-plugin-camel-case", "web-tree-sitter", "rc-progress", "@jsep-plugin/ternary", "rc-input-number", "rc-table", "rc-checkbox", "@semantic-release/github", "plur", "@react-pdf/image", "css-box-model", "events-intercept", "@aws-sdk/util-uri-escape", "rc-notification", "jss-plugin-nested", "@types/cross-spawn", "copyfiles", "@react-native-community/cli-doctor", "lodash.topath", "@googlemaps/markerclusterer", "buffer-writer", "next-auth", "@parcel/watcher-linux-arm-glibc", "troika-three-text", "elkjs", "@hutson/parse-repository-url", "chromium-edge-launcher", "app-builder-lib", "@parcel/watcher-win32-ia32", "@asteasolutions/zod-to-openapi", "tedious", "rc-image", "@parcel/watcher-win32-arm64", "@schummar/icu-type-parser", "rc-tree-select", "@unrs/resolver-binding-android-arm-eabi", "@react-aria/meter", "rehackt", "mixin-object", "react-compiler-runtime", "jsondiffpatch", "stylelint-order", "json-stream-stringify", "expo-asset", "capture-stack-trace", "@react-aria/textfield", "@vercel/ruby", "node-plop", "highcharts", "@stoplight/spectral-core", "use-resize-observer", "fast-base64-decode", "jss-plugin-default-unit", "jss-plugin-global", "btoa-lite", "icu-minify", "synchronous-promise", "@cucumber/gherkin-utils", "@react-stately/color", "babel-generator", "@next/swc-win32-x64-msvc", "parse-headers", "@types/turndown", "@anthropic-ai/claude-agent-sdk-linux-x64-musl", "@0no-co/graphql.web", "rc-drawer", "rc-rate", "icss-replace-symbols", "complex.js", "encode-utf8", "@ant-design/cssinjs", "@stoplight/spectral-functions", "stylelint-config-standard-scss", "rc-switch", "@types/lru-cache", "readline", "a-sync-waterfall", "@rolldown/binding-win32-x64-msvc", "juice", "@aws-sdk/smithy-client", "@apollo/server", "@tailwindcss/oxide-win32-x64-msvc", "tree-sitter", "@codemirror/search", "keytar", "detect-browser", "@types/react-window", "app-builder-bin", "validate.io-array", "rc-tabs", "clean-webpack-plugin", "@unrs/resolver-binding-linux-riscv64-musl", "slate", "boom", "launchdarkly-js-sdk-common", "@storybook/addon-themes", "@parcel/watcher-linux-arm-musl", "@react-types/meter", "@storybook/react-webpack5", "expo-application", "dns-txt", "@hono/zod-validator", "rc-textarea", "regex-cache", "which-pm", "async-listener", "meshline", "@oslojs/jwt", "@react-pdf/png-js", "@oxlint/binding-linux-x64-musl", "multicast-dns-service-types", "parse-github-url", "@react-stately/data", "jss-plugin-vendor-prefixer", "@testing-library/react-native", "preferred-pm", "@sentry/replay", "@types/acorn", "fastest-stable-stringify", "app-root-dir", "@stoplight/spectral-parsers", "regex-utilities", "lru.min", "@react-aria/select", "webdriverio", "rx", "@types/ioredis", "react-beautiful-dnd", "is64bit", "component-type", "expo-system-ui", "@aws-sdk/util-buffer-from", "libsodium", "react-copy-to-clipboard", "p-wait-for", "@swc/core-win32-arm64-msvc", "dogapi", "@aws-sdk/querystring-builder", "@aws-sdk/middleware-retry", "@aws-sdk/property-provider", "@cucumber/tag-expressions", "three", "jss-plugin-props-sort", "untyped", "glogg", "@aws-sdk/client-kinesis", "uhyphen", "glsl-noise", "@aws-sdk/abort-controller", "vite-plugin-inspect", "babel-plugin-const-enum", "karma-jasmine", "noms", "load-yaml-file", "http2-client", "@discordjs/voice", "expo-linear-gradient", "typedoc-plugin-markdown", "json-bignum", "aws-sdk-client-mock", "y-protocols", "semifies", "yjs", "rate-limiter-flexible", "nimma", "mocha-junit-reporter", "@hey-api/json-schema-ref-parser", "@img/sharp-libvips-linux-arm64", "@types/es-aggregate-error", "@rollup/rollup-linux-ppc64-musl", "@react-aria/color", "mem-fs-editor", "@tanstack/match-sorter-utils", "rx-lite", "@aws-sdk/shared-ini-file-loader", "first-chunk-stream", "slick", "prism-react-renderer", "glob-base", "@sentry/tracing", "@csstools/postcss-logical-overscroll-behavior", "@turf/centroid", "@antfu/ni", "@types/bluebird", "alphanum-sort", "@datadog/libdatadog", "unhead", "validate.io-function", "spawn-error-forwarder", "babel-plugin-emotion", "@bundled-es-modules/tough-cookie", "@jimp/png", "@poppinss/exception", "node-fetch-h2", "ethereumjs-util", "material-colors", "@vue-macros/common", "css-vendor", "@ionic/utils-fs", "@epic-web/invariant", "sparkles", "@launchdarkly/js-sdk-common", "jss-plugin-rule-value-function", "@aws-sdk/middleware-sdk-ec2", "sql-highlight", "pm2", "steno", "@react-types/calendar", "eslint-plugin-no-only-tests", "@nestjs/terminus", "rc-steps", "p-map-series", "isbot", "webdriver-bidi-protocol", "@react-aria/tree", "@types/lodash.debounce", "@better-auth/mongo-adapter", "lodash.isarray", "@react-aria/landmark", "builder-util", "console.table", "@angular/cli", "rc-mentions", "buffer-more-ints", "tsdown", "@types/jsesc", "@types/picomatch", "await-to-js", "conventional-changelog", "react-promise-suspense", "@turf/area", "uint8arrays", "regexp-match-indices", "@stoplight/json", "@ionic/utils-process", "expo-dev-menu", "mssql", "style-search", "es6-set", "any-observable", "@base2/pretty-print-object", "listr", "libsodium-wrappers", "listr-update-renderer", "@openfeature/server-sdk", "execall", "vue-loader", "@react-aria/separator", "fontace", "chromatic", "@walletconnect/universal-provider", "@stoplight/json-ref-readers", "@types/seedrandom", "require-like", "@langchain/langgraph-sdk", "find-yarn-workspace-root2", "@otplib/core", "@react-aria/searchfield", "lan-network", "linkedom", "@datadog/datadog-api-client", "fbemitter", "is-port-reachable", "@csstools/postcss-exponential-functions", "lefthook", "@react-stately/disclosure", "rc-field-form", "reduce-flatten", "re2", "@develar/schema-utils", "@types/wait-on", "vendors", "sdp-transform", "point-in-polygon", "jest-extended", "@storybook/builder-manager", "preserve", "electron-publish", "@mariozechner/pi-ai", "react-tabs", "pretty-time", "react-email", "hook-std", "langchain", "dynamic-dedupe", "react-inspector", "graceful-readlink", "@jsdoc/salty", "eslint-plugin-security", "gulplog", "eventid", "@tanstack/devtools-event-client", "ordered-read-streams", "@opentelemetry/instrumentation-fetch", "@react-stately/combobox", "badgin", "lodash.clonedeepwith", "@react-native-community/netinfo", "otplib", "react-phone-number-input", "@appium/types", "@nx/jest", "@capsizecss/unpack", "uniqs", "@react-email/head", "color2k", "buffer-indexof", "koalas", "typed-emitter", "@types/cheerio", "is-in-browser", "long-timeout", "@react-email/column", "spawnd", "@rollup/rollup-linux-loong64-musl", "jsdoc", "periscopic", "ast-walker-scope", "lexical", "@zxing/text-encoding", "libnpmpublish", "@oslojs/binary", "unctx", "dts-resolver", "expo-haptics", "@azure/keyvault-keys", "@types/bun", "tsyringe", "react-smooth", "irregular-plurals", "@react-aria/tag", "@react-types/form", "react-reconciler", "@ionic/utils-array", "@nestjs/throttler", "@slack/socket-mode", "lodash.pick", "@firebase/app", "mockdate", "@vue/devtools-core", "@tabler/icons", "is-ip", "hsla-regex", "@types/morgan", "@types/md5", "@tanstack/form-core", "good-listener", "eval", "@react-stately/tooltip", "ts-node-dev", "expo-image-picker", "ansi-gray", "promise-breaker", "@stoplight/path", "style-value-types", "@octokit/oauth-authorization-url", "@tanstack/react-router-devtools", "timm", "create-error-class", "blueimp-md5", "unique-stream", "@nrwl/tao", "@xobotyi/scrollbar-width", "trim", "@trpc/server", "url-to-options", "clipboard", "through2-filter", "@ethereumjs/util", "@aws-sdk/url-parser", "has-to-string-tag-x", "@tanstack/router-devtools-core", "@csstools/postcss-content-alt-text", "is-redirect", "@react-stately/virtualizer", "mqtt", "argv-formatter", "lodash.foreach", "xmldoc", "is-subset", "use-latest-callback", "@datadog/datadog-ci-plugin-sbom", "@datadog/datadog-ci-plugin-sarif", "isurl", "@aws-sdk/credential-provider-imds", "hex-color-regex", "@hello-pangea/dnd", "archive-type", "@jimp/tiff", "http-call", "delegate", "@storybook/manager", "@better-auth/prisma-adapter", "@sentry/profiling-node", "is-mobile", "karma-jasmine-html-reporter", "byte-size", "@contentful/rich-text-types", "@react-email/hr", "git-log-parser", "@jimp/gif", "has-symbol-support-x", "@vercel/gatsby-plugin-vercel-analytics", "expo-dev-client", "react-element-to-jsx-string", "hast-util-embedded", "@jimp/js-bmp", "lightningcss-android-arm64", "set-harmonic-interval", "diagnostic-channel", "@types/esquery", "@microsoft/fetch-event-source", "expo-dev-launcher", "lodash.deburr", "embla-carousel-autoplay", "join-component", "nitro", "selenium-webdriver", "@types/bn.js", "@wdio/config", "mqtt-packet", "onnxruntime-web", "cuint", "@octokit/auth-oauth-user", "expo-dev-menu-interface", "@ardatan/sync-fetch", "create-react-class", "@poppinss/colors", "@cucumber/ci-environment", "string.prototype.codepointat", "@datadog/datadog-ci-plugin-junit", "@types/slice-ansi", "use-stick-to-bottom", "fast-shallow-equal", "@fastify/deepmerge", "eslint-plugin-turbo", "scmp", "docx", "tiny-lru", "@vercel/express", "applicationinsights", "@rollup/rollup-openbsd-x64", "xxhashjs", "true-case-path", "@types/warning", "faker", "@types/object-hash", "seed-random", "@vercel/hono", "@pnpm/dependency-path", "request-light", "pad-right", "@mswjs/cookies", "expo-device", "home-or-tmp", "jsonlines", "react-aria-components", "yaml-eslint-parser", "@appium/schema", "@aws-sdk/config-resolver", "libnpmaccess", "json3", "is-color-stop", "promise-limit", "@ethersproject/address", "subscriptions-transport-ws", "promzard", "@types/braces", "continuation-local-storage", "@algolia/autocomplete-core", "@pdf-lib/standard-fonts", "nanospinner", "@apollo/utils.stripsensitiveliterals", "@rolldown/binding-darwin-arm64", "hast-util-select", "valid-data-url", "env-ci", "@jimp/custom", "sugarss", "lodash.isfinite", "conventional-changelog-jquery", "@angular-eslint/builder", "conventional-changelog-codemirror", "isows", "install-artifact-from-github", "@slack/oauth", "@ethersproject/bignumber", "@vitest/coverage-istanbul", "@mui/lab", "@cucumber/cucumber", "@firebase/firestore", "reactcss", "typedarray.prototype.slice", "@react-aria/table", "@lit-labs/react", "rgb-regex", "onnxruntime-node", "@turf/line-intersect", "@lexical/hashtag", "@types/mapbox-gl", "@koa/router", "lodash.curry", "@firebase/installations", "@mapbox/tiny-sdf", "react-table", "knitwork", "@kubernetes/client-node", "@vanilla-extract/css", "@google-cloud/secret-manager", "@react-aria/tooltip", "jssha", "@floating-ui/vue", "@types/docker-modem", "@lexical/dragon", "@react-aria/toast", "fetch-cookie", "@storybook/channel-postmessage", "@codemirror/lang-python", "diffable-html", "@vercel/python-analysis", "sigmund", "@aws-sdk/hash-node", "@turf/bearing", "@stoplight/better-ajv-errors", "expo-image-loader", "@samverschueren/stream-to-observable", "@react-aria/slider", "@sveltejs/kit", "oblivious-set", "inversify", "@img/sharp-win32-arm64", "buffer-builder", "ts-easing", "pn", "logkitty", "@sveltejs/vite-plugin-svelte-inspector", "expo-crypto", "conventional-changelog-atom", "string-similarity", "@ctrl/tinycolor", "@lezer/json", "base16", "lighthouse", "@ethersproject/abstract-provider", "center-align", "@hapi/wreck", "@langchain/langgraph", "@ethersproject/bytes", "ag-charts-types", "rehype-harden", "@aws-sdk/querystring-parser", "async-done", "download", "@simplewebauthn/browser", "@firebase/storage", "httpxy", "pkginfo", "@turf/destination", "@oozcitak/infra", "i18n-iso-countries", "@formatjs/intl-listformat", "react-easy-crop", "diagnostic-channel-publishers", "passport-oauth2", "tildify", "@ethersproject/hash", "issue-parser", "@types/node-cron", "@xmldom/is-dom-node", "@stoplight/spectral-ref-resolver", "@angular/material", "@aws-sdk/client-sesv2", "@react-email/markdown", "packageurl-js", "eslint-plugin-perfectionist", "@vercel/elysia", "@ant-design/react-slick", "@react-email/font", "@aws-sdk/fetch-http-handler", "@ethereumjs/common", "conventional-changelog-express", "make-plural", "qr.js", "karma-coverage", "unzip-response", "@img/sharp-linux-ppc64", "keccak", "@notionhq/client", "json-schema-compare", "@storybook/test-runner", "numeral", "@firebase/storage-types", "lodash.set", "@csstools/postcss-random-function", "to-absolute-glob", "lodash._getnative", "azure-devops-node-api", "yamljs", "appdirsjs", "@aws-sdk/client-cloudwatch", "@ethersproject/abi", "@jimp/diff", "@launchdarkly/node-server-sdk", "@sentry/cli-linux-arm64", "uglify-to-browserify", "is-number-like", "mux-embed", "@angular/cdk", "@apollo/utils.removealiases", "@nuxt/devtools-kit", "rrweb-snapshot", "undertaker-registry", "react-onclickoutside", "@types/express-session", "csv", "conventional-changelog-eslint", "os-shim", "postcss-reporter", "right-align", "yauzl-clone", "csv-generate", "rc-upload", "@parcel/watcher-wasm", "align-text", "killable", "@ionic/cli-framework-output", "listr-silent-renderer", "tinygradient", "knuth-shuffle-seeded", "ansi-to-html", "react-universal-interface", "tslint", "@aws-sdk/invalid-dependency", "@vercel/backends", "@amplitude/analytics-browser", "posthtml-parser", "compute-gcd", "listhen", "react-tooltip", "@tiptap/extension-list", "@angular/animations", "resq", "@peculiar/asn1-ecc", "rgb2hex", "@turf/projection", "exit-on-epipe", "conventional-changelog-ember", "heap", "@changesets/should-skip-package", "@turf/boolean-clockwise", "@tabler/icons-react", "comlink", "@oxlint-tsgolint/linux-x64", "stream-transform", "popmotion", "toposort-class", "axios-mock-adapter", "@peculiar/asn1-rsa", "unherit", "@teppeis/multimaps", "@vercel/next", "@ethersproject/constants", "@tiptap/extension-color", "webpackbar", "sort-object", "run-series", "consolidate", "args", "@firebase/analytics-types", "@aws-sdk/client-bedrock", "sequelize-pool", "@protobuf-ts/runtime", "@xhmikosr/decompress-tar", "rgba-regex", "find-package-json", "@ethersproject/properties", "async-validator", "strip-bom-stream", "rollup-plugin-dts", "@hapi/joi", "merge-deep", "glob-promise", "make-event-props", "@ethersproject/web", "redoc", "@lydell/node-pty", "svelte-check", "@panva/hkdf", "@xhmikosr/bin-wrapper", "fix-dts-default-cjs-exports", "glob-watcher", "hast-util-to-html", "@auth0/auth0-spa-js", "printj", "@aws-sdk/node-config-provider", "edge-paths", "vite-plugin-static-copy", "@jimp/bmp", "bach", "@ethersproject/rlp", "react-player", "detective-vue2", "expo-structured-headers", "figlet", "tempfile", "@nx/module-federation", "@swc-node/core", "@mapbox/jsonlint-lines-primitives", "@react-aria/disclosure", "@aws-sdk/util-body-length-node", "@swc/core-win32-x64-msvc", "http-shutdown", "conventional-changelog-jshint", "@angular-eslint/schematics", "@aws-sdk/client-sfn", "ramda-adjunct", "@whatwg-node/server", "@rolldown/binding-linux-arm64-musl", "eslint-config-airbnb-typescript", "@nestjs/microservices", "@sentry/cli-darwin", "jest-serializer-html", "lovable-tagger", "@fullcalendar/daygrid", "fs", "escape-latex", "neverthrow", "@temporalio/client", "@tanstack/vue-virtual", "umzug", "@aws-sdk/middleware-serde", "last-run", "react-side-effect", "@walletconnect/core", "dependency-cruiser", "signature_pad", "@microsoft/applicationinsights-web-snippet", "better-ajv-errors", "@launchdarkly/js-server-sdk-common", "reduce-function-call", "markdownlint", "@ethersproject/logger", "@vercel/cervel", "abstract-leveldown", "@poppinss/dumper", "@types/diff-match-patch", "@jimp/js-png", "@dependents/detective-less", "expo-build-properties", "co-body", "@amplitude/plugin-autocapture-browser", "@ethersproject/networks", "@next/swc-win32-arm64-msvc", "lodash.reduce", "util-arity", "rc-input", "@temporalio/common", "@tailwindcss/oxide-darwin-x64", "@vercel/fastify", "@ethereumjs/tx", "@vercel/h3", "@turf/nearest-point-on-line", "micromark-extension-math", "babel-polyfill", "unist-util-filter", "parse-link-header", "@octokit/auth-oauth-device", "@types/btoa-lite", "@tanstack/react-form", "@sentry/react-native", "dtrace-provider", "node-ensure", "emoji-mart", "@balena/dockerignore", "d3-geo-projection", "@csstools/postcss-sign-functions", "lazy-val", "ag-grid-react", "ts-mixer", "ts-proto", "@types/pretty-hrtime", "flatstr", "@algolia/autocomplete-shared", "@firebase/installations-types", "email-validator", "find-node-modules", "@types/buffer-from", "gulp", "@aws-sdk/client-cloudformation", "@aws-sdk/util-body-length-browser", "eslint-plugin-react-native", "postman-request", "martinez-polygon-clipping", "is-svg", "react-map-gl", "@nuxt/schema", "matcher-collection", "cloudevents", "fastestsmallesttextencoderdecoder", "@algolia/autocomplete-plugin-algolia-insights", "@fortawesome/react-fontawesome", "@img/sharp-linux-riscv64", "@rc-component/mutate-observer", "lop", "eslint-plugin-mocha", "@jimp/jpeg", "@ts-graphviz/core", "@vanilla-extract/private", "@jimp/plugin-crop", "expo-eas-client", "@storybook/codemod", "@img/sharp-libvips-darwin-arm64", "@ts-graphviz/adapter", "parseuri", "@vercel/sandbox", "vizion", "kinesis-local", "passport-local", "@prisma/instrumentation", "babel-plugin-transform-strict-mode", "css-shorthand-properties", "@nivo/core", "@ts-graphviz/ast", "@codemirror/lang-css", "@ts-graphviz/common", "hast-util-phrasing", "jimp", "search-insights", "object-deep-merge", "@chevrotain/regexp-to-ast", "gulp-cli", "@motionone/animation", "copy-props", "@amplitude/plugin-page-view-tracking-browser", "@ethersproject/abstract-signer", "hey-listen", "@unhead/vue", "@nx/vite", "semver-greatest-satisfied-range", "hammerjs", "npm-run-all2", "@expo/devcert", "@motionone/dom", "@nivo/colors", "stream-exhaust", "@reactflow/controls", "@codemirror/lang-javascript", "@nrwl/js", "@amplitude/analytics-client-common", "@elastic/elasticsearch", "@types/vscode", "rtlcss", "@google-cloud/pubsub", "@oclif/plugin-autocomplete", "@aws-sdk/middleware-stack", "is-word-character", "@react-native-community/cli-platform-apple", "mutexify", "@aws-sdk/middleware-content-length", "@anthropic-ai/claude-code-darwin-arm64", "@swc/core-darwin-x64", "assertion-error-formatter", "@rc-component/portal", "react-qr-code", "@mantine/core", "babel-register", "parseqs", "@codemirror/legacy-modes", "expo-symbols", "plop", "turbo-stream", "@vercel/detect-agent", "@motionone/generators", "iterate-iterator", "react-overlays", "@reactflow/node-resizer", "array.prototype.map", "@oozcitak/url", "iterate-value", "@types/sax", "@hapi/b64", "amp", "react-color", "@types/pngjs", "vite-hot-client", "@openfeature/core", "exec-async", "dagre", "@next/swc-linux-arm64-gnu", "react-virtualized", "@ethersproject/keccak256", "@storybook/api", "@vitejs/plugin-vue-jsx", "@reactflow/background", "portscanner", "svg.select.js", "@types/npmlog", "@textlint/ast-node-types", "async-settle", "resolve-path", "@nivo/tooltip", "@wdio/reporter", "node-modules-regexp", "@prisma/streams-local", "launchdarkly-eventsource", "culvert", "country-flag-icons", "sql-formatter", "@lexical/devtools-core", "snowflake-sdk", "@langchain/langgraph-checkpoint", "@lit/react", "subarg", "@anthropic-ai/claude-code-win32-x64", "isomorphic-timers-promises", "@pdf-lib/upng", "@segment/loosely-validate-event", "@hey-api/codegen-core", "ssh2-sftp-client", "bytewise", "@reactflow/minimap", "@yarnpkg/libzip", "react-native-get-random-values", "@storybook/core-client", "@types/stream-buffers", "undertaker", "@pnpm/crypto.base32-hash", "@emotion/core", "userhome", "decko", "broadcast-channel", "cp-file", "@types/color-convert", "mute-stdout", "@huggingface/jinja", "@next/swc-linux-arm64-musl", "@radix-ui/colors", "node-mocks-http", "@hapi/iron", "@xhmikosr/os-filter-obj", "@vercel/rust", "@react-native-community/cli-platform-ios", "@types/liftoff", "borsh", "@types/react-helmet", "react-input-autosize", "@stoplight/json-ref-resolver", "cssnano-util-raw-cache", "@ethersproject/base64", "@nestjs/websockets", "deep-freeze", "cockatiel", "typewise", "@opentelemetry/instrumentation-xml-http-request", "validate.io-integer-array", "babel-plugin-transform-es2015-modules-commonjs", "@vercel/koa", "cssnano-util-get-arguments", "each-props", "@ethersproject/signing-key", "babel-plugin-syntax-object-rest-spread", "is-standalone-pwa", "@vercel/nestjs", "firebase-tools", "@types/leaflet", "case", "@types/chrome", "ts-proto-descriptors", "@tiptap/extension-history", "errx", "mdast-util-frontmatter", "validate.io-number", "untun", "@storybook/addon-a11y", "babel-helper-function-name", "safe-json-parse", "koffi", "nano-time", "@jimp/plugin-cover", "@types/busboy", "git-sha1", "@motionone/utils", "@stoplight/yaml-ast-parser", "html-loader", "autolinker", "json2csv", "vscode-html-languageservice", "validate.io-integer", "@types/react-is", "cssnano-util-same-parent", "@types/tern", "ttl-set", "bezier-easing", "replace-homedir", "@motionone/types", "es6-object-assign", "css-value", "@mozilla/readability", "@nx/webpack", "@types/html-to-text", "@reactflow/core", "@turf/line-segment", "@tanstack/query-persist-client-core", "js-stringify", "@ethersproject/transactions", "rollup-plugin-node-polyfills", "dmg-builder", "cssnano-util-get-match", "@edsdk/flmngr-ckeditor5", "bodec", "media-query-parser", "@ethersproject/providers", "git-node-fs", "@storybook/telemetry", "@xhmikosr/decompress", "@date-io/core", "@mariozechner/pi-tui", "@vueuse/integrations", "@mariozechner/pi-agent-core", "@microsoft/microsoft-graph-client", "@hapi/cryptiles", "@sentry/vite-plugin", "@promptbook/utils", "falafel", "react-device-detect", "@types/mapbox__vector-tile", "response-iterator", "rrule", "js-git", "blob", "@ast-grep/napi-linux-x64-gnu", "@reactflow/node-toolbar", "rc-trigger", "@mdn/browser-compat-data", "@temporalio/workflow", "koa-router", "@wdio/protocols", "pg-cursor", "@yarnpkg/fslib", "@types/supports-color", "@turf/rewind", "@gorhom/portal", "@valibot/to-json-schema", "shallow-copy", "jayson", "eslint-plugin-react-compiler", "cross-dirname", "@aws-sdk/client-ec2", "expo-updates", "@ethersproject/sha2", "@storybook/cli", "postcss-html", "@vercel/stega", "set-immediate-shim", "stream-parser", "expo-notifications", "@firebase/firestore-compat", "lefthook-linux-x64", "@rc-component/tour", "retry-axios", "http-response-object", "@react-native-community/datetimepicker", "is-whitespace-character", "@motionone/easing", "@pm2/js-api", "@types/set-cookie-parser", "@babel/polyfill", "redux-mock-store", "reserved-identifiers", "@rc-component/context", "@tsconfig/node18", "eslint-import-resolver-alias", "@humanwhocodes/momoa", "@firebase/messaging-compat", "acorn-jsx-walk", "@vercel/fun", "@monaco-editor/loader", "text-encoding", "@internationalized/number", "env-cmd", "postject", "@swc/core-win32-ia32-msvc", "json-schema-merge-allof", "@firebase/app-check-compat", "@pm2/pm2-version-check", "@firebase/storage-compat", "@next/third-parties", "@tiptap/extension-table", "blakejs", "@react-google-maps/marker-clusterer", "@firebase/analytics-compat", "@xhmikosr/archive-type", "@csstools/postcss-color-mix-variadic-function-arguments", "@smithy/middleware-compression", "inflation", "asn1.js-rfc5280", "@firebase/performance-compat", "jest-axe", "legacy-javascript", "@solana/codecs-strings", "markdown-escapes", "get-npm-tarball-url", "@formatjs/intl-displaynames", "@eslint-community/eslint-plugin-eslint-comments", "@swc/core-linux-arm-gnueabihf", "array-iterate", "liquidjs", "enzyme-shallow-equal", "react-query", "@oclif/config", "@apollo/utils.isnodelike", "vscode-css-languageservice", "null-loader", "@firebase/installations-compat", "dicer", "color-parse", "rc-segmented", "jsonrepair", "depcheck", "isomorphic.js", "@jimp/plugin-scale", "@turf/length", "universal-cookie", "@docsearch/css", "swagger-parser", "style-inject", "@turf/rhumb-distance", "@types/marked", "chai-as-promised", "@types/googlepay", "@npmcli/config", "gradient-string", "watskeburt", "@ethersproject/random", "avsc", "@next/swc-darwin-x64", "stream", "browserify", "start-server-and-test", "keycode", "@angular/language-service", "eol", "charset", "universal-analytics", "@turf/point-to-line-distance", "@stoplight/spectral-rulesets", "jest-expo", "@types/jscodeshift", "git-repo-info", "promise.allsettled", "@types/form-data", "rpc-websockets", "@ai-sdk/google-vertex", "debounce-promise", "@react-google-maps/api", "slate-react", "@noble/ed25519", "lerna", "charm", "method-override", "firebase-functions", "@octokit/plugin-enterprise-rest", "replace-in-file", "tldjs", "state-toggle", "svelte", "ps-list", "@types/pdf-parse", "wasm-feature-detect", "@algolia/logger-common", "broccoli-plugin", "@types/mustache", "notistack", "sntp", "@types/async-retry", "@aws-sdk/client-firehose", "zx", "deps-regex", "version-range", "mochawesome-report-generator", "@storybook/nextjs", "multibase", "lodash.padend", "xcode", "rc-align", "array.prototype.filter", "tcomb", "@react-spring/three", "webextension-polyfill", "@pnpm/logger", "@assemblyscript/loader", "@types/concat-stream", "@statsig/client-core", "react-resize-detector", "hex-rgb", "@better-auth/memory-adapter", "@adraffy/ens-normalize", "jsqr", "@amplitude/plugin-web-vitals-browser", "@eslint-react/ast", "has-cors", "react-image-crop", "@types/datadog-metrics", "realpath-native", "pm2-sysmonit", "@better-auth/drizzle-adapter", "babel-helper-get-function-arity", "jest-fetch-mock", "postcss-less", "@eslint-react/shared", "emoji-regex-xs", "mini-create-react-context", "ow", "rollup-plugin-inject", "@gorhom/bottom-sheet", "@msgpackr-extract/msgpackr-extract-linux-arm64", "babel-helpers", "@turf/rhumb-bearing", "@types/gtag.js", "@lezer/html", "@walletconnect/types", "@xhmikosr/decompress-unzip", "@algolia/cache-common", "@esbuild-plugins/node-modules-polyfill", "zod-to-ts", "@sinonjs/formatio", "mixpanel-browser", "@jimp/plugin-gaussian", "rolldown-plugin-dts", "rtl-detect", "select", "npm-conf", "simple-lru-cache", "eslint-plugin-tailwindcss", "@peculiar/asn1-pkcs8", "@tailwindcss/oxide-win32-arm64-msvc", "@peculiar/asn1-x509-attr", "flatpickr", "@peculiar/asn1-pfx", "@algolia/transporter", "points-on-path", "graphql-depth-limit", "promise.series", "ink-spinner", "deprecated-react-native-prop-types", "yoga-wasm-web", "tx2", "@temporalio/proto", "node-sarif-builder", "@lukeed/ms", "get-them-args", "after", "dom-align", "konva", "@tiptap/extension-highlight", "@semantic-release/git", "@messageformat/parser", "natural-orderby", "vuex", "@appium/support", "@tediousjs/connection-string", "@react-hook/passive-layout-effect", "@types/js-levenshtein", "unionfs", "centra", "p-waterfall", "strip-bom-buf", "@algolia/requester-common", "ultron", "asn1.js-rfc2560", "@testing-library/cypress", "lodash._root", "probe-image-size", "lazy", "srcset", "cycle", "@react-router/node", "@figspec/components", "config", "json-ptr", "rrweb", "@parcel/workers", "schema-dts", "@react-google-maps/infobox", "@better-auth/kysely-adapter", "@visx/group", "@jimp/plugins", "lodash.chunk", "globalyzer", "scrypt-js", "@tailwindcss/oxide-wasm32-wasi", "source-map-explorer", "rrdom", "@hapi/accept", "path2d", "zxcvbn", "simple-websocket", "@es-joy/resolve.exports", "@translated/lara", "critters", "@stoplight/yaml", "@types/mailparser", "@ethersproject/hdnode", "mochawesome", "simple-eval", "cpy", "@nestjs/platform-socket.io", "@jimp/plugin-shadow", "google-libphonenumber", "mktemp", "@temporalio/worker", "thread-loader", "@googleapis/sqladmin", "@graphql-yoga/typed-event-target", "@aws-sdk/util-utf8-node", "yeast", "expect-playwright", "intl-messageformat-parser", "sandbox", "@types/pixelmatch", "requireg", "int64-buffer", "detect-package-manager", "@react-aria/collections", "@types/dagre", "ndjson", "@octokit/tsconfig", "@turf/bbox-polygon", "@fullcalendar/interaction", "style-dictionary", "koa-static", "rollup-plugin-postcss", "serve-placeholder", "postman-collection", "highlight-words-core", "@segment/analytics-node", "@segment/analytics.js-video-plugins", "@turf/along", "posthtml", "@vanilla-extract/integration", "deterministic-object-hash", "@vercel/error-utils", "@turf/circle", "circular-json", "@aws-sdk/client-ecr", "apollo-server-env", "short-unique-id", "cbor", "redux-persist", "@types/he", "parse-bmfont-binary", "@ethersproject/pbkdf2", "apexcharts", "algoliasearch-helper", "@simplewebauthn/server", "vinyl-file", "@expo/local-build-cache-provider", "uuidv7", "syncpack", "rc-picker", "remove-bom-stream", "md5-file", "koa-send", "bole", "lodash.find", "graphql-scalars", "@typescript-eslint/rule-tester", "@fastify/formbody", "generate-object-property", "protobufjs-cli", "@ckeditor/ckeditor5-engine", "sdp", "freeport-async", "yamux-js", "pretty-quick", "postcss-discard-unused", "@react-three/drei", "@redocly/respect-core", "node-edge-tts", "@types/fined", "lodash.pickby", "@emmetio/css-abbreviation", "@clickhouse/client-common", "@emmetio/abbreviation", "@types/classnames", "fsu", "json-schema-ref-parser", "cronstrue", "@vue/eslint-config-typescript", "superstatic", "hast-to-hyperscript", "rc-dialog", "@aws-cdk/cloud-assembly-schema", "when", "faye", "@rolldown/binding-darwin-x64", "@oclif/plugin-not-found", "@types/react-beautiful-dnd", "cjson", "vscode-languageclient", "spawndamnit", "@graphql-yoga/subscription", "express-joi-validations", "hast-util-is-body-ok-link", "@google-cloud/functions-framework", "@turf/boolean-point-on-line", "music-metadata", "@codemirror/lang-json", "@nestjs/bull-shared", "jest-process-manager", "@temporalio/activity", "emmet", "@algolia/cache-browser-local-storage", "@tanstack/pacer-lite", "@clickhouse/client", "valtio", "@apollographql/graphql-playground-html", "@react-native-community/cli-debugger-ui", "zlibjs", "event-source-polyfill", "@types/swagger-ui-express", "@algolia/logger-console", "@cloudflare/vitest-pool-workers", "@koa/cors", "babel-plugin-transform-object-rest-spread", "body-scroll-lock", "@react-native-community/cli-config", "tiny-glob", "basic-auth-connect", "vue-style-loader", "@types/redis", "lodash._isiterateecall", "component-bind", "@turf/center", "@types/quill", "@apollo/utils.dropunuseddefinitions", "use-context-selector", "xmlhttprequest", "prop-types-extra", "iobuffer", "browserslist-to-esbuild", "fast-npm-meta", "fetch-nodeshim", "jsc-android", "prettyjson", "nitropack", "@hapi/formula", "request-promise", "ftp", "mjml-validator", "cloudflare", "magic-regexp", "swagger-jsdoc", "array.prototype.find", "csv-writer", "glur", "laravel-vite-plugin", "@hapi/shot", "@peculiar/utils", "@oven/bun-linux-x64-musl", "cz-conventional-changelog", "@ethersproject/basex", "@aws-sdk/client-cloudfront", "@sentry/cli-win32-x64", "promptly", "@ungap/promise-all-settled", "@fullcalendar/timegrid", "inflected", "react-google-recaptcha", "@turf/polygon-to-line", "temporal-spec", "electron-builder-squirrel-windows", "babel-helper-optimise-call-expression", "case-anything", "airbnb-prop-types", "babel-plugin-transform-es2015-unicode-regex", "@oxc-transform/binding-linux-x64-musl", "@fastify/multipart", "resolve-pkg", "coffeescript", "@theguild/federation-composition", "xmldom", "react-zoom-pan-pinch", "@electron-forge/shared-types", "@pnpm/ramda", "babel-helper-call-delegate", "array-from", "@algolia/cache-in-memory", "hast-util-minify-whitespace", "@turf/truncate", "@xhmikosr/decompress-targz", "write-pkg", "posthtml-render", "dash-ast", "@amplitude/plugin-network-capture-browser", "exegesis", "expo-location", "as-table", "fast-stable-stringify", "vscode-textmate", "@types/big.js", "@fastify/accept-negotiator", "@expo/router-server", "toxic", "bull", "tcomb-validation", "slate-history", "join-path", "@docsearch/react", "@eslint-react/var", "esbuild-loader", "@solana/options", "react-bootstrap", "@ethersproject/json-wallets", "cypress-real-events", "nuxt", "electron-updater", "util-extend", "@cucumber/message-streams", "babel-plugin-transform-es2015-function-name", "babel-plugin-transform-es2015-destructuring", "install", "child-process-ext", "@csstools/postcss-alpha-function", "@types/escodegen", "express-validator", "@redux-saga/core", "@capacitor/core", "is-valid-path", "@storybook/ui", "@vue/tsconfig", "p-all", "@ckeditor/ckeditor5-utils", "duration", "browser-request", "newrelic", "memoize", "@visx/scale", "@aws-sdk/util-base64-node", "@redux-saga/symbols", "unorm", "@rails/actioncable", "cryptiles", "component-inherit", "apollo-utilities", "@react-aria/autocomplete", "otpauth", "@csstools/postcss-contrast-color-function", "weak-map", "@google-cloud/cloud-sql-connector", "@livekit/mutex", "@lovable.dev/cloud-auth-js", "crypto", "@react-types/autocomplete", "lodash._basetostring", "@rc-component/async-validator", "boundary", "rslog", "mjml-parser-xml", "@types/react-native", "@orval/core", "as-array", "postcss-zindex", "printable-characters", "@prisma/generator-helper", "babel-plugin-transform-es2015-spread", "@hapi/catbox", "@redux-saga/types", "@oven/bun-linux-x64-musl-baseline", "image-meta", "hdr-histogram-js", "@segment/analytics-next", "@visx/curve", "tesseract.js", "@apollo/utils.fetcher", "apollo-link", "@algolia/client-account", "worker-rpc", "babel-plugin-transform-es2015-for-of", "@react-stately/autocomplete", "expo-blur", "babel-plugin-transform-es2015-parameters", "babel-helper-define-map", "kill-port", "vue-template-es2015-compiler", "normalize-selector", "gud", "sequin", "babel-plugin-transform-es2015-block-scoping", "antlr4", "@types/react-datepicker", "svg-arc-to-cubic-bezier", "react-slick", "@stoplight/ordered-object-literal", "@changesets/get-version-range-type", "@types/cls-hooked", "node-environment-flags", "vm2", "shell-exec", "@types/vinyl", "@ethersproject/wallet", "string.fromcodepoint", "@opentelemetry/propagator-aws-xray", "babel-helper-regex", "postcss-reduce-idents", "contains-path", "mjml-image", "mjml-table", "mjml-carousel", "inquirer-autocomplete-prompt", "to-array", "mjml-column", "mjml-accordion", "mjml-navbar", "mjml-hero", "mjml-head-style", "json-logic-js", "babel-plugin-transform-es2015-computed-properties", "exegesis-express", "mjml-head-breakpoint", "expo-clipboard", "vscode-oniguruma", "postcss-merge-idents", "pusher-js", "@graphql-tools/mock", "@upstash/redis", "es6-shim", "amp-message", "is-my-json-valid", "@ckeditor/ckeditor5-ui", "babel-plugin-check-es2015-constants", "auth0", "pm2-deploy", "pm2-axon-rpc", "babel-plugin-transform-es2015-sticky-regex", "winston-daily-rotate-file", "@tailwindcss/oxide-android-arm64", "@turf/line-split", "append-buffer", "@datadog/native-iast-rewriter", "@oclif/errors", "@xhmikosr/bin-check", "showdown", "remove-bom-buffer", "@redocly/cli", "@turf/clean-coords", "yeoman-generator", "mjml", "date-now", "@eslint-react/core", "csvtojson", "lodash._basecopy", "@lexical/yjs", "@storybook/postinstall", "contentful-sdk-core", "allure-js-commons", "commitizen", "credit-card-type", "@pm2/io", "@rrweb/types", "canonicalize", "babel-plugin-transform-es2015-object-super", "mkdirp-infer-owner", "@img/sharp-libvips-darwin-x64", "eciesjs", "vscode-json-languageservice", "@rolldown/binding-win32-arm64-msvc", "@sindresorhus/base62", "@turf/rhumb-destination", "mailsplit", "@oxfmt/binding-linux-x64-musl", "babel-plugin-transform-es2015-shorthand-properties", "@ckeditor/ckeditor5-core", "babel-plugin-transform-es2015-modules-systemjs", "remark-slug", "mjml-core", "thirty-two", "@hapi/bounce", "markdown-it-task-lists", "react-to-print", "@emoji-mart/data", "@types/parse-path", "@types/react-table", "@visx/vendor", "@remix-run/node-fetch-server", "babel-plugin-transform-es2015-duplicate-keys", "@capacitor/cli", "os-filter-obj", "fclone", "n8n-nodes-evolution-api", "@opensearch-project/opensearch", "remark-emoji", "@rspack/dev-server", "event-target-polyfill", "stream-slice", "graphql-type-json", "mjml-section", "@types/chroma-js", "@mariozechner/jiti", "@aws-sdk/middleware-sdk-route53", "mjml-spacer", "mjml-text", "mongodb-memory-server-core", "babel-plugin-transform-es2015-typeof-symbol", "mjml-head-preview", "input-format", "es5-shim", "package-directory", "mjml-head-font", "@nivo/legends", "mjml-head-attributes", "mjml-head", "html-comment-regex", "mjml-wrapper", "ts-algebra", "fluent-ffmpeg", "@expo/bunyan", "cropperjs", "mjml-preset-core", "radash", "@types/amqplib", "jest-mock-extended", "fast-printf", "@mantine/hooks", "ssh-remote-port-forward", "thenby", "@material-ui/utils", "@vscode/vsce", "@amplitude/experiment-core", "grouped-queue", "@types/jest-axe", "reserved-words", "tree-changes", "es6-map", "@hapi/hapi", "osc-progress", "@casl/ability", "@vscode/sudo-prompt", "hawk", "esast-util-from-js", "@ngx-translate/core", "@astrojs/sitemap", "@turf/difference", "mongodb-memory-server", "httpreq", "@cucumber/gherkin-streams", "@pnpm/graceful-fs", "ndarray", "babel-plugin-transform-es2015-modules-umd", "supabase", "@fastify/helmet", "bin-check", "@turf/nearest-point-to-line", "@turf/kinks", "ioredis-mock", "babel-plugin-transform-es2015-block-scoped-functions", "@tailwindcss/oxide-freebsd-x64", "babel-plugin-transform-es2015-literals", "@tailwindcss/oxide-linux-arm-gnueabihf", "meriyah", "tesseract.js-core", "@turf/buffer", "decache", "structured-source", "cypress-file-upload", "@hapi/pez", "@lerna/create", "apollo-datasource", "babel-plugin-transform-regenerator", "@turf/union", "@pulumi/aws", "enzyme", "postcss-simple-vars", "@otplib/preset-v11", "@xhmikosr/decompress-tarbz2", "@hapi/podium", "conventional-commit-types", "graphql-subscriptions", "websocket", "dotenv-defaults", "@ethersproject/units", "combine-source-map", "remark-footnotes", "@aws-sdk/middleware-sdk-api-gateway", "hdr-histogram-percentiles-obj", "@img/sharp-libvips-linux-s390x", "mjml-head-title", "bcp-47", "imask", "resolve-package-path", "eslint-plugin-react-native-globals", "inline-source-map", "@cspell/cspell-bundled-dicts", "@csstools/postcss-color-function-display-p3-linear", "microevent.ts", "postcss-selector-matches", "@types/web-push", "on-change", "@tiptap/extension-task-item", "resend", "unwasm", "@gitbeaker/rest", "update-notifier-cjs", "@mariozechner/pi-coding-agent", "@hapi/content", "@nuxt/vite-builder", "cspell-glob", "@fortawesome/fontawesome-free", "@graphql-eslint/eslint-plugin", "@types/is-stream", "@storybook/source-loader", "emoticon", "@mdx-js/loader", "ssim.js", "@aws-sdk/util-base64-browser", "micro-ftch", "openclaw", "resedit", "@types/source-map-support", "yaeti", "exifr", "draft-js", "new-date", "async-foreach", "string-ts", "@react-router/dev", "lodash.has", "cli-tableau", "@cspell/dict-ruby", "babel-helper-hoist-variables", "@microsoft/dynamicproto-js", "@rollup/plugin-image", "compatx", "@visx/point", "@ant-design/fast-color", "@textlint/module-interop", "apache-md5", "vue-hot-reload-api", "@grammyjs/transformer-throttler", "cspell-lib", "ace-builds", "@quansync/fs", "volar-service-typescript", "@turf/boolean-contains", "mjml-head-html-attributes", "mime-format", "jasmine", "ensure-posix-path", "number-allocator", "@cspell/dict-fonts", "@tailwindcss/cli", "@hapi/vise", "@fastify/swagger", "mjml-cli", "livekit-client", "@cspell/dict-cpp", "iron-session", "sqs-consumer", "@types/verror", "sort-any", "mjml-body", "multiformats", "@mux/playback-core", "@textlint/types", "@angular/localize", "redux-saga", "@cypress/webpack-preprocessor", "@nivo/scales", "restructure", "unrun", "ono", "babel-plugin-transform-es2015-modules-amd", "eslint-plugin-regexp", "@bull-board/ui", "@img/sharp-libvips-linux-arm", "slug", "@react-stately/toggle", "glob-slasher", "@cspell/dict-npm", "parse-gitignore", "@linear/sdk", "blessed", "safe-execa", "@nx/nx-linux-arm64-gnu", "@turf/transform-scale", "jay-peg", "node-cleanup", "glob-slash", "rehype-autolink-headings", "@vercel/otel", "@cspell/dict-fullstack", "optimize-css-assets-webpack-plugin", "find", "arraybuffer.slice", "@rc-component/color-picker", "get-assigned-identifiers", "babel-plugin-add-module-exports", "last-call-webpack-plugin", "babel-helper-replace-supers", "unplugin-vue-router", "@tanstack/react-store", "mjml-button", "parse-semver", "babel-plugin-transform-es2015-template-literals", "livereload-js", "babel-plugin-transform-es2015-classes", "use-deep-compare-effect", "@ethersproject/wordlists", "@hapi/ammo", "babel-plugin-transform-es2015-arrow-functions", "terminal-size", "arr-filter", "@ethersproject/solidity", "prettier-plugin-packagejson", "videojs-font", "jpeg-exif", "@jimp/plugin-invert", "sort-desc", "@cspell/dict-powershell", "get-source", "@segment/facade", "expo-localization", "@visx/shape", "@ianvs/prettier-plugin-sort-imports", "@wdio/globals", "grammy", "jwk-to-pem", "@nuxt/telemetry", "@github/copilot", "@aws-sdk/middleware-sdk-rds", "@turf/transform-rotate", "@cspell/dict-haskell", "@ai-sdk/xai", "nice-napi", "@appium/base-driver", "@cspell/dict-lua", "@shopify/flash-list", "web3-utils", "@types/prompts", "@cspell/dict-dotnet", "mjml-group", "pure-color", "gensequence", "pdfmake", "dotenv-webpack", "@anthropic-ai/vertex-sdk", "@hapi/nigel", "array.prototype.toreversed", "array-last", "@cspell/dict-cryptocurrencies", "@aws-amplify/core", "argon2", "@lhci/utils", "unescape", "postcss-cli", "normalize.css", "@cspell/dict-golang", "parse-css-color", "@atlaskit/tokens", "@cspell/dict-bash", "reactflow", "fs-tree-diff", "@hapi/validate", "@storybook/preview", "@react-pdf/reconciler", "@vscode/emmet-helper", "@redux-saga/delay-p", "tweetnacl-util", "@cspell/dict-html-symbol-entities", "array-initial", "lodash.flow", "promisepipe", "@material-ui/system", "player.style", "commist", "@cspell/dict-python", "@react-native-firebase/app", "@astrojs/check", "syntax-error", "@nuxt/devalue", "@noble/secp256k1", "@msgpackr-extract/msgpackr-extract-win32-x64", "arr-map", "opencode-ai", "@textlint/linter-formatter", "@stoprocent/noble", "@turf/boolean-disjoint", "@aws-sdk/client-personalize-events", "@turf/envelope", "@zkochan/rimraf", "rehype-highlight", "remark-external-links", "@mui/x-data-grid-pro", "flux", "@esbuild-plugins/node-globals-polyfill", "unconfig", "@algolia/events", "@tippyjs/react", "domino", "@langchain/textsplitters", "lodash.restparam", "@verdaccio/file-locking", "ts-checker-rspack-plugin", "prettier-plugin-svelte", "@newrelic/native-metrics", "@sentry/cli-linux-arm", "stylus-loader", "@mjackson/node-fetch-server", "satori", "lodash.defaultsdeep", "contentful", "fast-png", "base64-stream", "media-chrome", "@react-oauth/google", "vali-date", "@microsoft/signalr", "@hapi/subtext", "vite-plugin-node-polyfills", "@aws-sdk/util-middleware", "lodash.lowercase", "@msgpackr-extract/msgpackr-extract-darwin-arm64", "is-whitespace", "@cspell/dict-php", "@nuxt/cli", "@material-ui/types", "extendable-error", "@turf/ellipse", "@protobuf-ts/runtime-rpc", "file-stream-rotator", "jest-preset-angular", "@semantic-release/changelog", "@redux-saga/is", "mysql", "@visx/text", "@turf/center-of-mass", "@apollo/utils.createhash", "@cspell/dict-latex", "@vanilla-extract/babel-plugin-debug-ids", "@stoplight/spectral-ruleset-migrator", "pm2-axon", "@types/duplexify", "unix-crypt-td-js", "@expo/metro", "doc-path", "@rc-component/qrcode", "@turf/nearest-point", "@cspell/cspell-types", "@rc-component/mini-decimal", "@oclif/plugin-warn-if-update-available", "apollo-server-errors", "find-index", "@verdaccio/core", "@expo/ws-tunnel", "abort-controller-x", "@kamilkisiela/fast-url-parser", "@turf/combine", "object.reduce", "volar-service-html", "gifwrap", "@vue/component-compiler-utils", "@amplitude/plugin-page-url-enrichment-browser", "mjml-raw", "shx", "@turf/line-chunk", "snakecase-keys", "rlp", "parents", "@react-native/normalize-color", "@cspell/dict-companies", "@turf/boolean-equal", "@turf/bbox-clip", "concaveman", "react-highlight-words", "web-resource-inliner", "to-space-case", "@cspell/dict-csharp", "@turf/line-to-polygon", "@pkgr/utils", "nofilter", "@cspell/dict-filetypes", "@turf/explode", "@fastify/send", "@cspell/dict-en_us", "@types/react-modal", "default-compare", "@cspell/dict-public-licenses", "array-sort", "read-package-tree", "@salesforce/sf-plugins-core", "traverse-chain", "run-parallel-limit", "@types/dom-mediacapture-record", "@redux-saga/deferred", "@turf/simplify", "@types/chai-as-promised", "@types/shell-quote", "ink-text-input", "notepack.io", "@cspell/dict-django", "write-yaml-file", "cspell-trie-lib", "@sentry/cli-linux-i686", "isomorphic-git", "@types/plist", "binary-search", "@sentry/cli-win32-i686", "@segment/isodate", "tosource", "path-platform", "@cspell/dict-docker", "@tanstack/react-query-persist-client", "stubborn-utils", "fetch-mock", "parse-bmfont-ascii", "canvaskit-wasm", "@fastify/cookie", "@turf/great-circle", "minimisted", "browser-pack", "@cspell/dict-git", "scoped-regex", "postcss-syntax", "@cspell/dict-typescript", "@pnpm/read-project-manifest", "@orval/mock", "@cspell/cspell-resolver", "@cspell/dict-vue", "prop-types-exact", "@hey-api/shared", "lodash.some", "@cspell/dict-aws", "@types/lodash.mergewith", "@graphql-codegen/typescript-react-apollo", "@cspell/cspell-service-bus", "module-deps", "@secretlint/types", "obj-case", "@fastify/forwarded", "css-box-shadow", "i18next-fs-backend", "@astrojs/language-server", "@cspell/strong-weak-map", "@cspell/dict-css", "collection-map", "@segment/isodate-traverse", "babel-helper-builder-binary-assignment-operator-visitor", "@nx/vitest", "mjml-social", "@aws-amplify/auth", "highcharts-react-official", "unescape-js", "reserved", "@cspell/dict-dart", "@date-io/date-fns", "eslint-plugin-sonarjs", "@stoplight/spectral-ruleset-bundler", "snappyjs", "cspell-dictionary", "@turf/transform-translate", "slick-carousel", "mylas", "feed", "minisearch", "@upstash/ratelimit", "@cspell/dict-lorem-ipsum", "angular-eslint", "insert-module-globals", "@cspell/dict-scala", "foreachasync", "html-element-map", "@nestjs/graphql", "lsofi", "pretty", "cached-path-relative", "xdg-portable", "@turf/midpoint", "graphql-language-service", "parse-diff", "@cspell/dict-elixir", "@turf/interpolate", "geckodriver", "react-konva", "@cspell/dynamic-import", "micromark-extension-cjk-friendly-util", "@aws-sdk/client-route-53", "@turf/sample", "@fortawesome/free-regular-svg-icons", "babel-dead-code-elimination", "path2d-polyfill", "@cspell/dict-data-science", "micromark-extension-cjk-friendly", "babel-plugin-transform-async-to-generator", "focus-trap-react", "gherkin", "ml-matrix", "@js-temporal/polyfill", "@turf/standard-deviational-ellipse", "@storybook/client-api", "@marsidev/react-turnstile", "json-parse-helpfulerror", "@types/formidable", "xcase", "@turf/voronoi", "@pnpm/write-project-manifest", "to-no-case", "escape-carriage", "@turf/convex", "vue-devtools-stub", "@pnpm/lockfile.types", "babel-helper-remap-async-to-generator", "is-lite", "@graphql-codegen/introspection", "@turf/line-overlap", "@cspell/dict-swift", "@alcalzone/ansi-tokenize", "@turf/polygonize", "@turf/shortest-path", "@turf/boolean-within", "@turf/mask", "@turf/line-offset", "compression-webpack-plugin", "@turf/collect", "diff3", "@nx/cypress", "@cucumber/query", "@types/unzipper", "@turf/line-slice", "tiktoken", "@turf/clusters-dbscan", "@aws-amplify/notifications", "@pm2/agent", "@turf/point-on-feature", "orval", "@solana/buffer-layout", "@storybook/nextjs-vite", "@cspell/dict-r", "@types/find-cache-dir", "connect-redis", "@figspec/react", "js-message", "@elastic/transport", "electron-winstaller", "is-my-ip-valid", "@turf/square", "@oclif/screen", "videojs-vtt.js", "jsonata", "@solid-primitives/utils", "solid-js", "postcss-color-gray", "react-idle-timer", "cspell", "istextorbinary", "fengari", "custom-media-element", "card-validator", "react-json-view", "@amplitude/rrweb-types", "lodash.bind", "@turf/flip", "@turf/flatten", "@turf/boolean-parallel", "@turf/tesselate", "@expo/dom-webview", "@solana/web3.js", "@turf/center-mean", "@prisma/generator", "partial-json", "@hapi/heavy", "has-binary2", "@bugsnag/cuid", "@cspell/dict-en-common-misspellings", "@chakra-ui/utils", "deps-sort", "labeled-stream-splicer", "@homebridge/ciao", "@turf/bezier-spline", "remark-cjk-friendly", "eslint-plugin-jsonc", "just-debounce", "@fastify/rate-limit", "find-test-names", "astro", "asynciterator.prototype", "types-ramda", "striptags", "babel-plugin-syntax-async-functions", "@mui/x-license", "string.prototype.padstart", "ts-debounce", "easy-stack", "appium-chromedriver", "@amplitude/rrweb-utils", "expo-camera", "promise-map-series", "@nx/linter", "@nx/react", "lodash.filter", "original", "@turf/planepoint", "@mischnic/json-sourcemap", "@parcel/utils", "@bugsnag/core", "htm", "@storybook/docs-mdx", "@turf/unkink-polygon", "oxc-minify", "babel-plugin-syntax-exponentiation-operator", "@azure/opentelemetry-instrumentation-azure-sdk", "json-loader", "@lezer/cpp", "mensch", "castable-video", "@parcel/logger", "postcss-sass", "purgecss", "@cspell/dict-html", "@svgr/plugin-prettier", "rehype-prism-plus", "stacktracey", "serverless", "@pnpm/util.lex-comparator", "@aws-sdk/util-defaults-mode-browser", "@tiptap/extension-superscript", "@babel/helper-define-map", "@segment/analytics-generic-utils", "@visx/axis", "ml-array-rescale", "@cspell/dict-rust", "default-resolution", "@cspell/dict-k8s", "@volar/kit", "@turf/boolean-crosses", "@turf/line-slice-along", "read-only-stream", "@cspell/dict-gaming-terms", "@cspell/dict-ada", "ckeditor5", "@envelop/types", "@csstools/postcss-syntax-descriptor-syntax-production", "@turf/dissolve", "@electron/packager", "react-responsive", "@turf/point-grid", "@types/webpack-bundle-analyzer", "@turf/sector", "@jimp/plugin-flip", "topojson-server", "@amplitude/rrweb-packer", "@newrelic/security-agent", "@chakra-ui/anatomy", "vuedraggable", "eslint-config-expo", "@jimp/plugin-blit", "js-file-download", "@bugsnag/js", "@prisma/prisma-fmt-wasm", "@aws-sdk/util-config-provider", "knuth-shuffle", "@types/dom-webcodecs", "@reach/utils", "@vue/reactivity-transform", "@types/react-grid-layout", "htmlescape", "@textlint/resolver", "extrareqp2", "merge-anything", "eslint-plugin-ft-flow", "@expo/log-box", "@oxc-project/runtime", "babel-plugin-add-react-displayname", "@sentry-internal/node-cpu-profiler", "globalize", "@graphql-inspector/core", "hotkeys-js", "@turf/clusters", "@types/passport-local", "stream-splicer", "@turf/tag", "umd", "@turf/isolines", "@auth0/auth0-react", "@babel/plugin-bugfix-safari-rest-destructuring-rhs-array", "@turf/polygon-tangents", "sprintf-kit", "httpntlm", "clear-module", "@postman/tunnel-agent", "@turf/center-median", "promise-queue", "human-readable-ids", "@turf/concave", "to-utf8", "@hapi/somever", "ag-grid-enterprise", "@react-stately/layout", "expo-router", "cspell-gitignore", "json-schema-resolver", "denodeify", "vite-plugin-singlefile", "sf-symbols-typescript", "@turf/hex-grid", "rc-config-loader", "@oclif/linewrap", "@secretlint/config-creator", "remove-trailing-slash", "vinyl-contents", "ansi-red", "@types/chai-subset", "volar-service-typescript-twoslash-queries", "@rc-component/util", "cspell-config-lib", "@aws-sdk/util-defaults-mode-node", "@turf/square-grid", "@rsbuild/core", "@types/stream-chain", "@foliojs-fork/linebreak", "eslint-plugin-react-naming-convention", "log", "@date-fns/utc", "cwise-compiler", "piccolore", "@livekit/protocol", "@cspell/dict-julia", "eslint-import-resolver-webpack", "@rjsf/utils", "immutability-helper", "@google-cloud/run", "eslint-plugin-react-web-api", "@workos-inc/node", "@protobuf-ts/protoc", "@tyriar/fibonacci-heap", "@microsoft/applicationinsights-core-js", "postman-url-encoder", "wildcard-match", "vfile-reporter", "@astrojs/yaml2ts", "vite-plugin-vue-inspector", "@material-ui/core", "@turf/points-within-polygon", "@types/puppeteer", "impound", "graphology-types", "@wojtekmaj/date-utils", "express-exp", "curve25519-js", "proxyquire", "@cspell/cspell-json-reporter", "passport-google-oauth20", "@shuding/opentype.js", "nanotar", "@secretlint/secretlint-rule-preset-recommend", "@types/zxcvbn", "@opentelemetry/instrumentation-oracledb", "detab", "spawn-sync", "babel-plugin-transform-exponentiation-operator", "postcss-color-mod-function", "@rolldown/binding-android-arm64", "author-regex", "webfontloader", "react-calendar", "@preact/signals", "@turf/random", "@ant-design/cssinjs-utils", "convict", "eslint-plugin-react-x", "vue-bundle-renderer", "@rolldown/binding-openharmony-arm64", "get-proxy", "mousetrap", "walk", "@turf/isobands", "@tiptap/extension-collaboration", "@aws-amplify/api", "chartjs-plugin-datalabels", "@types/mkdirp", "matchdep", "only-allow", "@mixmark-io/domino", "@parcel/diagnostic", "stringstream", "@bugsnag/node", "@types/gapi", "@react-aria/virtualizer", "@hubspot/api-client", "grunt-cli", "@pm2/blessed", "@turf/turf", "langium", "expr-eval-fork", "sver-compat", "spdx-compare", "@cspell/dict-monkeyc", "@cspell/dict-fsharp", "spdx-ranges", "@storybook/testing-library", "metro-react-native-babel-preset", "@algolia/autocomplete-preset-algolia", "eslint-plugin-expo", "vfile-sort", "@rollup/wasm-node", "rst-selector-parser", "eslint-config-turbo", "ag-charts-community", "yeoman-environment", "@types/react-virtualized", "@sentry/nestjs", "react-native-pager-view", "react-native-mmkv", "@electron-forge/plugin-base", "@oclif/plugin-plugins", "aws-lambda", "@types/applepayjs", "enquire.js", "@types/eventsource", "babel-helper-explode-assignable-expression", "react-loading-skeleton", "@octokit/plugin-paginate-graphql", "@trpc/react-query", "p-memoize", "@aws-amplify/storage", "@electron/windows-sign", "@golevelup/nestjs-discovery", "pg-query-stream", "multitars", "apollo-reporting-protobuf", "@solid-primitives/static-store", "@workflow/serde", "@aws-amplify/analytics", "jest-image-snapshot", "@hapi/teamwork", "react-infinite-scroll-component", "media-tracks", "@turf/triangle-grid", "@csstools/postcss-system-ui-font-family", "@types/tunnel", "uzip", "parse-author", "bops", "cspell-io", "postinstall-postinstall", "@postman/form-data", "node-stdlib-browser", "allure-commandline", "stream-length", "skmeans", "unist-util-find-all-after", "@apollographql/apollo-tools", "@capacitor/android", "@jimp/plugin-dither", "rehype-minify-whitespace", "ng-packagr", "@mux/mux-video", "remarkable", "@cspell/url", "@solid-primitives/resize-observer", "vfile-statistics", "@types/configstore", "volar-service-yaml", "array-filter", "@types/selenium-webdriver", "html5-qrcode", "i18next-resources-to-backend", "graphology", "@aws-sdk/client-bedrock-agent-runtime", "condense-newlines", "@parcel/types", "glsl-token-string", "@aws-sdk/ec2-metadata-service", "pm2-multimeter", "@atlaskit/ds-lib", "@sanity/mutate", "@parcel/plugin", "xml-encryption", "ansi-cyan", "@pnpm/git-utils", "@parcel/events", "imagemin", "@chakra-ui/styled-system", "@ai-sdk/groq", "@ethersproject/strings", "typed-styles", "@rolldown/binding-linux-arm-gnueabihf", "@zag-js/dom-query", "iserror", "typescript-logic", "@cspell/dict-shell", "@slack/webhook", "@rolldown/binding-wasm32-wasi", "@rolldown/binding-freebsd-x64", "mocked-exports", "@types/k6", "@turf/boolean-intersects", "@csstools/postcss-position-area-property", "@nx/nx-darwin-arm64", "eslint-plugin-react-dom", "typeid-js", "apollo-server-types", "microseconds", "@types/ioredis-mock", "@nx/rollup", "plimit-lit", "jsbarcode", "@nivo/axes", "@graphql-codegen/typescript-resolvers", "vinyl-sourcemaps-apply", "@react-hook/latest", "@types/lodash.merge", "acorn-dynamic-import", "browser-image-compression", "github-username", "parenthesis", "@icons/material", "@resvg/resvg-js", "compute-lcm", "promise.prototype.finally", "puppeteer-extra-plugin-user-preferences", "event-pubsub", "undeclared-identifiers", "vite-plugin-vue-devtools", "stream-composer", "@nestjs/platform-fastify", "normalize-wheel", "@sanity/client", "@serverless/utils", "@nx/node", "thrift", "@nx/nx-linux-arm64-musl", "@csstools/convert-colors", "size-sensor", "happy-dom", "tslog", "@jimp/plugin-normalize", "babel-plugin-transform-remove-console", "grunt-legacy-util", "jsonstream-next", "@stoplight/spectral-cli", "@storybook/semver", "load-bmfont", "react-native-svg-transformer", "@orval/mcp", "@msgpackr-extract/msgpackr-extract-darwin-x64", "blurhash", "sinon-chai", "@mux/mux-player", "http-status", "lodash.identity", "@types/yoga-layout", "@solid-primitives/rootless", "use-intl", "@electron-forge/maker-base", "puppeteer-extra-plugin", "tsparticles", "@types/underscore", "@azure/ms-rest-js", "jsts", "node-simctl", "is-hex-prefixed", "@oxc-parser/binding-linux-arm64-gnu", "@nuxt/devtools-wizard", "flexsearch", "escope", "postcss-url", "@chakra-ui/theme-tools", "@types/dotenv", "health", "nice-grpc", "@cspell/dict-google", "@josephg/resolvable", "rehype-external-links", "redlock", "@types/stream-json", "glsl-inject-defines", "json-cycle", "@cspell/dict-software-terms", "drizzle-zod", "binary-search-bounds", "@material-ui/styles", "caw", "sql.js", "react-infinite-scroller", "redux-logger", "msgpack-lite", "@csstools/postcss-property-rule-prelude-list", "run-con", "puppeteer-extra-plugin-user-data-dir", "@malept/cross-spawn-promise", "react-native-keyboard-controller", "is-scoped", "@types/oauth", "@ckeditor/ckeditor5-widget", "strip-hex-prefix", "structured-clone-es", "mdast-util-newline-to-break", "sort-css-media-queries", "email-addresses", "@stencil/core", "@percy/sdk-utils", "@snowplow/browser-tracker-core", "eslint-plugin-lodash", "react-quill", "dprint-node", "redux-devtools-extension", "@stylexjs/stylex", "date-time", "@bugsnag/browser", "getobject", "eslint-plugin-react-hooks-extra", "expo-image-manipulator", "@lezer/markdown", "unraw", "mock-fs", "reinterval", "@react-pdf/stylesheet", "react-spring", "@azure/keyvault-secrets", "eslint-json-compat-utils", "@ai-sdk/amazon-bedrock", "eslint-plugin-jest-dom", "@oslojs/encoding", "tocbot", "@neoconfetti/react", "import-without-cache", "text-encoding-utf-8", "lottie-react-native", "puppeteer-extra-plugin-stealth", "@mux/mux-player-react", "@total-typescript/ts-reset", "@ai-sdk/mistral", "sister", "@oxc-minify/binding-linux-x64-gnu", "@pnpm/lockfile-types", "@azure/core-http", "path-loader", "route-recognizer", "@parcel/source-map", "appium-adb", "@welldone-software/why-did-you-render", "unplugin-vue-components", "@react-native-community/cli-plugin-metro", "glsl-token-inject-block", "@types/lodash.memoize", "require-uncached", "@cacheable/node-cache", "@parcel/fs-search", "@fastify/swagger-ui", "@fullcalendar/core", "jasmine-spec-reporter", "@swc/wasm", "esbuild-plugin-alias", "@types/ssh2-sftp-client", "@jimp/plugin-threshold", "@parcel/fs", "ably", "@appium/docutils", "expo-auth-session", "@orval/swr", "humps", "p-any", "to-px", "mjml-migrate", "@keyv/redis", "micromark-extension-cjk-friendly-gfm-strikethrough", "json-refs", "fill-keys", "react-youtube", "@types/redux-mock-store", "vitest-browser-react", "echarts-for-react", "expect-webdriverio", "block-stream", "@hapi/catbox-memory", "shortid", "@react-three/fiber", "@ckeditor/ckeditor5-clipboard", "@ecies/ciphers", "element-resize-detector", "js-sha512", "sha1", "require-relative", "@edge-runtime/cookies", "batch-processor", "@tsconfig/node20", "@prisma/dmmf", "lodash._bindcallback", "font-awesome", "@types/yup", "matchmediaquery", "@types/react-color", "@pnpm/core-loggers", "trouter", "@react-native-community/cli-hermes", "@graphiql/toolkit", "slashes", "@bufbuild/protoc-gen-es", "babel-plugin-transform-class-properties", "@types/tar-stream", "react-native-device-info", "amazon-cognito-identity-js", "@docusaurus/react-loadable", "node-object-hash", "csrf", "@eslint-react/eslint-plugin", "eslint-plugin-html", "@bugsnag/safe-json-stringify", "spdx-satisfies", "@scalar/json-magic", "@inversifyjs/core", "@inversifyjs/common", "rndm", "@react-navigation/stack", "@vimeo/player", "@rspack/cli", "@line/bot-sdk", "chrome-remote-interface", "cypress-multi-reporters", "sliced", "electron-log", "@cspell/dict-flutter", "os-paths", "css-global-keywords", "mem-fs", "@azure/msal-react", "copy-to", "html2pdf.js", "base32.js", "@temporalio/core-bridge", "grunt", "@types/google.accounts", "@applitools/utils", "@turbo/gen", "@types/secp256k1", "@renovatebot/pep440", "eslint-plugin-prefer-arrow", "@codemirror/lang-html", "@nrwl/workspace", "rx-lite-aggregates", "@typescript/analyze-trace", "uni-global", "microdiff", "@scalar/openapi-parser", "string-format", "nice-grpc-common", "@a2a-js/sdk", "@aws-sdk/s3-presigned-post", "deferred", "set-getter", "svelte-eslint-parser", "@cspell/dict-markdown", "grunt-legacy-log-utils", "@tauri-apps/api", "stylelint-prettier", "@react-aria/button", "react-router-config", "apollo-server-core", "@react-stately/checkbox", "rifm", "@types/pegjs", "@parcel/hash", "shasum-object", "chartjs-plugin-annotation", "node-pre-gyp", "multihashes", "expo-sharing", "@ndelangen/get-tarball", "@types/d3-voronoi", "@turf/distance-weight", "speakingurl", "@turf/moran-index", "@inversifyjs/reflect-metadata-utils", "css-system-font-keywords", "color-space", "ansi-sequence-parser", "@types/event-source-polyfill", "@swagger-api/apidom-core", "@types/tar", "option", "@nestjs/cache-manager", "log-driver", "yoga-layout-prebuilt", "lookup-closest-locale", "markdown-escape", "@ckeditor/ckeditor5-undo", "@lexical/extension", "typescript-compare", "@tiptap/extension-code-block-lowlight", "rollup-plugin-typescript2", "eslint-config-flat-gitignore", "eslint-plugin-tsdoc", "jks-js", "mochawesome-merge", "uniqid", "@babel/node", "@nx/nx-win32-x64-msvc", "o11y_schema", "coffee-script", "@simple-libs/child-process-utils", "@supercharge/promise-pool", "apollo-upload-client", "@zag-js/store", "@types/nunjucks", "md5-hex", "cidr-regex", "nostr-tools", "babel-preset-es2015", "@codemirror/lang-less", "@capacitor/ios", "@uiw/codemirror-themes", "@lhci/cli", "primeicons", "jest-watch-select-projects", "@microsoft/rush", "grunt-legacy-log", "css-font-size-keywords", "@types/koa__router", "jsforce", "@microsoft/teams.cards", "@sanity/diff-patch", "@yr/monotone-cubic-spline", "hyperid", "safe-compare", "@types/detect-port", "mixpanel", "@react-router/express", "modern-screenshot", "@turf/polygon-smooth", "@types/invariant", "@vercel/hydrogen", "opencode-linux-x64-baseline", "@types/nprogress", "@ckeditor/ckeditor5-enter", "@reach/observe-rect", "jsrsasign", "safaridriver", "@visx/event", "postcss-sort-media-queries", "@zxing/library", "remark-cjk-friendly-gfm-strikethrough", "@wdio/cli", "css-unit-converter", "ember-cli-version-checker", "nativewind", "cli", "react-popper-tooltip", "opencode-linux-x64-baseline-musl", "typewise-core", "@types/chance", "volar-service-emmet", "phoenix", "@lingui/core", "@scalar/openapi-upgrader", "volar-service-css", "Base64", "y-prosemirror", "extract-stack", "@opentelemetry/instrumentation-document-load", "cbor-x", "@chakra-ui/react", "@loaders.gl/loader-utils", "module-not-found-error", "@vscode/test-electron", "@parcel/cache", "is-json", "validate.js", "@snowplow/tracker-core", "@amplitude/session-replay-browser", "@effect/platform", "nconf", "@docusaurus/plugin-debug", "tinymce", "ansi-fragments", "@parcel/graph", "youtube-player", "@cspell/dict-al", "@opentelemetry/winston-transport", "sqlite-vec-linux-x64", "@opentelemetry/host-metrics", "react-signature-canvas", "@amplitude/plugin-session-replay-browser", "license-checker", "node-sass", "@mdx-js/util", "time-zone", "@sanity/types", "@ffmpeg-installer/ffmpeg", "backbone", "@tsparticles/vue2", "@types/lodash.isequal", "@fontsource/inter", "pg-hstore", "@uppy/utils", "@types/pbkdf2", "@nuxt/nitro-server", "levelup", "rehype-format", "rate-limit-redis", "@microsoft/teams.graph", "@microsoft/teams.common", "backoff", "expo-glass-effect", "@microsoft/teams.api", "launder", "@types/shelljs", "jsftp", "@fontsource/roboto", "@solana/spl-token", "eslint-plugin-svelte", "@graphql-yoga/logger", "jest-playwright-preset", "jest-when", "fishery", "mdast-squeeze-paragraphs", "number-is-integer", "log-node", "eslint-plugin-compat", "http-terminator", "is-svg-path", "@react-native/metro-config", "@fal-works/esbuild-plugin-global-externals", "uid-promise", "@zag-js/focus-visible", "istanbul", "wif", "@vercel/speed-insights", "@lottiefiles/dotlottie-web", "@docusaurus/plugin-google-tag-manager", "@nx/docker", "json-diff", "gulp-util", "@rjsf/validator-ajv8", "graphql-query-complexity", "@vercel/go", "lodash.assignin", "@react-stately/slider", "@microsoft/teams.apps", "is-png", "@ngx-translate/http-loader", "read-chunk", "@parcel/resolver-default", "react-big-calendar", "@restart/ui", "lodash._baseassign", "estree-to-babel", "@hotwired/stimulus", "html-tokenize", "mixme", "@turf/boolean-overlap", "hooker", "is-any-array", "node-uuid", "@sentry/cli-win32-arm64", "edgedriver", "react-composer", "@solana/nominal-types", "@turf/angle", "@emoji-mart/react", "@mariozechner/clipboard-linux-x64-gnu", "@whiskeysockets/baileys", "@storybook/mdx2-csf", "rollup-plugin-copy", "mouse-event-offset", "@andersbakken/blessed", "@ai-sdk/azure", "@yarnpkg/esbuild-plugin-pnp", "memfs-or-file-map-to-github-branch", "@napi-rs/canvas-darwin-arm64", "saslprep", "m3u8-parser", "lodash._createset", "@typescript/native-preview-linux-arm64", "get-canvas-context", "@types/react-google-recaptcha", "ffmpeg-static", "chromedriver", "@lezer/yaml", "@expo/rudder-sdk-node", "@babel/standalone", "dexie", "systemjs", "polka", "@turf/intersect", "@types/numeral", "add", "@ably/msgpack-js", "@turf/rectangle-grid", "@web3-storage/multipart-parser", "prebuildify", "@atlaskit/platform-feature-flags", "dashify", "babel-plugin-syntax-dynamic-import", "@walletconnect/jsonrpc-utils", "opentype.js", "@stitches/core", "sqlite-vec", "@mui/styles", "opencode-linux-x64-musl", "jschardet", "simple-bin-help", "node-watch", "@paulirish/trace_engine", "eth-lib", "eslint-plugin-yml", "@wdio/local-runner", "@visx/tooltip", "@tiptap/extension-character-count", "@gerrit0/mini-shiki", "react-dnd-touch-backend", "@actions/exec", "@appium/base-plugin", "@resvg/resvg-js-linux-x64-gnu", "postcss-mixins", "@electron/rebuild", "@twurple/auth", "@docusaurus/bundler", "@aws-sdk/client-rds", "monocart-coverage-reports", "@orval/hono", "@aws-sdk/rds-signer", "react-plaid-link", "@docusaurus/babel", "md-to-react-email", "store", "color-alpha", "@tsparticles/engine", "@types/is-function", "@postman/tough-cookie", "winreg", "@rolldown/binding-linux-s390x-gnu", "tiny-lr", "@types/lodash.throttle", "@medv/finder", "@vis.gl/react-google-maps", "@hapi/statehood", "node-jose", "@tauri-apps/cli", "jest-styled-components", "@types/expect", "@videojs/http-streaming", "well-known-symbols", "@modelcontextprotocol/ext-apps", "sass-graph", "xhr2", "apollo-server-plugin-base", "@zed-industries/codex-acp-linux-x64", "lodash.clone", "@react-types/tabs", "@codemirror/lang-sass", "clamp", "readline2", "fs-capacitor", "@ckeditor/ckeditor5-upload", "parse-git-config", "@uidotdev/usehooks", "@babel/runtime-corejs2", "@opentelemetry/api-metrics", "vuetify", "ncjsm", "sync-rpc", "rehype-remark", "@types/dom-speech-recognition", "@aws-sdk/util-waiter", "solc", "scss-tokenizer", "@wallet-standard/base", "@react-aria/checkbox", "@formatjs/cli", "@google-cloud/opentelemetry-cloud-monitoring-exporter", "graphology-utils", "@rollup/plugin-yaml", "@nx/nx-darwin-x64", "nest-winston", "ansi", "simple-statistics", "@types/eslint-visitor-keys", "create-react-context", "svg.filter.js", "expo-document-picker", "html-whitespace-sensitive-tag-names", "xml-parser-xo", "@ffmpeg-installer/linux-x64", "@vercel/ncc", "vue-resize", "@derhuerst/http-basic", "openpgp", "lodash.padstart", "is-cidr", "@statsig/js-client", "@types/is-hotkey", "@lingui/message-utils", "htmlnano", "sqlite3", "@aws-sdk/eventstream-serde-universal", "is-relative-path", "worker-timers", "react-loadable-ssr-addon-v5-slorber", "@braintree/asset-loader", "@types/async", "mocha-multi-reporters", "svg.js", "bit-twiddle", "@microsoft/applicationinsights-dependencies-js", "nssocket", "glsl-token-whitespace-trim", "grunt-known-options", "cli-progress-footer", "@videojs/vhs-utils", "@aws-sdk/eventstream-serde-node", "@lezer/xml", "volar-service-prettier", "@jsii/check-node", "lodash.uniqwith", "@asyncapi/parser", "@sanity/comlink", "isemail", "picomatch-browser", "file-url", "deferred-leveldown", "tree-sitter-json", "howler", "teex", "combine-promises", "aws-xray-sdk-core", "eslint-plugin-standard", "@material-ui/icons", "yaml-language-server", "bytes-iec", "mailgun.js", "@backstage/types", "@scalar/openapi-types", "@peculiar/x509", "@aws-sdk/eventstream-serde-browser", "@react-stately/calendar", "recyclerlistview", "@types/grecaptcha", "next-router-mock", "@sidvind/better-ajv-errors", "dev-null", "@astrojs/mdx", "@types/mssql", "@amplitude/analytics-node", "@oxc-parser/binding-linux-arm64-musl", "sequelize-cli", "static-module", "cdk-assets", "@solana/rpc-spec", "@types/reactcss", "@nestjs/apollo", "@verdaccio/utils", "@hono/zod-openapi", "@swagger-api/apidom-error", "speed-measure-webpack-plugin", "@tanstack/devtools-client", "@rolldown/binding-linux-ppc64-gnu", "braintree-web", "@react-native-community/slider", "has-gulplog", "eslint-flat-config-utils", "@aw-web-design/x-default-browser", "array-tree-filter", "@lerna/child-process", "new-github-release-url", "@emotion/server", "multicodec", "danger", "opencode-linux-x64", "lodash.reject", "bun", "react-immutable-proptypes", "@opentelemetry/sdk-trace-web", "ringbufferjs", "oxc-walker", "publint", "@types/react-highlight-words", "@pnpm/linuxstatic-x64", "vue-docgen-api", "speakeasy", "unicode-emoji-utils", "fs2", "opossum", "inngest", "@vercel/static-config", "@gitbeaker/requester-utils", "@expo/eas-build-job", "@mantine/notifications", "circular-dependency-plugin", "styled-system", "@parcel/runtime-js", "@gitbeaker/core", "rspack-resolver", "@storybook/store", "@hapi/call", "arity-n", "fast-unique-numbers", "lodash._objecttypes", "@ethersproject/contracts", "body", "@nx/playwright", "launchdarkly-react-client-sdk", "cssnano-preset-advanced", "@astrojs/react", "@cspell/dict-makefile", "@types/pug", "oauth-1.0a", "@types/resize-observer-browser", "@walletconnect/keyvaluestorage", "ast-metadata-inferer", "text-decoding", "util-promisify", "2-thenable", "@ngrx/store", "compose-function", "@solana/promises", "react-json-tree", "fileset", "@solana/functional", "@humanwhocodes/gitignore-to-minimatch", "@img/sharp-libvips-linux-ppc64", "gulp-rename", "cheap-ruler", "@opentelemetry/id-generator-aws-xray", "@ckeditor/ckeditor5-typing", "@solana/rpc", "@changesets/get-github-info", "codemirror-graphql", "memory-cache", "@applitools/driver", "@hapi/mimos", "intl-tel-input", "react-content-loader", "@verdaccio/config", "@endemolshinegroup/cosmiconfig-typescript-loader", "json-colorizer", "fast-loops", "aws-jwt-verify", "is-jpg", "@rollup/rollup-linux-powerpc64le-gnu", "graphql-tools", "@rolldown/plugin-babel", "ssr-window", "svg.resize.js", "remark-squeeze-paragraphs", "fengari-interop", "autosize", "eslint-loader", "p-some", "svg.draggable.js", "x-is-string", "@formatjs/intl-pluralrules", "@pinia/testing", "@sentry/vue", "@contentful/rich-text-react-renderer", "hogan.js", "@bomb.sh/tab", "size-limit", "@react-native/typescript-config", "stream-promise", "@langfuse/core", "@shopify/react-native-skia", "vfile-matter", "@ai-sdk/deepseek", "@secretlint/profiler", "rework", "@panva/asn1.js", "consolidated-events", "turbo-linux-arm64", "@codemirror/lang-liquid", "@serverless/platform-client", "@parcel/profiler", "timestring", "@formkit/auto-animate", "react-inlinesvg", "express-basic-auth", "strict-event-emitter-types", "babel-plugin-react-docgen", "@nx/nx-win32-arm64-msvc", "essentials", "@rollup/plugin-virtual", "@solana/kit", "@solana/rpc-subscriptions-channel-websocket", "@effect/platform-node-shared", "qrcode-generator", "@pnpm/lockfile-file", "tape", "d3-interpolate-path", "postal-mime", "@pnpm/merge-lockfile-changes", "@solana/rpc-api", "react-native-tab-view", "utif", "@applitools/spec-driver-webdriver", "jquery-ui", "@hypnosphi/create-react-context", "@solana/accounts", "world-calendars", "@secretlint/core", "gulp-sourcemaps", "@node-minify/core", "@applitools/dom-snapshot", "@styled-system/core", "@visx/bounds", "@solana/programs", "continuable-cache", "lucide-react-native", "@lezer/java", "@solana/transaction-confirmation", "rework-visit", "nanoevents", "@mui/x-tree-view", "dreamopt", "@types/pdfmake", "@react-native/eslint-plugin", "@solana/transaction-messages", "git-config-path", "modern-ahocorasick", "@zag-js/collection", "css-parse", "@types/react-slick", "dingbat-to-unicode", "infima", "get-user-locale", "@mixpanel/rrweb-snapshot", "emotion", "@size-limit/file", "@cspell/dict-java", "@stoplight/spectral-formatters", "@swagger-api/apidom-parser-adapter-asyncapi-yaml-2", "vue-component-meta", "stickyfill", "arktype", "smoothscroll-polyfill", "map-limit", "brotli-wasm", "shasum", "koa-bodyparser", "worker-timers-worker", "async-each-series", "@img/sharp-libvips-linux-riscv64", "path-posix", "@zag-js/remove-scroll", "@solana/rpc-transport-http", "better-assert", "@solana/rpc-subscriptions-spec", "precond", "binary-version", "@streamparser/json", "nestjs-cls", "dtype", "@openapitools/openapi-generator-cli", "@types/color", "node-ipc", "@jscpd/finder", "@aws-sdk/client-sagemaker-runtime", "@clerk/react", "node-fetch-commonjs", "@tsconfig/node22", "micro-memoize", "computeds", "openurl", "object-sizeof", "http-basic", "@react-aria/calendar", "minim", "matchit", "turbo-windows-64", "@foliojs-fork/pdfkit", "@ardatan/aggregate-error", "create-emotion", "@oxc-parser/binding-darwin-arm64", "toml-eslint-parser", "@d-fischer/connection", "typescript-json-schema", "@nestjs/mongoose", "tsc-watch", "vee-validate", "mpd-parser", "@tanstack/devtools-event-bus", "@stylelint/postcss-css-in-js", "@react-native-picker/picker", "pe-library", "@types/ini", "ml-array-min", "@remix-run/web-form-data", "prettier-eslint", "bytewise-core", "stream-throttle", "@swaggerexpert/json-pointer", "vite-plugin-html", "@metamask/safe-event-emitter", "react-devtools-inline", "@ngneat/falso", "@types/swagger-schema-official", "@cspell/dict-terraform", "inquirer-checkbox-plus-prompt", "proj4", "react-joyride", "@types/debounce", "@next/swc-win32-ia32-msvc", "flora-colossus", "bip39", "aws-crt", "http-cookie-agent", "@parcel/namer-default", "@react-native-masked-view/masked-view", "react-csv", "cli-ux", "@microsoft/microsoft-graph-types", "@otplib/plugin-thirty-two", "@otplib/preset-default", "@maplibre/mlt", "redux-immutable", "aes-decrypter", "broker-factory", "wait-for-expect", "d3-force-3d", "locate-app", "lerc", "third-party-capital", "flatten-vertex-data", "vue-inbrowser-compiler-independent-utils", "@pnpm/resolver-base", "@metamask/providers", "@cspell/dict-node", "@capacitor/app", "keycloak-js", "is-window", "dotgitignore", "stdout-stream", "cookies-next", "react-cookie", "worker-loader", "resp-modifier", "requestidlecallback", "react-innertext", "csprng", "@codesandbox/sandpack-react", "@browserbasehq/stagehand", "read-installed", "@rails/activestorage", "benchmark", "@types/escape-html", "@types/swagger-jsdoc", "@docusaurus/types", "airbnb-js-shims", "dev-ip", "framebus", "swagger-client", "@tanstack/devtools-ui", "release-it", "keypress", "concordance", "@jscpd/core", "@types/pino", "has-glob", "sync-request", "babel-plugin-syntax-class-properties", "babel-plugin-named-exports-order", "react-apexcharts", "geojson-rbush", "rhea", "@turf/clusters-kmeans", "@solana/subscribable", "@zag-js/combobox", "@scalar/types", "vue-chartjs", "@turf/jsts", "express-unless", "@types/react-select", "@ark/schema", "@types/fluent-ffmpeg", "@langchain/community", "i", "@types/faker", "sweetalert2", "liquid-json", "@firebase/vertexai-preview", "react-merge-refs", "sort-asc", "@serverless/dashboard-plugin", "@loaders.gl/worker-utils", "react-motion", "symbol.prototype.description", "@nx/storybook", "string.prototype.trimright", "duck", "@aws-sdk/client-api-gateway", "@types/config", "@oclif/command", "babel-plugin-extract-import-names", "@walletconnect/jsonrpc-provider", "@walletconnect/relay-api", "vega-util", "@vanilla-extract/dynamic", "@uppy/core", "load-plugin", "react-sortable-hoc", "@xterm/xterm", "@parcel/codeframe", "@foliojs-fork/restructure", "eslint-plugin-vitest", "@solana/sysvars", "@sentry/electron", "@vue/eslint-config-prettier", "driver.js", "lodash.maxby", "storybook-addon-pseudo-states", "@eslint/css-tree", "chartjs-adapter-date-fns", "jscpd", "@react-hook/intersection-observer", "copy-text-to-clipboard", "@zag-js/pagination", "hash-wasm", "browser-sync-ui", "@types/teen_process", "ts-map", "@turf/boolean-valid", "rehype-rewrite", "randomstring", "@swagger-api/apidom-ns-openapi-3-0", "string.prototype.trimleft", "@zag-js/accordion", "@t3-oss/env-core", "@react-native/eslint-config", "@tanstack/react-devtools", "react-portal", "to-vfile", "@remix-run/server-runtime", "@solana/rpc-transformers", "@mastra/schema-compat", "@ioredis/as-callback", "serialize-error-cjs", "react-native-blob-util", "tus-js-client", "@secretlint/source-creator", "@swagger-api/apidom-parser-adapter-api-design-systems-json", "broccoli-merge-trees", "ansi-color", "@types/d3-sankey", "vite-dev-rpc", "eazy-logger", "@zag-js/focus-trap", "@braintree/iframer", "@swagger-api/apidom-ns-json-schema-draft-6", "@petamoriken/float16", "@secretlint/config-loader", "@discordjs/collection", "@material/theme", "utf7", "@swagger-api/apidom-ast", "@otplib/plugin-crypto", "cross-zip", "@lottiefiles/dotlottie-react", "@types/punycode", "@docusaurus/plugin-svgr", "dotenv-flow", "amqp-connection-manager", "lodash.omitby", "@material/touch-target", "@xterm/addon-web-links", "@jscpd/tokenizer", "@ckeditor/ckeditor5-theme-lark", "uglify-es", "@azure/functions", "@amplitude/rrweb-snapshot", "@react-router/serve", "apollo-link-http-common", "deep-equal-in-any-order", "ssh2-streams", "@stdlib/assert-has-tostringtag-support", "@zag-js/tags-input", "is-immutable-type", "@cspell/dict-svelte", "@amplitude/rrweb", "cypress-wait-until", "gherkin-lint", "@swagger-api/apidom-ns-json-schema-draft-7", "color-rgba", "@ckeditor/ckeditor5-editor-multi-root", "@amplitude/analytics-connector", "@loaders.gl/schema", "@flmngr/flmngr-angular", "find-cache-directory", "memjs", "electron", "easy-extender", "chartjs-color", "@ckeditor/ckeditor5-horizontal-line", "@jscpd/html-reporter", "@swagger-api/apidom-reference", "esm-resolve", "rollup-plugin-node-resolve", "lodash._stringtopath", "jaeger-client", "@tanstack/devtools", "@material/base", "@fullcalendar/react", "@types/sortablejs", "@aws-sdk/eventstream-serde-config-resolver", "pinpoint", "@swagger-api/apidom-ns-asyncapi-2", "@types/signature_pad", "@swagger-api/apidom-parser-adapter-yaml-1-2", "@react-native-community/cli-config-apple", "then-request", "@types/jszip", "mock-socket", "@swagger-api/apidom-parser-adapter-json", "blamer", "webpack-assets-manifest", "revalidator", "@react-hook/resize-observer", "@math.gl/web-mercator", "@jpwilliams/waitgroup", "babel-plugin-apply-mdx-type-prop", "ohm-js", "streamdown", "xorshift", "rollup-plugin-esbuild", "@mastra/core", "stringify-package", "turbo-ignore", "is-in-ssh", "@dataform/core", "conventional-changelog-config-spec", "heimdalljs", "@expo/server", "liftup", "@types/googlemaps", "@types/glob-to-regexp", "@types/showdown", "detect-europe-js", "@secretlint/resolver", "soap", "object-component", "@types/postcss-modules-scope", "@ckeditor/ckeditor5-font", "@langfuse/otel", "fabric", "@turf/line-arc", "bin-wrapper", "@nx/nx-linux-arm-gnueabihf", "spacetrim", "process-utils", "@opentelemetry/context-zone-peer-dep", "is-dom", "@nevware21/ts-utils", "retimer", "path-match", "@hey-api/client-fetch", "@hexagon/base64", "parse-unit", "http-reasons", "react-swipeable", "chromium-pickle-js", "react-measure", "@nivo/arcs", "@ckeditor/ckeditor5-alignment", "@expo/apple-utils", "unist-util-inspect", "cloudinary", "brfs", "workerd", "@nivo/bar", "@metamask/rpc-errors", "temp-write", "require-at", "@types/google-libphonenumber", "@date-io/moment", "@msgpackr-extract/msgpackr-extract-linux-arm", "react-native-permissions", "@bull-board/api", "@graphql-inspector/commands", "hexer", "ua-is-frozen", "@hotwired/turbo", "ts-error", "@googlemaps/google-maps-services-js", "jstat", "p-reflect", "react-native-maps", "@uppy/store-default", "diacritics", "@cucumber/pretty-formatter", "mersenne-twister", "@electron-forge/publisher-base", "username", "webcrypto-shim", "@ckeditor/ckeditor5-editor-inline", "array-find", "dpop", "node-llama-cpp", "md5-o-matic", "geojson", "@apollo/server-plugin-landing-page-graphql-playground", "@primeuix/styled", "caniuse-db", "@expo/logger", "promise-worker-transferable", "@wagmi/connectors", "broccoli-persistent-filter", "glslify", "@styled-system/css", "bs-recipes", "@aws-sdk/util-utf8", "eslint-plugin-jest-formatting", "@nuxt/devtools", "@foliojs-fork/fontkit", "@material/icon-button", "useragent", "ci-parallel-vars", "angular-html-parser", "env-var", "@styled-system/border", "@apollo/subgraph", "vite-plugin-full-reload", "react-native-view-shot", "eslint-plugin-only-warn", "@types/json-logic-js", "@styled-system/typography", "@effect/schema", "@orval/query", "bin-build", "@orval/axios", "p-transform", "@ai-sdk/mcp", "@rushstack/package-deps-hash", "@zag-js/switch", "path-name", "@electron-forge/tracer", "@wolfy1339/lru-cache", "comver-to-semver", "@ckeditor/ckeditor5-essentials", "glsl-resolve", "@changesets/changelog-github", "line-column", "prompt", "@zag-js/number-input", "@electron-forge/cli", "flairup", "@electron-forge/template-webpack", "serialize-to-js", "@nestjs/serve-static", "glob2base", "@libsql/hrana-client", "@swagger-api/apidom-parser-adapter-openapi-json-2", "eth-rpc-errors", "@storybook/channel-websocket", "@aws-sdk/md5-js", "@zag-js/tree-view", "is-browser", "@openrouter/ai-sdk-provider", "ts-mocha", "code-red", "@hookform/error-message", "@intlify/devtools-types", "mjml-divider", "keychain", "react-debounce-input", "unifont", "nestjs-pino", "@ckeditor/ckeditor5-remove-format", "vite-plugin-mkcert", "@types/klaw", "bippy", "mgrs", "quote-stream", "tightrope", "@types/mjml", "ce-la-react", "@ckeditor/ckeditor5-code-block", "@types/topojson-specification", "intl", "typescript-language-server", "@serverless/event-mocks", "broccoli-output-wrapper", "rust-result", "oboe", "postman-collection-transformer", "@types/mjml-core", "@effect/platform-node", "is-empty", "@braintree/event-emitter", "cva", "@docusaurus/plugin-css-cascade-layers", "markdownlint-cli2", "babel-preset-env", "@electron-forge/template-base", "@ag-ui/core", "wkt-parser", "postmark", "@wallet-standard/app", "@ckeditor/ckeditor5-paragraph", "eslint-plugin-local-rules", "@zxcvbn-ts/core", "@vue/babel-sugar-composition-api-inject-h", "@ckeditor/ckeditor5-highlight", "@javascript-obfuscator/estraverse", "envify", "@okta/okta-auth-js", "unified-engine", "@ckeditor/ckeditor5-html-embed", "watch", "@styled-system/grid", "@storybook/preview-web", "ev-emitter", "@stdlib/assert-is-buffer", "@ckeditor/ckeditor5-page-break", "@codesandbox/sandpack-client", "@gwhitney/detect-indent", "@react-native-clipboard/clipboard", "stringz", "@ckeditor/ckeditor5-html-support", "stylis-rule-sheet", "partysocket", "@orval/fetch", "@rive-app/canvas", "openapi-path-templating", "nanoassert", "@rushstack/rush-sdk", "ts-poet", "accept-language-parser", "@hapi/file", "@ariakit/react", "react-floater", "format-util", "browser-sync-client", "remotion", "bigint-buffer", "@formatjs/ts-transformer", "@graphql-codegen/fragment-matcher", "@modern-js/node-bundle-require", "@stryker-mutator/core", "@dimforge/rapier3d-compat", "tmcp", "google-artifactregistry-auth", "express-http-proxy", "level-supports", "cron-schedule", "@braintree/extended-promise", "@ckeditor/ckeditor5-editor-decoupled", "@swagger-api/apidom-parser-adapter-arazzo-json-1", "@stdlib/utils-constructor-name", "@stdlib/utils-global", "@0no-co/graphqlsp", "new-find-package-json", "sylvester", "intl-pluralrules", "bcp-47-normalize", "chartjs-color-string", "@styled-system/variant", "env-string", "find-requires", "@types/draft-js", "thriftrw", "emojibase", "postcss-message-helpers", "tailwind-scrollbar", "@monogrid/gainmap-js", "@types/base16", "react-ace", "@azu/format-text", "@rollup/rollup-linux-loongarch64-gnu", "replacestream", "bip32", "@oxc-minify/binding-linux-x64-musl", "@ckeditor/ckeditor5-source-editing", "@ckeditor/ckeditor5-word-count", "@electron-forge/template-webpack-typescript", "@middy/core", "@nivo/line", "@zag-js/carousel", "@types/sinon-chai", "ts-md5", "@ckeditor/ckeditor5-language", "appium-ios-simulator", "@orval/angular", "@ckeditor/ckeditor5-list", "imap", "vega-expression", "path2", "localtunnel", "@ckeditor/ckeditor5-markdown-gfm", "@nivo/voronoi", "contentful-resolve-response", "unplugin-auto-import", "heimdalljs-logger", "@ckeditor/ckeditor5-style", "@stryker-mutator/util", "@electron-forge/core", "fastparallel", "tap-parser", "@ckeditor/ckeditor5-restricted-editing", "@ckeditor/ckeditor5-autosave", "@publint/pack", "in-publish", "svgpath", "@material/data-table", "@javascript-obfuscator/escodegen", "@stryker-mutator/instrumenter", "cssauron", "remark-mdx-frontmatter", "@aws-sdk/client-scheduler", "topo", "npm-check-updates", "@ucast/mongo2js", "@neondatabase/serverless", "react-imask", "@types/clean-css", "@napi-rs/cli", "@types/braintree-web", "@opentelemetry/exporter-jaeger", "@material/dom", "@ckeditor/ckeditor5-editor-balloon", "@svgr/cli", "junit-report-builder", "@swagger-api/apidom-parser-adapter-arazzo-yaml-1", "lodash.pad", "@googleapis/sheets", "expo-video", "@fullcalendar/list", "@types/ncp", "@turf/tin", "smtp-address-parser", "@cspell/cspell-pipe", "regl", "path-equal", "@netlify/serverless-functions-api", "@zkochan/cmd-shim", "afinn-165", "@mui/x-date-pickers-pro", "newtype-ts", "@rails/ujs", "@duckdb/node-bindings", "typescript-tuple", "@ckeditor/ckeditor5-select-all", "@nx/nx-freebsd-x64", "apollo-link-http", "@deca-ui/react", "@types/postcss-modules-local-by-default", "typescript-plugin-css-modules", "postcss-prefix-selector", "stylelint-config-prettier", "gm", "@loaders.gl/images", "@types/jest-when", "pagefind", "@nx/esbuild", "@ngrx/effects", "@ngrx/store-devtools", "monocle-ts", "@mui/x-charts", "node-downloader-helper", "react-avatar-editor", "@styled-system/layout", "browser-sync", "bootstrap-icons", "@cspell/dict-kotlin", "agents", "aws4fetch", "isolated-vm", "hermes-profile-transformer", "nats", "@intlify/bundle-utils", "natural", "@pulumi/pulumi", "injection-js", "@ledgerhq/devices", "@zag-js/collapsible", "pegjs", "loglevel-colored-level-prefix", "istanbul-api", "gettext-parser", "@braze/web-sdk", "@duckdb/node-api", "@uppy/companion-client", "find-cypress-specs", "@stitches/react", "@cypress/code-coverage", "@docusaurus/utils", "@aws-lambda-powertools/logger", "swagger-schema-official", "ismobilejs", "@aws-sdk/util-retry", "serialize-query-params", "number-to-bn", "@ckeditor/ckeditor5-heading", "errlop", "@langchain/anthropic", "jshint", "apollo-server-express", "jest-transform-stub", "@types/lodash.clonedeep", "npm-profile", "mdast-util-compact", "tiny-worker", "@parcel/packager-html", "lodash._baseiteratee", "broccoli-funnel", "reading-time", "multiparty", "@reach/auto-id", "@ide/backoff", "@maplibre/geojson-vt", "minio", "deeks", "console-grid", "polybooljs", "@material/animation", "cli-columns", "is-odd", "@nx/plugin", "clap", "@parcel/transformer-image", "@types/dateformat", "@types/jasminewd2", "@tensorflow/tfjs-core", "rss-parser", "@parcel/transformer-postcss", "mutation-testing-report-schema", "@docusaurus/core", "@ariakit/core", "clean-git-ref", "embla-carousel-fade", "@nx/rspack", "@codemirror/lang-cpp", "@expo/multipart-body-parser", "@sentry/cloudflare", "semaphore", "turbo-windows-arm64", "moment-duration-format", "zenscroll", "@ckeditor/ckeditor5-editor-classic", "@types/format-util", "@gulpjs/to-absolute-glob", "@ai-sdk/cerebras", "@aws-sdk/middleware-endpoint", "eslint-plugin-check-file", "@parcel/package-manager", "@react-native-firebase/messaging", "@tmcp/adapter-valibot", "@nevware21/ts-async", "select2", "enzyme-adapter-utils", "rcedit", "@google/gemini-cli", "@nx/angular", "@mendable/firecrawl-js", "@ckeditor/ckeditor5-minimap", "@bufbuild/buf", "@types/topojson-client", "hotscript", "@opentelemetry/instrumentation-user-interaction", "uid-number", "@graphql-inspector/logger", "@intlify/unplugin-vue-i18n", "@ckeditor/ckeditor5-table", "@storybook/addon-designs", "launch-editor-middleware", "ember-cli-babel", "typedarray-pool", "@rc-component/motion", "po-parser", "@opennextjs/cloudflare", "properties-file", "@levischuck/tiny-cbor", "array-series", "cspell-grammar", "@docusaurus/logger", "@vanilla-extract/sprinkles", "@solid-primitives/keyboard", "@reown/appkit-common", "@swagger-api/apidom-ns-arazzo-1", "react-medium-image-zoom", "svg.easing.js", "css-tokenize", "robot3", "@codemirror/lang-markdown", "@lezer/python", "lz-utils", "@base-org/account", "@prisma/schema-files-loader", "simplebar-react", "npm-user-validate", "splaytree-ts", "react-input-mask", "@connectrpc/connect", "@tmcp/transport-http", "@reown/appkit-wallet", "@tiptap/html", "@svgdotjs/svg.js", "@stdlib/number-ctor", "cli-sprintf-format", "@docusaurus/utils-validation", "console-log-level", "@types/isomorphic-fetch", "@types/dom-mediacapture-transform", "@reown/appkit-polyfills", "css-font-style-keywords", "normalizr", "@emmetio/scanner", "@types/passport-google-oauth20", "@napi-rs/canvas-linux-arm-gnueabihf", "quick-temp", "eslint-plugin-json", "@docusaurus/plugin-google-analytics", "ink-select-input", "@storybook/addon-webpack5-compiler-swc", "react-native-share", "tabtab", "@unhead/schema", "@vue/babel-sugar-functional-vue", "@colordx/core", "@apollo/federation-internals", "@parcel/markdown-ansi", "@types/passport-oauth2", "webgl-context", "@types/mixpanel-browser", "@techteamer/ocsp", "@styled-system/background", "@docusaurus/utils-common", "postman-runtime", "@stdlib/array-float32", "eslint-processor-vue-blocks", "reflect.ownkeys", "playwright-extra", "@reown/appkit", "@rspack/binding-linux-arm64-gnu", "to-camel-case", "apparatus", "@docusaurus/module-type-aliases", "@reown/appkit-controllers", "@activepieces/shared", "component-indexof", "snappy", "@aws-sdk/eventstream-codec", "@standard-community/standard-json", "level-iterator-stream", "@babel/helper-builder-react-jsx", "@antv/util", "@braintree/browser-detection", "@formatjs/intl-getcanonicallocales", "@zag-js/scroll-snap", "@date-io/dayjs", "libnpmorg", "ml-array-max", "@material-ui/lab", "broccoli-babel-transpiler", "express-jwt", "@httptoolkit/websocket-stream", "browserstack", "convex", "zstd-codec", "lodash._basevalues", "@connectrpc/connect-web", "react-native-drawer-layout", "verdaccio-htpasswd", "@styled-system/color", "gpt-tokenizer", "@solana/buffer-layout-utils", "react-scroll", "@ucast/core", "@types/react-copy-to-clipboard", "@resvg/resvg-wasm", "summary", "react-plotly.js", "@types/base64-stream", "enzyme-adapter-react-16", "newman", "jsdom-global", "@verdaccio/ui-theme", "@styled-system/position", "appium-uiautomator2-server", "aws-amplify", "expo-audio", "mux.js", "@ckeditor/ckeditor5-autoformat", "@types/mime-db", "mediabunny", "add-dom-event-listener", "generate-password", "@zag-js/floating-panel", "@types/plotly.js", "@ckeditor/ckeditor5-indent", "@gilbarbara/deep-equal", "@ckeditor/ckeditor5-block-quote", "@napi-rs/nice-linux-arm64-musl", "emitter-component", "react-simple-code-editor", "typed-inject", "@pnpm/text.comments-parser", "lodash.unescape", "@rc-component/picker", "node-oauth1", "@types/lockfile", "bufrw", "@pact-foundation/pact-core", "@cspell/dict-en-gb-mit", "@secretlint/node", "use-subscription", "@orama/orama", "@vue/babel-sugar-v-on", "@walletconnect/relay-auth", "@testcontainers/postgresql", "@types/websocket", "intl-format-cache", "pg-minify", "@ckeditor/ckeditor5-paste-from-office", "@docusaurus/mdx-loader", "@react-native-community/cli-config-android", "is-base64", "tarjan-graph", "@hotwired/turbo-rails", "url-value-parser", "@styled-system/flexbox", "lifecycle-utils", "expo-doctor", "@stryker-mutator/api", "secure-keys", "verdaccio-audit", "@oxc-parser/binding-darwin-x64", "@types/flat", "@walletconnect/ethereum-provider", "react-window-infinite-loader", "@babel/helper-regex", "strip-comments-strings", "levenary", "@parcel/core", "leaflet.markercluster", "@docusaurus/cssnano-preset", "react-server-dom-webpack", "verdaccio", "@zag-js/types", "@pinia/nuxt", "lodash.intersection", "napi-macros", "plotly.js", "@jsamr/counter-style", "regl-splom", "@zkochan/which", "lodash.transform", "react-gtm-module", "@slorber/react-helmet-async", "dot", "@stdlib/string-base-format-interpolate", "karma-coverage-istanbul-reporter", "tsafe", "imapflow", "tiny-relative-date", "@types/mv", "ts-custom-error", "geotiff", "rollup-plugin-commonjs", "@safe-global/safe-apps-sdk", "@oxc-parser/binding-win32-x64-msvc", "findit2", "react-linkify", "@primeuix/styles", "njwt", "@backstage/cli-common", "@aws-sdk/cloudfront-signer", "fn-name", "@vue/babel-sugar-inject-h", "react-responsive-carousel", "mutation-testing-elements", "@reown/appkit-pay", "svg-path-sdf", "@glimmer/util", "json-source-map", "cache-loader", "event-lite", "geojson-equality-ts", "@styled-system/space", "headers-utils", "@types/react-router-config", "@types/axios", "@amplitude/ua-parser-js", "wavesurfer.js", "manage-path", "@zxcvbn-ts/language-common", "axe-html-reporter", "lodash.values", "react-native-edge-to-edge", "url-polyfill", "libsql", "@types/find-root", "@messageformat/date-skeleton", "react-native-render-html", "@types/symlink-or-copy", "io-ts-types", "@electron-forge/maker-zip", "@remix-run/node", "@stdlib/assert-has-uint32array-support", "@vue/cli-shared-utils", "optional-require", "countup.js", "@zag-js/angle-slider", "@types/json2csv", "beeper", "react-async-script", "@docusaurus/plugin-content-docs", "react-immutable-pure-component", "@netlify/functions", "@wdio/runner", "@stylelint/postcss-markdown", "@opencensus/core", "weapon-regex", "@codemirror/lang-rust", "array-range", "markdownlint-cli", "events-listener", "stopwords-iso", "@secretlint/formatter", "@solana/addresses", "@verdaccio/streams", "@ai-sdk/perplexity", "@base-ui/utils", "@rc-component/tooltip", "heic2any", "metro-react-native-babel-transformer", "@vue/babel-preset-jsx", "@opentelemetry/context-zone", "@parcel/transformer-js", "karma-junit-reporter", "@nivo/pie", "swrv", "@eslint-react/eff", "json-rpc-engine", "@tsconfig/svelte", "@wdio/spec-reporter", "@vue/babel-plugin-transform-vue-jsx", "velocityjs", "unleash-client", "bitcoinjs-lib", "@types/ndarray", "broccoli-node-api", "contentful-management", "@napi-rs/canvas-android-arm64", "math-log2", "@types/jest-image-snapshot", "@parcel/reporter-dev-server", "hi-base32", "json-2-csv", "parse-imports", "@expo/pkcs12", "node-api-version", "@vue/babel-sugar-v-model", "@coral-xyz/borsh", "@types/eslint__js", "@parcel/bundler-default", "@bazel/runfiles", "@parcel/packager-raw", "@tailwindcss/aspect-ratio", "@parcel/packager-js", "@parcel/transformer-json", "@oclif/parser", "ethjs-util", "@coinbase/wallet-sdk", "libnpmsearch", "babelify", "@ckeditor/ckeditor5-ckfinder", "json-schema-to-zod", "@docusaurus/theme-common", "@graphql-codegen/typescript-graphql-request", "@metamask/sdk-communication-layer", "@ckeditor/ckeditor5-cloud-services", "@lifeomic/attempt", "react-sizeme", "@mux/mux-data-google-ima", "eslint-plugin-chai-friendly", "web3-providers-ipc", "yaml-loader", "@iconify/vue", "byte-counter", "markdown-it-emoji", "cargo-cp-artifact", "has-color", "binary-version-check", "tiny-secp256k1", "stats-gl", "@ckeditor/ckeditor5-easy-image", "re2js", "commitlint", "@salesforce/ts-types", "expo-server-sdk", "video.js", "uvm", "logrocket", "@lezer/rust", "cucumber-html-reporter", "expo-apple-authentication", "@formatjs/intl-locale", "@tiptap/vue-3", "create-vite", "@fullstory/snippet", "proxy-middleware", "output-file-sync", "@eslint/markdown", "properties", "@docusaurus/theme-translations", "ndarray-ops", "broccoli-source", "pg-promise", "make-error-cause", "@metamask/json-rpc-engine", "broccoli-node-info", "commonmark", "wordnet-db", "react-ga4", "opencv-bindings", "eslint-plugin-deprecation", "cypress-terminal-report", "@walletconnect/safe-json", "@github/copilot-linux-x64", "nomnom", "@material/feature-targeting", "@tiptap/extension-subscript", "@ucast/js", "@types/paypal-checkout-components", "@verdaccio/logger-commons", "browser-tabs-lock", "@iconify/react", "little-state-machine", "@growthbook/growthbook", "uglifyjs-webpack-plugin", "css-font", "os", "draw-svg-path", "hast", "global-tunnel-ng", "change-emitter", "dropzone", "@types/react-virtualized-auto-sizer", "remark-html", "react-simple-animate", "@vue/babel-helper-vue-jsx-merge-props", "@types/rbush", "@gsap/react", "nwmatcher", "@backstage/catalog-model", "swagger-ui-react", "powershell-utils", "webpack-chain", "symlink-or-copy", "@chakra-ui/theme", "eslint-plugin-import-lite", "@typescript/native-preview-darwin-arm64", "skills", "@pnpm/crypto.polyfill", "@aws-sdk/client-textract", "devtools", "@plotly/point-cluster", "linkify-react", "react-spinners", "web3-eth-iban", "index-array-by", "atomic-batcher", "@types/date-arithmetic", "@codemirror/lang-xml", "turbo-darwin-64", "@jitl/quickjs-wasmfile-debug-asyncify", "cypress-axe", "prism-media", "@prettier/plugin-xml", "@remotion/player", "afinn-165-financialmarketnews", "@codemirror/lang-sql", "lcov-parse", "@libsql/isomorphic-fetch", "@braintree/uuid", "@types/follow-redirects", "graphql-playground-html", "jsonp", "with-open-file", "libnpmteam", "@atlaskit/pragmatic-drag-and-drop-hitbox", "termi-link", "locutus", "@types/react-big-calendar", "@stdlib/string-base-format-tokenize", "dag-map", "datatables.net", "brcast", "pofile", "@cspell/dict-zig", "braintrust", "ripple-address-codec", "@oclif/table", "transliteration", "imagemin-svgo", "@types/reach__router", "@thi.ng/errors", "npm-audit-report", "@tiptap/extension-font-family", "@hey-api/types", "@types/xml-encryption", "@oclif/plugin-update", "options", "@microsoft/applicationinsights-cfgsync-js", "@swagger-api/apidom-ns-json-schema-2020-12", "@portabletext/toolkit", "encode-registry", "is-firefox", "standard-version", "@verdaccio/url", "@zag-js/popover", "@turbo/workspaces", "h3-js", "webpack-filter-warnings-plugin", "webdriver-manager", "vue-virtual-scroller", "@cypress/grep", "@as-integrations/express5", "lossless-json", "react-phone-input-2", "@reach/portal", "@azure/monitor-opentelemetry-exporter", "@zag-js/avatar", "expo-local-authentication", "@larksuiteoapi/node-sdk", "@amplitude/targeting", "@ionic/utils-terminal", "flowbite", "appium", "@salesforce/kit", "@yarnpkg/core", "expo-av", "@astrojs/prism", "react-simple-maps", "@vanilla-extract/webpack-plugin", "web3-providers-http", "autosuggest-highlight", "@svgdotjs/svg.resize.js", "p-settle", "@zag-js/date-utils", "@types/common-tags", "@vercel/edge", "@types/enzyme", "launchdarkly-node-server-sdk", "tunnel-rat", "@t3-oss/env-nextjs", "@types/serve-favicon", "@assistant-ui/react", "eslint-config-standard-with-typescript", "@verdaccio/loaders", "@walletconnect/jsonrpc-types", "posthog-js", "@yarnpkg/shell", "@vitejs/plugin-legacy", "next-mdx-remote", "@zag-js/file-utils", "@nx/nest", "zhead", "@applitools/image", "autocannon", "@verdaccio/middleware", "ibm-cloud-sdk-core", "@radix-ui/react-password-toggle-field", "@walletconnect/window-metadata", "@pagefind/linux-x64", "@verdaccio/tarball", "@types/markdown-escape", "@types/lodash.camelcase", "@snowplow/browser-tracker", "@vue/babel-sugar-composition-api-render-instance", "react-native-linear-gradient", "expose-loader", "just-curry-it", "is-html", "chat", "pad-component", "@headlessui/tailwindcss", "@azure/arm-appservice", "lenis", "lokijs", "timezone-mock", "@docusaurus/plugin-content-blog", "debug-fabulous", "@docusaurus/plugin-content-pages", "rollup-plugin-babel", "koa-is-json", "@turbo/linux-arm64", "@applitools/socket", "cosmiconfig-toml-loader", "@types/sharp", "find-parent-dir", "@types/relateurl", "eslint-formatter-pretty", "native-request", "@material/rtl", "detective-less", "appium-webdriveragent", "addressparser", "@docusaurus/plugin-google-gtag", "awesome-phonenumber", "@n1ru4l/push-pull-async-iterable-iterator", "@zag-js/scroll-area", "react-router-dom-v5-compat", "primeng", "@docusaurus/theme-classic", "lodash._basecreate", "read-binary-file-arch", "@zag-js/async-list", "electron-builder", "jscpd-sarif-reporter", "@mui/x-telemetry", "@swagger-api/apidom-json-pointer", "glslify-bundle", "currency.js", "@docusaurus/plugin-sitemap", "@mdi/font", "@emotion/styled-base", "mouse-wheel", "@biomejs/cli-linux-arm64", "@types/babel-types", "sass-embedded-linux-arm64", "@docusaurus/preset-classic", "@stdlib/assert-has-float64array-support", "@pnpm/patching.types", "@mui/x-virtualizer", "mobx-utils", "@docusaurus/theme-search-algolia", "cross-argv", "@googlemaps/url-signature", "@pact-foundation/pact", "char-spinner", "jsencrypt", "@rc-component/resize-observer", "@react-spring/native", "@cspell/rpc", "binascii", "yosay", "@mdxeditor/gurx", "web3-eth-abi", "@ng-bootstrap/ng-bootstrap", "python-struct", "@verdaccio/logger-prettify", "@fortawesome/free-brands-svg-icons", "e2b", "@azure/arm-resources", "@chakra-ui/react-utils", "@types/bootstrap", "@svgdotjs/svg.draggable.js", "react-from-dom", "@bull-board/express", "scrollparent", "protractor", "@verdaccio/logger", "@bufbuild/buf-linux-x64", "@expo/eas-json", "matrix-events-sdk", "multipasta", "lodash._reescape", "@storybook/addon-mcp", "node.extend", "@expo/steps", "plaid", "is-running", "@amplitude/analytics-remote-config", "@stdlib/utils-native-class", "murmurhash", "humanize-string", "@node-saml/node-saml", "chokidar-cli", "ipx", "@material/ripple", "@rc-component/image", "imports-loader", "@types/webextension-polyfill", "telegraf", "@acuminous/bitsyntax", "@types/gradient-string", "@mongodb-js/zstd", "pop-iterate", "promise-coalesce", "@langchain/classic", "semver-intersect", "varuint-bitcoin", "@tiptap/extension-typography", "expo-network", "npm-path", "zstddec", "@microsoft/applicationinsights-common", "@nuxt/eslint-config", "@types/css-tree", "lodash._baseuniq", "@metamask/eth-json-rpc-provider", "spex", "enzyme-to-json", "rhea-promise", "@types/method-override", "point-in-polygon-hao", "atob-lite", "lodash._reevaluate", "@zag-js/core", "leb", "nest-commander", "markdownlint-cli2-formatter-default", "teleport-javascript", "countries-list", "@netlify/blobs", "eslint-plugin-no-unsanitized", "@walletconnect/jsonrpc-http-connection", "unplugin-swc", "test-value", "@verdaccio/signature", "cuid", "parse-duration", "@bundled-es-modules/deepmerge", "unzip-stream", "@types/gapi.client", "@docusaurus/tsconfig", "use-immer", "@testing-library/vue", "ltgt", "worker-factory", "@storybook/vue3", "asyncbox", "jasminewd2", "libnpmpack", "@types/is-empty", "@primeuix/themes", "@flatten-js/interval-tree", "@solana/wallet-standard-chains", "svg.pathmorphing.js", "@types/graphql", "@stdlib/math-base-assert-is-nan", "@graphql-inspector/loaders", "google-proto-files", "@redux-devtools/extension", "iota-array", "slate-dom", "docx-preview", "@cspell/dict-sql", "react-native-localize", "array-parallel", "emnapi", "level-js", "@contentful/content-source-maps", "apache-crypt", "@napi-rs/canvas-linux-riscv64-gnu", "gradle-to-js", "esbuild-linux-arm64", "@types/svgo", "is-alphanumeric", "@ckeditor/ckeditor5-ckbox", "io.appium.settings", "react-native-swipe-gestures", "can-use-dom", "loader-fs-cache", "mout", "@capacitor/status-bar", "@fingerprintjs/fingerprintjs", "@turf/geojson-rbush", "@napi-rs/nice-win32-x64-msvc", "appium-remote-debugger", "@atlaskit/pragmatic-drag-and-drop", "application-config-path", "require-and-forget", "ag-charts-core", "@material/typography", "@angular/platform-server", "textarea-caret", "@vuetify/loader-shared", "grammex", "oxlint-tsgolint", "eslint-config-standard-jsx", "@math.gl/polygon", "gh-got", "@napi-rs/nice-darwin-arm64", "fs-jetpack", "@safe-global/safe-apps-provider", "walk-back", "datadog-lambda-js", "@secretlint/secretlint-formatter-sarif", "saucelabs", "vis-data", "@openapi-contrib/openapi-schema-to-json-schema", "eslint-plugin-babel", "@ledgerhq/errors", "@sanity/sdk", "dom7", "@types/aws4", "ripple-keypairs", "@types/http-proxy-middleware", "dom-mutator", "@tanstack/devtools-vite", "@ag-grid-community/core", "@cspotcode/source-map-consumer", "@vscode/test-cli", "@loadable/component", "@verdaccio/auth", "rollup-plugin-sourcemaps", "remark-github-blockquote-alert", "ahooks", "javascript-obfuscator", "@backstage/plugin-permission-common", "@react-spring/konva", "axios-cookiejar-support", "eth-block-tracker", "@types/jsftp", "http-auth", "@openai/codex-sdk", "@soda/friendly-errors-webpack-plugin", "react-instantsearch-core", "@types/stack-trace", "appium-ios-device", "@aws-amplify/data-schema-types", "mkdirp-promise", "@lerna/run-lifecycle", "@react-native-google-signin/google-signin", "@solana-mobile/mobile-wallet-adapter-protocol", "flags", "express-async-errors", "canvas-fit", "@rspack/binding-darwin-arm64", "short-uuid", "uuidv4", "@datadog/datadog-ci-plugin-coverage", "@aws-amplify/data-schema", "@mapbox/polyline", "react-timeago", "@aws-sdk/hash-stream-node", "temp-file", "typesense", "@types/is-ci", "@pnpm/pick-fetcher", "@protobuf-ts/plugin", "@types/kdbush", "d3-binarytree", "@lmdb/lmdb-win32-x64", "@types/moment-timezone", "svelte-toolbelt", "@amplitude/experiment-js-client", "@types/less", "@ariakit/react-core", "uint8array-tools", "@lezer/go", "maxmind", "vite-plugin-vuetify", "@swagger-api/apidom-ns-asyncapi-3", "@types/ip", "@storybook/builder-webpack4", "pg-boss", "@stdlib/utils-type-of", "eslint-rule-docs", "@replit/vite-plugin-cartographer", "array-map", "ethereum-bloom-filters", "@google-cloud/logging-winston", "events-to-array", "@zag-js/password-input", "@appium/tsconfig", "react-use-intercom", "lodash.toarray", "@zag-js/anatomy", "mutation-testing-metrics", "pg-format", "@types/web", "array-reduce", "recompose", "@rc-component/menu", "viem", "mouse-event", "@types/chart.js", "country-regex", "spdx-license-list", "vega-typings", "typeforce", "dashjs", "@lerna/github-client", "quickjs-emscripten", "override-require", "vis-network", "@astrojs/node", "@fastify/otel", "@lingui/babel-plugin-extract-messages", "@rc-component/tree", "@zag-js/signature-pad", "true-myth", "glsl-tokenizer", "@metamask/sdk", "@rc-component/tabs", "gulp-sort", "groq-sdk", "umask", "jest-sonar-reporter", "eventemitter-asyncresource", "@lit/context", "priorityqueuejs", "@oxc-parser/binding-wasm32-wasi", "@solana/spl-token-group", "@opentelemetry/otlp-proto-exporter-base", "@zag-js/marquee", "ts-object-utils", "@stdlib/string-replace", "lorem-ipsum", "@zag-js/element-size", "bezier-js", "@rushstack/heft-config-file", "twig", "@types/node-int64", "@amplitude/plugin-custom-enrichment-browser", "@backstage/config", "del-cli", "@hookform/devtools", "emotion-theming", "@cosmjs/crypto", "babel-plugin-lodash", "@rc-component/input", "@nrwl/jest", "videojs-contrib-quality-levels", "@lerna/global-options", "eth-ens-namehash", "@browserbasehq/sdk", "@swagger-api/apidom-parser-adapter-asyncapi-json-3", "lightweight-charts", "pixi.js", "browserstack-local", "parse-github-repo-url", "rc-animate", "@zag-js/qr-code", "bits-ui", "numbro", "lodash.without", "@testcontainers/redis", "rehype-ignore", "web3", "@codemirror/lang-go", "@headlessui/vue", "@open-wc/dedupe-mixin", "@ibm-cloud/watsonx-ai", "guid-typescript", "fancy-canvas", "@amplitude/engagement-browser", "libnpmexec", "to-valid-identifier", "libnpmdiff", "@uiw/copy-to-clipboard", "date-arithmetic", "morphdom", "@microsoft/applicationinsights-shims", "toastify-react-native", "meant", "@openzeppelin/contracts", "svg-pan-zoom", "focus-visible", "@types/json-stringify-safe", "slow-redact", "@cdktf/hcl2json", "webdriver-js-extender", "maxmin", "@libsql/linux-x64-musl", "babel-plugin-transform-flow-strip-types", "babel-plugin-syntax-flow", "@chakra-ui/hooks", "ripple-binary-codec", "@bundled-es-modules/glob", "@sanity/ui", "@types/speakeasy", "@material/elevation", "@nestjs/bull", "@hocuspocus/provider", "@chakra-ui/icon", "eslint-plugin-header", "@napi-rs/tar", "@mui/material-nextjs", "@types/react-resizable", "eslint-merge-processors", "@oxc-parser/binding-linux-s390x-gnu", "native-run", "assistant-cloud", "flag-icons", "@75lb/deep-merge", "prettier-plugin-astro", "fastfall", "@zag-js/steps", "vega-event-selector", "@tanstack/vue-table", "babel-plugin-syntax-decorators", "express-prom-bundle", "@huggingface/transformers", "@opennextjs/aws", "react-native-vision-camera", "vite-plugin-vue-tracer", "@ledgerhq/hw-transport", "@types/recharts", "@graphql-codegen/typescript-react-query", "base64-url", "@jscpd/badge-reporter", "git-rev-sync", "double-ended-queue", "dedent-js", "posthog-react-native", "react-native-modal", "@oxlint/binding-linux-arm64-gnu", "breakword", "react-countup", "@types/mousetrap", "@aws-sdk/client-athena", "countries-and-timezones", "chain-function", "@base-ui/react", "@hcaptcha/react-hcaptcha", "babel-extract-comments", "buffer-json", "@backstage/errors", "@solana/instruction-plans", "@rc-component/table", "mamacro", "@types/url-parse", "vega-scale", "@types/treeify", "@mole-inc/bin-wrapper", "react-native-animatable", "@interactjs/types", "proxy-chain", "@jsii/spec", "@zag-js/date-picker", "@aws-sdk/hash-blob-browser", "mendoza", "@oxc-parser/binding-linux-arm-musleabihf", "@lezer/sass", "express-promise-router", "wicked-good-xpath", "vite-svg-loader", "s.color", "@google-cloud/compute", "@types/extract-files", "primevue", "@stdlib/assert-has-own-property", "react-outside-click-handler", "@azure/cosmos", "element-size", "rsa-pem-from-mod-exp", "@pnpm/fetching-types", "@codemirror/lang-wast", "@cspell/cspell-performance-monitor", "@types/bson", "@zag-js/file-upload", "@messageformat/number-skeleton", "@vercel/cli-config", "@date-io/luxon", "npm-which", "simplebar-core", "assert-options", "gh-pages", "@solidity-parser/parser", "@nrwl/cli", "bytesish", "bent", "ts-retry-promise", "@bufbuild/protoplugin", "is-error", "@chakra-ui/color-mode", "@uppy/thumbnail-generator", "@ngrx/operators", "animate.css", "@material/density", "exec-buffer", "@ast-grep/napi", "@walletconnect/heartbeat", "@pulumi/command", "@biomejs/cli-linux-arm64-musl", "kebab-case", "async-disk-cache", "postman-sandbox", "turbo-darwin-arm64", "@wdio/appium-service", "xml-formatter", "@malept/flatpak-bundler", "@svgdotjs/svg.select.js", "analytics-node", "@stablelib/wipe", "babel-helper-builder-react-jsx", "@aws-sdk/chunked-blob-reader", "@oclif/help", "@types/anymatch", "sass-embedded-all-unknown", "sass-embedded-unknown-all", "@rc-component/rate", "@napi-rs/canvas-win32-x64-msvc", "@vanilla-extract/css-utils", "web3-core", "@devicefarmer/adbkit", "cypress-iframe", "@stdlib/assert-has-uint16array-support", "@pulumi/docker", "automation-events", "content-security-policy-builder", "@zag-js/highlight-word", "samsam", "@formatjs/bigdecimal", "allure-playwright", "next-sitemap", "@middy/util", "cmd-extension", "@lerna/package-graph", "@messageformat/runtime", "daisyui", "@chakra-ui/system", "@mui/x-charts-vendor", "@stdlib/buffer-from-string", "json-schema-faker", "@types/lodash.get", "esbuild-darwin-arm64", "@cspell/filetypes", "dot-object", "react-native-iphone-x-helper", "urllib", "codecov", "@stdlib/utils-define-nonenumerable-read-only-property", "web3-core-promievent", "@react-navigation/drawer", "@livekit/components-core", "@zag-js/color-picker", "@ewoudenberg/difflib", "@d-fischer/shared-utils", "@types/undertaker", "@verdaccio/search-indexer", "@testim/chrome-version", "@rspack/binding-win32-x64-msvc", "@lmdb/lmdb-linux-arm64", "@formatjs/intl-numberformat", "@oxc-resolver/binding-wasm32-wasi", "vega-loader", "@storybook/react-native", "@uiw/react-md-editor", "telnet-client", "fastseries", "@codemirror/lang-angular", "@lerna/listable", "@wdio/mocha-framework", "@pulumi/docker-build", "esbuild-windows-64", "babel-import-util", "@storybook/addon-mdx-gfm", "react-oidc-context", "babel-preset-stage-3", "web3-core-subscriptions", "ollama", "@stdlib/constants-float64-pinf", "component-classes", "@types/bytes", "pusher", "@vercel/routing-utils", "@vue/cli-overlay", "reduce-reducers", "@fastify/jwt", "tiny-typed-emitter", "eslint-plugin-filenames", "simple-html-tokenizer", "@remotion/media-parser", "remend", "@cspell/dict-en-gb", "esprima-fb", "apollo-cache", "difflib", "zip-dir", "copy-file", "@solana/keys", "web3-providers-ws", "@react-spring/zdog", "@mantine/dates", "@remotion/media-utils", "node-api-headers", "@testing-library/svelte", "@fullstory/browser", "@fastify/compress", "node-vibrant", "@remix-run/web-fetch", "apollo-graphql", "react-google-recaptcha-v3", "@types/react-signature-canvas", "@tanstack/query-sync-storage-persister", "@types/mongodb", "document.contains", "@netlify/zip-it-and-ship-it", "@remix-run/web-file", "@types/apollo-upload-client", "@uppy/dashboard", "@mapbox/geojson-area", "uuid-browser", "fx-runner", "@griffel/core", "@codemirror/lang-yaml", "@aws-sdk/util-base64", "gifsicle", "@swagger-api/apidom-ns-openapi-3-1", "stylelint-config-recess-order", "bwip-js", "sort-json", "vega-scenegraph", "oracledb", "bind-event-listener", "web3-core-method", "@eslint/json", "@metamask/onboarding", "@rc-component/select", "lodash.isequalwith", "@biomejs/cli-darwin-arm64", "libnpmfund", "@walletconnect/time", "node-html-markdown", "native-url", "eslint-mdx", "@solana-mobile/wallet-adapter-mobile", "ava", "web3-core-requestmanager", "dotignore", "@opentelemetry/instrumentation-openai", "@uppy/provider-views", "level-errors", "@luma.gl/webgl", "@storybook/vue3-vite", "@types/core-js", "@types/eslint-plugin-jsx-a11y", "babel-helper-bindify-decorators", "typedoc-plugin-coverage", "@types/async-lock", "@zag-js/tour", "@zag-js/auto-resize", "whet.extend", "element-plus", "@stdlib/assert-is-number", "run-node", "ink-table", "unenv-nightly", "@vuepic/vue-datepicker", "@vercel/edge-config", "@eslint/config-inspector", "@remotion/streaming", "@corex/deepmerge", "@appium/logger", "is-es2016-keyword", "@solana/rpc-parsed-types", "vega-transforms", "@zag-js/clipboard", "json-schema-to-typescript-lite", "@react-email/preview-server", "@aws-sdk/client-kendra", "@storybook/addon-knobs", "serialised-error", "vite-plugin-compression", "shell-escape", "react-paginate", "@lerna/collect-updates", "react-native-vector-icons", "@reown/appkit-scaffold-ui", "@types/helmet", "@typescript/native-preview-darwin-x64", "@aws-cdk/service-spec-types", "@rspack/binding-linux-arm64-musl", "@tailwindcss/container-queries", "@zkochan/retry", "@googleapis/drive", "@types/proper-lockfile", "@types/negotiator", "urql", "react-native-fs", "i18next-cli", "blocking-proxy", "serverless-offline", "is-integer", "@eslint-react/kit", "reprism", "css-animation", "overlayscrollbars", "ag-charts-locale", "@eslint-react/jsx", "svg-url-loader", "@codemirror/merge", "weakmap-polyfill", "appium-idb", "@zag-js/live-region", "babel-plugin-minify-dead-code-elimination", "optipng-bin", "schemes", "trim-off-newlines", "iframe-resizer", "babel-plugin-syntax-async-generators", "@ag-ui/encoder", "@walletconnect/environment", "vega-regression", "@types/react-csv", "@parcel/node-resolver-core", "number-to-words", "slate-hyperscript", "spec-change", "@angular/material-moment-adapter", "exif-component", "babel-plugin-transform-async-generator-functions", "@cosmjs/encoding", "@percy/logger", "@dxup/unimport", "@firebase/vertexai", "@ag-ui/proto", "@lerna/command", "birecord", "vega-geo", "@remotion/studio-shared", "babel-preset-stage-2", "emojibase-data", "@zag-js/image-cropper", "redis-info", "glob-escape", "@napi-rs/nice-linux-arm64-gnu", "@vibrant/generator-default", "buffer-shims", "@types/koa-router", "@linaria/core", "ionicons", "@stdlib/assert-is-uint16array", "@google-cloud/kms", "vite-plugin-istanbul", "envalid", "@types/co-body", "leveldown", "apollo-server-caching", "@angular/service-worker", "@swagger-api/apidom-ns-json-schema-draft-4", "@lerna/filter-packages", "@zag-js/i18n-utils", "ts-prune", "@types/gapi.auth2", "node-fetch-npm", "fs-merger", "rewire", "@material/focus-ring", "@stdlib/assert-is-object-like", "@zag-js/listbox", "@sveltejs/adapter-node", "hash-stream-validation", "@stdlib/constants-uint32-max", "@ucast/mongo", "shapefile", "smartwrap", "sass-embedded-linux-musl-arm64", "vega-voronoi", "@oxc-parser/binding-linux-arm-gnueabihf", "web3-shh", "@lerna/conventional-commits", "@reach/descendants", "@storybook/manager-webpack4", "lodash.startswith", "cpx", "@percy/config", "@ag-ui/client", "d3-hexbin", "temporal-polyfill", "hash-it", "babel-helper-explode-class", "@stdlib/fs-resolve-parent-path", "@remix-run/web-stream", "level-fix-range", "@percy/env", "@lerna/link", "babel-plugin-transform-react-jsx", "graphql-http", "@types/pumpify", "@types/content-type", "libnpmversion", "@ast-grep/cli", "@oxc-parser/binding-freebsd-x64", "@vue/babel-preset-app", "simple-oauth2", "@percy/dom", "coveralls", "move-file", "@mantine/modals", "@pnpm/manifest-utils", "@d-fischer/rate-limiter", "ember-cli-htmlbars", "vite-plugin-dynamic-import", "url-toolkit", "@types/babel__code-frame", "@electron-forge/plugin-fuses", "@types/cli-table", "@messageformat/core", "@vue/cli-service", "expo-store-review", "lodash._createassigner", "mutative", "@walletconnect/logger", "@types/jsrsasign", "@types/throttle-debounce", "colornames", "@storybook/addon-webpack5-compiler-babel", "@griffel/react", "@zag-js/utils", "@oxc-parser/binding-android-arm64", "axios-ntlm", "is-generator", "@nx/next", "babel-plugin-transform-decorators", "web3-core-helpers", "adaptivecards", "@fastify/sensible", "scrollmirror", "@types/smoothscroll-polyfill", "pkcs7", "node-localstorage", "@inngest/ai", "@lerna/npm-publish", "vega-functions", "@pulumi/random", "expo-sqlite", "@stdlib/number-float64-base-to-words", "vega-projection", "pdf2json", "@shikijs/rehype", "npm-registry-utilities", "@kafkajs/confluent-schema-registry", "vega", "sort-on", "gel", "config-file-ts", "@material/shape", "@types/webfontloader", "@netlify/runtime-utils", "@zag-js/toast", "@soda/get-current-script", "@rc-component/input-number", "@luma.gl/engine", "@zag-js/toggle", "web3-eth-accounts", "mathjax-full", "@esbuild-kit/esm-loader", "polygon-clipping", "@types/lodash.escaperegexp", "@arcanis/slice-ansi", "@tloncorp/tlon-skill-linux-x64", "postprocessing", "vega-format", "@trpc/tanstack-react-query", "optional", "simple-xml-to-json", "babel-preset-solid", "@ckeditor/ckeditor5-basic-styles", "react-uid", "@rrweb/utils", "download-stats", "@types/hogan.js", "@appium/strongbox", "@unocss/core", "libnpmhook", "react-select-event", "@cspell/cspell-worker", "vega-crossfilter", "graphql-upload", "first-match", "web3-eth", "desm", "imagemin-optipng", "web3-net", "@swagger-api/apidom-parser-adapter-asyncapi-json-2", "@swagger-api/apidom-parser-adapter-openapi-json-3-1", "@swagger-api/apidom-parser-adapter-api-design-systems-yaml", "@swagger-api/apidom-parser-adapter-openapi-yaml-3-1", "@swagger-api/apidom-parser-adapter-openapi-json-3-0", "@vueuse/components", "@swagger-api/apidom-parser-adapter-openapi-yaml-3-0", "@zxing/browser", "@graphql-tools/load-files", "@aws-lambda-powertools/commons", "@stdlib/process-read-stdin", "@google-cloud/resource-manager", "mmdb-lib", "bson-objectid", "codemaker", "gts", "react-share", "@stdlib/utils-escape-regexp-string", "@oxlint/linux-x64-gnu", "yarn-deduplicate", "web3-eth-personal", "export-to-csv", "@ffmpeg/ffmpeg", "geist", "@lerna/describe-ref", "@stylexjs/babel-plugin", "@swagger-api/apidom-ns-api-design-systems", "@ai-sdk/ui-utils", "@tensorflow/tfjs-backend-cpu", "expo-media-library", "puppeteer-extra", "espurify", "instantsearch-ui-components", "turndown-plugin-gfm", "@remotion/zod-types", "@mantine/form", "vega-wordcloud", "@rc-component/form", "cids", "vega-runtime", "azurite", "@pipedream/platform", "@stdlib/streams-node-stdin", "vega-parser", "@esbuild-kit/core-utils", "noop-logger", "get-it", "@types/request-ip", "@zag-js/radio-group", "apollo-link-error", "@lingui/cli", "@trpc/client", "@playwright/cli", "xrpl", "@vue/cli-plugin-vuex", "@stdlib/assert-is-boolean", "web3-eth-ens", "web3-bzz", "next-i18next", "webpack-stats-plugin", "@zag-js/tabs", "@types/imap", "glob-all", "react-moment-proptypes", "vite-plugin-eslint", "@tinymce/tinymce-react", "hls-video-element", "tty-table", "is-gif", "@mapbox/mapbox-gl-draw", "mitata", "vega-label", "taketalk", "react-easy-swipe", "ngx-toastr", "openapi-typescript-codegen", "babel-helper-remove-or-void", "@stdlib/regexp-eol", "alpinejs", "externality", "semver-dsl", "@craco/craco", "clear", "@stablelib/random", "@types/psl", "vitepress", "dependency-path", "@types/fancy-log", "evt", "watchify", "kew", "@wallet-standard/core", "@types/vinyl-fs", "@babel/eslint-plugin", "webpack-notifier", "appium-android-driver", "@stdlib/assert-is-function", "@zag-js/rating-group", "@storybook/mdx1-csf", "standard-engine", "@aws-amplify/api-rest", "@types/deep-diff", "vega-statistics", "@rsdoctor/client", "xdate", "@orval/zod", "github-url-from-git", "@walletconnect/events", "@types/babylon", "@rsdoctor/graph", "@docsearch/core", "@salesforce/core", "embla-carousel-auto-scroll", "svgo-loader", "multi-sort-stream", "@rsdoctor/core", "@codemirror/lang-php", "pinia-plugin-persistedstate", "react-hot-loader", "fb-dotslash", "@solana-program/system", "react-final-form", "@rushstack/lookup-by-path", "@twilio/voice-errors", "tinylogic", "@aws-amplify/api-graphql", "@vibrant/types", "mappersmith", "@microsoft/applicationinsights-channel-js", "wgs84", "vega-time", "@types/tsscmp", "babel-plugin-transform-react-display-name", "@volar/language-service", "@tiptap/extension-drag-handle", "@zag-js/presence", "ng-mocks", "inject-stylesheet", "@google-cloud/opentelemetry-resource-util", "@styled-system/shadow", "@types/w3c-web-usb", "vega-selections", "@swagger-api/apidom-ns-openapi-2", "@swc/core-linux-s390x-gnu", "@solana/wallet-adapter-react", "i18n-js", "@angular/elements", "@types/cypress", "sleep-promise", "@swagger-api/apidom-parser-adapter-openapi-yaml-2", "react-json-view-lite", "@rc-component/cascader", "@pnpm/read-modules-dir", "@types/d3-collection", "reduce-configs", "helmet-csp", "ansi-escape-sequences", "@ai-sdk/togetherai", "@jimp/plugin-hash", "@better-fetch/fetch", "@inertiajs/core", "@zag-js/menu", "vanilla-colorful", "@types/string-similarity", "@percy/client", "ol", "@netlify/open-api", "java-invoke-local", "@rc-component/switch", "@zag-js/toggle-group", "htmlfy", "office-addin-usage-data", "@ag-grid-community/client-side-row-model", "dommatrix", "@lerna/prompt", "@material/tokens", "@evocateur/npm-registry-fetch", "react-dates", "@ai-sdk/react", "tiny-hashes", "@rc-component/textarea", "postcss-modules-resolve-imports", "lodash.noop", "@rsdoctor/types", "@rsdoctor/sdk", "until-async", "laravel-echo", "postcss-filter-plugins", "react-list", "@vue/cli-plugin-router", "@lerna/init", "colorthief", "pad-left", "@fluentui/react-icons", "git-last-commit", "instantsearch.js", "@percy/cli-command", "@lerna/write-log-file", "vega-view", "@lerna/symlink-binary", "@microsoft/applicationinsights-properties-js", "@reown/appkit-ui", "uuencode", "@aws-sdk/util-stream-node", "@lerna/check-working-tree", "eslint-config-google", "jest-fail-on-console", "@oxc-parser/binding-linux-riscv64-gnu", "babel-plugin-debug-macros", "ngx-cookie-service", "@google-cloud/vertexai", "final-form", "choices.js", "@oxc-parser/binding-linux-ppc64-gnu", "@ibm-cloud/openapi-ruleset-utilities", "esbuild-windows-arm64", "@types/opossum", "@aws-sdk/client-sagemaker", "vega-encode", "pg-copy-streams", "tablesort", "@langchain/google-genai", "@pnpm/link-bins", "@react-hook/throttle", "@types/styled-system", "karma-firefox-launcher", "@stylistic/eslint-plugin-ts", "@lerna/collect-uncommitted", "@microsoft/applicationinsights-analytics-js", "@xterm/addon-webgl", "@istanbuljs/nyc-config-typescript", "graphviz", "@wyw-in-js/shared", "@lerna/output", "@cosmjs/utils", "memory-streams", "level-codec", "openapi-server-url-templating", "threads", "staged-git-files", "@xterm/headless", "@turf/nearest-neighbor-analysis", "react-native-haptic-feedback", "apollo-link-context", "nouislider", "yo", "@microsoft/applicationinsights-web", "@aws-amplify/datastore", "@lerna/version", "codem-isoboxer", "esbuild-freebsd-arm64", "blueimp-canvas-to-blob", "@typescript/native-preview-win32-x64", "npm-lifecycle", "rollbar", "deprecated-decorator", "esbuild-linux-mips64le", "@d-fischer/typed-event-emitter", "level-concat-iterator", "@types/readline-sync", "@secretlint/secretlint-rule-no-dotenv", "react-with-direction", "genfun", "@walletconnect/window-getters", "@electron/fuses", "gatsby-core-utils", "esbuild-darwin-64", "@sanity/preview-url-secret", "@node-llama-cpp/linux-x64", "cmake-js", "@lerna/package", "vega-dataflow", "onnx-proto", "emoji-picker-react", "@choojs/findup", "@vercel/frameworks", "@zag-js/progress", "@types/promise.allsettled", "vega-force", "@phosphor-icons/react", "@lerna/cli", "uuid-parse", "@grafana/faro-web-sdk", "@node-rs/xxhash", "@stdlib/math-base-special-copysign", "@streamdown/code", "neo4j-driver", "lpad-align", "@rjsf/core", "apollo-client", "@vue/web-component-wrapper", "express-winston", "@stdlib/constants-float64-high-word-exponent-mask", "colormin", "dns-socket", "react-rnd", "@probe.gl/log", "react-native-keyboard-aware-scroll-view", "@reach/visually-hidden", "@microsoft/eslint-plugin-sdl", "natives", "@types/backbone", "outpipe", "eslint-plugin-formatjs", "@ibm-cloud/openapi-ruleset", "esprima-next", "@compodoc/compodoc", "@globalart/zod-to-proto", "is-touch-device", "neo4j-driver-core", "@stablelib/binary", "parent-require", "currency-symbol-map", "@visx/gradient", "msal", "taffydb", "@stdlib/number-float64-base-normalize", "@golevelup/ts-jest", "@jimp/js-jpeg", "semver-utils", "min-dash", "get-size", "@mixpanel/rrweb-plugin-console-record", "@netlify/dev-utils", "@types/wicg-file-system-access", "@lancedb/lancedb-linux-x64-gnu", "@oxc-parser/binding-win32-arm64-msvc", "@ag-grid-enterprise/core", "@hocuspocus/common", "esbuild-freebsd-64", "@emotion/jest", "react-refractor", "eslint-plugin-i18next", "vega-canvas", "galactus", "@sanity/runtime-cli", "@vscode/copilot-api", "fixturify-project", "@zag-js/hover-card", "@tencent-connect/qqbot-connector", "@pnpm/package-bins", "@backstage/backend-plugin-api", "nice-grpc-client-middleware-retry", "@rsdoctor/rspack-plugin", "babel-helper-mark-eval-scopes", "express-openapi-validator", "@sanity/message-protocol", "@lerna/import", "@pulumi/cloudflare", "@wdio/dot-reporter", "ember-cli-typescript", "rehype-pretty-code", "sonarqube-scanner", "pretty-data", "@unhead/dom", "paged-request", "json-to-ast", "@griffel/style-types", "react-native-pdf", "@compodoc/ngd-transformer", "@react-navigation/material-top-tabs", "bestzip", "jsii-rosetta", "@primeuix/utils", "reactstrap", "react-script-hook", "esbuild-linux-ppc64le", "scriptjs", "@node-rs/crc32", "culori", "protoduck", "snyk", "response-time", "logalot", "@intlify/core", "@pnpm/git-resolver", "@parcel/compressor-raw", "reka-ui", "babel-helper-evaluate-path", "@ledgerhq/logs", "@hapi/h2o2", "@jimp/js-gif", "react-native-video", "@ast-grep/cli-linux-x64-gnu", "@types/handlebars", "@types/madge", "diagnostics", "@metamask/eth-sig-util", "@next/mdx", "@aws-sdk/client-polly", "@remotion/studio-server", "electron-store", "@embroider/shared-internals", "@json2csv/formatters", "v8n", "@jsforce/jsforce-node", "@neon-rs/load", "lodash.flatmap", "@lezer/php", "@types/newrelic", "@sanity/visual-editing-types", "@vibrant/image", "@vkontakte/video-upload-sdk", "cheminfo-types", "ts-json-schema-generator", "@zag-js/interact-outside", "neo4j-driver-bolt-connection", "@lerna/exec", "@zag-js/cascade-select", "eslint-plugin-markdown", "@walletconnect/jsonrpc-ws-connection", "@codemirror/lang-java", "react-native-toast-message", "preview-email", "@react-types/color", "parse-listing", "lodash._shimkeys", "@types/yazl", "vanilla-picker", "highlight-es", "esbuild-android-arm64", "keycharm", "@ffmpeg/types", "@orpc/client", "@mixpanel/rrweb-types", "simple-git-hooks", "sass-embedded-win32-x64", "xml-utils", "gulp-concat", "sembear", "@discordjs/util", "json11", "@rushstack/stream-collator", "stream-read-all", "formstream", "@nuxtjs/i18n", "@types/is-glob", "murmurhash3js", "@formatjs/intl-relativetimeformat", "@remotion/cli", "ethjs-unit", "@callstack/react-theme-provider", "html-to-react", "@backstage/plugin-auth-node", "react-native-image-picker", "@nivo/annotations", "babel-plugin-ember-modules-api-polyfill", "tree-sitter-bash", "oo-ascii-tree", "lock", "electron-is-dev", "@npmcli/ci-detect", "code-error-fragment", "string-to-stream", "is-iexplorer", "hsts", "downloadjs", "doiuse", "@visx/grid", "@deepgram/sdk", "esbuild-sunos-64", "@lerna/symlink-dependencies", "@tsconfig/strictest", "vega-hierarchy", "@gulp-sourcemaps/map-sources", "react-grab", "@parcel/rust", "@dxup/nuxt", "@types/is-url", "babel-preset-react", "url-search-params-polyfill", "@types/mock-fs", "@discordjs/rest", "teamcity-service-messages", "@react-hook/debounce", "@types/humanize-duration", "@workflow/world", "@otplib/totp", "@types/lodash.upperfirst", "floating-vue", "@lit-labs/signals", "@sveltejs/adapter-static", "@lmdb/lmdb-darwin-arm64", "console-stream", "@types/sshpk", "@mapbox/geojson-types", "esbuild-linux-arm", "@thi.ng/bitstream", "@parcel/transformer-react-refresh-wrap", "@ark-ui/react", "@cucumber/junit-xml-formatter", "@sap/xsenv", "sequelize-typescript", "@glimmer/interfaces", "geoip-lite", "@types/segment-analytics", "ical-generator", "appium-uiautomator2-driver", "@react-router/fs-routes", "trix", "oas", "@tensorflow/tfjs-converter", "@types/hapi__joi", "mariadb", "eslint-plugin-react-rsc", "@jsdevtools/coverage-istanbul-loader", "groq-js", "@arr/every", "imagemin-gifsicle", "@babel/helper-call-delegate", "@cloudflare/workerd-linux-arm64", "react-currency-input-field", "express-fileupload", "@azu/style-format", "fontaine", "graphemesplit", "@types/object-path", "@lerna/prerelease-id-from-version", "@uppy/react", "@types/react-gtm-module", "@vibrant/color", "react-codemirror2", "@videojs/xhr", "@math.gl/types", "@types/react-measure", "victory-pie", "@oxlint/binding-win32-x64-msvc", "@types/html-minifier", "@nrwl/eslint-plugin-nx", "is-relative-url", "@material/list", "babel-plugin-minify-replace", "@mastra/memory", "string-replace-loader", "dom-event-types", "combine-errors", "d3-queue", "esbuild-linux-32", "@percy/cli-snapshot", "@ckeditor/ckeditor5-link", "@percy/cli", "@material/button", "@types/shallowequal", "react-dnd-test-backend", "@percy/cli-config", "sass-embedded-darwin-arm64", "@lerna/bootstrap", "@percy/cli-upload", "observable-callback", "@lerna/run-topologically", "yeoman-doctor", "get-folder-size", "@bytecodealliance/wizer", "babel-plugin-syntax-export-extensions", "vega-tooltip", "@jimp/plugin-quantize", "@google-cloud/opentelemetry-cloud-trace-exporter", "@loaders.gl/gis", "vitest-mock-extended", "@lerna/has-npm-version", "@ckeditor/ckeditor5-media-embed", "vega-lite", "@astrojs/underscore-redirects", "@applitools/screenshoter", "fixpack", "use-query-params", "@aws-sdk/client-codecommit", "@seznam/compose-react-refs", "karma-webpack", "tailwind-config-viewer", "@pnpm/read-package-json", "@logdna/tail-file", "babel-plugin-minify-guarded-expressions", "react-use-websocket", "react-native-uuid", "@reown/appkit-utils", "react-circular-progressbar", "@playwright/browser-chromium", "babel-helper-to-multiple-sequence-expressions", "json-diff-ts", "@emotion/css-prettifier", "density-clustering", "connect-pg-simple", "@wallet-standard/errors", "@lerna/resolve-symlink", "@oxc-parser/binding-linux-riscv64-musl", "@effect/vitest", "i18next-parser", "react-display-name", "vasync", "@parcel/transformer-html", "codelyzer", "alce", "standard", "@lerna/npm-install", "sass-formatter", "@lerna/rimraf-dir", "fs-exists-cached", "@lancedb/lancedb", "@parcel/transformer-babel", "@parcel/transformer-posthtml", "esbuild-windows-32", "pg-gateway", "@rc-component/steps", "@elastic/ecs-helpers", "gulp-replace", "caf", "@textlint/markdown-to-ast", "@aws-sdk/client-translate", "@parcel/config-default", "animejs", "@parcel/transformer-css", "@oxc-parser/binding-android-arm-eabi", "@achrinza/node-ipc", "@paypal/paypal-js", "@vue/cli-plugin-babel", "@reach/rect", "@opentelemetry/auto-instrumentations-web", "@types/styled-jsx", "eslint-config-xo", "@pnpm/fetch", "oidc-client-ts", "@node-ipc/js-queue", "@xml-tools/parser", "escape-string-applescript", "minimal-polyfills", "@docusaurus/theme-mermaid", "esbuild-netbsd-64", "@bytecodealliance/wizer-linux-x64", "@graphql-codegen/near-operation-file-preset", "@remix-run/web-blob", "@compodoc/ngd-core", "@mdi/js", "es-cookie", "embla-carousel-wheel-gestures", "typescript-memoize", "standardized-audio-context", "junit-report-merger", "@pixi/colord", "@types/office-js", "random-js", "humanize", "monaco-editor-webpack-plugin", "sqlite-vec-windows-x64", "pyodide", "@wdio/allure-reporter", "@material/notched-outline", "@lerna/changed", "@material/menu", "@types/pino-std-serializers", "@react-native-firebase/analytics", "css-modules-require-hook", "@ts-rest/core", "@lerna/list", "@material/menu-surface", "@wordpress/i18n", "babel-plugin-transform-regexp-constructors", "@napi-rs/snappy-linux-x64-gnu", "@percy/cli-app", "java-parser", "steed", "@lingui/conf", "@types/emoji-mart", "react-native-markdown-display", "finity", "next-line", "@oxc-parser/binding-win32-ia32-msvc", "sorcery", "graceful-git", "@react-hook/event", "ftp-response-parser", "@iconify/collections", "ktx-parse", "uri-templates", "dasherize", "@stdlib/os-float-word-order", "react-native-modal-datetime-picker", "remove-undefined-objects", "simplebar", "angular", "@solana/spl-token-metadata", "@expo-google-fonts/inter", "split.js", "ndarray-pixels", "@nestjs/event-emitter", "@phc/format", "@stdlib/fs-exists", "react-native-calendars", "babel-plugin-minify-flip-comparisons", "presentable-error", "cli-spinner", "@ckeditor/ckeditor5-image", "@chakra-ui/react-use-safe-layout-effect", "babel-plugin-transform-merge-sibling-variables", "@stdlib/assert-is-regexp-string", "babel-plugin-transform-simplify-comparison-operators", "@zag-js/dismissable", "babel-plugin-transform-inline-consecutive-adds", "babel-plugin-minify-numeric-literals", "@tiptap/markdown", "polylabel", "@stdlib/assert-has-symbol-support", "@backstage/plugin-permission-node", "@types/cache-manager", "esbuild-openbsd-64", "parse-function", "react-scan", "@types/lodash.snakecase", "ajv-i18n", "@remix-run/react", "html-element-attributes", "@jimp/file-ops", "markdown-it-container", "nodeify", "react-virtual", "swagger-typescript-api", "@types/deep-equal", "babel-helper-is-nodes-equiv", "sodium-native", "@parcel/optimizer-css", "eslint-plugin-react-debug", "@types/git-url-parse", "@percy/webdriver-utils", "@compiled/react", "leva", "awilix", "victory-chart", "axe-playwright", "@vanilla-extract/recipes", "@tanstack/query-async-storage-persister", "is-type-of", "remark-github", "jest-date-mock", "@elevenlabs/client", "@fastify/middie", "urlgrey", "assistant-stream", "@rc-component/progress", "@ckeditor/ckeditor5-watchdog", "nkeys.js", "apg-lite", "@types/react-textarea-autosize", "@types/react-infinite-scroller", "secretlint", "babel-plugin-minify-builtins", "@metamask/sdk-install-modal-web", "@tree-sitter-grammars/tree-sitter-yaml", "twoslash", "@lerna/pack-directory", "@types/gulp", "typeorm-naming-strategies", "@s2-dev/streamstore", "es6-templates", "octokit-pagination-methods", "default-user-agent", "object-to-formdata", "@lerna/project", "@types/google-one-tap", "@types/swagger-ui-react", "@zag-js/timer", "@unocss/config", "flow-remove-types", "@percy/appium-app", "rolldown-vite", "@oxfmt/binding-linux-arm64-gnu", "storybook-dark-mode", "@material/floating-label", "@lerna/get-packed", "@zag-js/drawer", "@unhead/shared", "agent-browser", "@oclif/color", "@ionic/utils-object", "speedometer", "unified-lint-rule", "@expo/mcp-tunnel", "seamless-immutable", "cloudflare-video-element", "@oclif/plugin-version", "@lerna/validation-error", "@tanstack/pacer", "node-request-interceptor", "@ng-select/ng-select", "babel-plugin-transform-remove-debugger", "jetifier", "@cosmjs/math", "@pagefind/default-ui", "@storybook/addon-ondevice-controls", "deep-copy", "js-queue", "@types/string-hash", "@material/textfield", "svelte2tsx", "express-handlebars", "@figma/plugin-typings", "@nuxt/test-utils", "geojson-equality", "argv", "@stdlib/assert-is-string", "@datadog/browser-rum-react", "babel-plugin-transform-property-literals", "@glimmer/syntax", "@typescript/native-preview-win32-arm64", "@lerna/query-graph", "@types/imagemin", "@vscode/vsce-sign", "@ag-grid-community/react", "victory-shared-events", "@capacitor/push-notifications", "gridstack", "@nuxt/icon", "@segment/ajv-human-errors", "@types/flexsearch", "turf-jsts", "@stdlib/regexp-function-name", "isnumeric", "editor", "chunkd", "react-date-range", "@lerna/pulse-till-done", "@unocss/extractor-arbitrary-variants", "@mantine/store", "derive-valtio", "unique-names-generator", "@thednp/shorty", "@astrojs/cloudflare", "worker-timers-broker", "@material/line-ripple", "@ngrx/entity", "@types/hapi__mimos", "victory-axis", "@napi-rs/nice-win32-arm64-msvc", "@ngrx/router-store", "babel-helper-flip-expressions", "@swaggerexpert/cookie", "@csstools/postcss-global-data", "@solana-mobile/mobile-wallet-adapter-protocol-web3js", "babel-plugin-minify-mangle-names", "babel-helper-is-void-0", "electrodb", "victory-area", "expr-eval", "sass-embedded-darwin-x64", "path-complete-extname", "victory-line", "xlsx-js-style", "victory-group", "@lerna/log-packed", "grpc-tools", "@rushstack/package-extractor", "micromark-extension-footnote", "class-is", "@stdlib/assert-is-array", "@lerna/get-npm-exec-opts", "@chakra-ui/descendant", "is-supported-regexp-flag", "@types/express-jwt", "eslint-plugin-sort-keys-fix", "usb", "compromise", "victory-legend", "@types/react-scroll", "victory-zoom-container", "react-transition-state", "victory-voronoi", "@jimp/js-tiff", "@pnpm/network.proxy-agent", "@pierre/diffs", "victory-cursor-container", "@pnpm/lockfile-utils", "@babel/plugin-transform-object-assign", "victory-tooltip", "@material/form-field", "modern-normalize", "json-rpc-random-id", "sweepline-intersections", "@pulumi/kubernetes", "@pnpm/network.agent", "@napi-rs/nice-linux-riscv64-gnu", "electron-vite", "@aws-crypto/material-management", "react-animate-height", "bootstrap.native", "codeceptjs", "@bazel/ibazel", "@stdlib/utils-get-prototype-of", "@chakra-ui/shared-utils", "@effect/language-service", "@chakra-ui/object-utils", "@turbo/darwin-arm64", "@types/cron", "@storybook/addon-styling-webpack", "mutation-server-protocol", "@mysten/bcs", "cssjanus", "chai-subset", "eslint-plugin-sort-class-members", "@svgdotjs/svg.filter.js", "typedi", "@sanity/presentation-comlink", "decode-ico", "@vibrant/image-node", "@types/thrift", "@vis.gl/react-maplibre", "victory-scatter", "@lerna/timer", "victory-bar", "replicate", "@anatine/zod-openapi", "web3-eth-contract", "@solana/offchain-messages", "metro-inspector-proxy", "promisify-child-process", "@reach/dialog", "@backstage/catalog-client", "giturl", "@rspack/binding-win32-ia32-msvc", "@angular-builders/common", "@aws-sdk/client-comprehend", "ts-is-present", "@braintree/wrap-promise", "supertap", "victory-brush-container", "meilisearch", "ts-patch", "wheel-gestures", "@antv/scale", "@reach/router", "env-variable", "squeak", "victory-stack", "@aws-cdk/cloud-assembly-api", "@rspack/binding-darwin-x64", "@wordpress/hooks", "victory-core", "@types/moment", "babel-plugin-transform-minify-booleans", "react-native-config", "babel-preset-minify", "babel-plugin-minify-constant-folding", "bmp-ts", "@microsoft/teams-js", "twoslash-protocol", "@clerk/testing", "parsimmon", "@stdlib/array-float64", "@aws-crypto/raw-keyring", "node-xlsx", "mockttp", "detox", "jalaali-js", "@httptoolkit/subscriptions-transport-ws", "babel-plugin-transform-class-constructor-call", "chai-http", "@chakra-ui/theme-utils", "@aws-crypto/client-node", "mutationobserver-shim", "react-html-attributes", "transformation-matrix", "recoil", "@aws-sdk/client-rekognition", "@aws-sdk/signature-v4-crt", "pngquant-bin", "markdown-it-sup", "@remotion/renderer", "idna-uts46-hx", "babel-plugin-transform-undefined-to-void", "ics", "@material/checkbox", "@microsoft/eslint-formatter-sarif", "@aws-crypto/raw-rsa-keyring-node", "@cloudflare/workerd-darwin-arm64", "@solana/plugin-core", "chrome-devtools-mcp", "@mapbox/martini", "@types/rtlcss", "rehype-react", "@stdlib/utils-library-manifest", "date-and-time", "not", "dash-video-element", "@openfeature/web-sdk", "axios-proxy-builder", "@types/ungap__structured-clone", "next-seo", "keyvaluestorage-interface", "@types/lodash.startcase", "@types/xmldom", "babel-plugin-transform-remove-undefined", "@datadog/datadog-ci-plugin-synthetics", "quicktype-core", "react-mentions", "@oxc-parser/binding-openharmony-arm64", "@huggingface/tasks", "@vanilla-extract/vite-plugin", "@tanstack/vue-query", "grunt-contrib-watch", "@vuelidate/validators", "@sanity/insert-menu", "@metamask/object-multiplex", "namespace-emitter", "@tiptap/extension-youtube", "glsl-token-scope", "@stdlib/array-uint16", "markdown-it-footnote", "@stdlib/string-lowercase", "appium-xcode", "@types/relay-runtime", "@types/lodash.chunk", "hardhat", "@expo/results", "is-localhost-ip", "svelte-preprocess", "@lingui/react", "@assistant-ui/react-markdown", "@mdxeditor/editor", "@unocss/preset-mini", "get-installed-path", "@stdlib/assert-is-float32array", "xhr-request-promise", "@anthropic-ai/bedrock-sdk", "compute-dot", "tree-sitter-javascript", "@stellar/stellar-sdk", "@serialport/parser-delimiter", "@aws-crypto/serialize", "@gulpjs/messages", "typescript-transform-paths", "geolib", "@types/hapi__shot", "babel-plugin-minify-type-constructors", "react-native-keychain", "esbuild-linux-s390x", "create-wdio", "add-px-to-style", "koa-body", "@lerna/profiler", "react-autosuggest", "qr-code-styling", "@stdlib/number-float64-base-to-float32", "@sanity/cli-core", "@stdlib/assert-is-regexp", "@lwc/eslint-plugin-lwc", "@types/redux-logger", "decode-bmp", "http-encoding", "babel-preset-flow", "@aws-sdk/client-rds-data", "@types/on-finished", "title", "@peculiar/asn1-csr", "@lerna/npm-dist-tag", "@percy/cli-build", "@percy/cli-exec", "tronweb", "digest-fetch", "@stdlib/assert-is-object", "@sapphire/async-queue", "p-debounce", "@unocss/rule-utils", "progress-stream", "@percy/core", "uplot", "rootpath", "is-blob", "@tensorflow/tfjs-backend-webgl", "@stablelib/int", "@chakra-ui/form-control", "fs-access", "eslint-plugin-you-dont-need-lodash-underscore", "babel-plugin-transform-react-jsx-self", "eslint-plugin-antfu", "@stdlib/constants-uint16-max", "n8ao", "@pnpm/crypto.hash", "tslint-config-prettier", "duckdb", "passport-http-bearer", "@stdlib/utils-convert-path", "@electron-forge/core-utils", "@cosmjs/amino", "react-lottie", "scroll", "@rc-component/mentions", "@probe.gl/stats", "@qdrant/js-client-rest", "cucumber-messages", "ink-gradient", "eslint-plugin-astro", "@types/got", "@types/howler", "@storybook/react-native-theming", "graphql-yoga", "@sanity/icons", "babel-plugin-minify-simplify", "@stdlib/assert-is-plain-object", "@stdlib/math-base-napi-unary", "karma-mocha", "@lmdb/lmdb-darwin-x64", "@atlaskit/primitives", "@jspm/core", "victory-candlestick", "mdast-util-footnote", "@lerna/clean", "@lerna/add", "@types/temp", "@stdlib/assert-is-float64array", "eslint-plugin-no-relative-import-paths", "@expo/plugin-warn-if-update-available", "babel-plugin-minify-infinity", "@types/memoizee", "i18n", "@probe.gl/env", "apollo-cache-inmemory", "@expo/timeago.js", "@stdlib/assert-has-float32array-support", "@zag-js/color-utils", "@math.gl/culling", "level", "quoted-printable", "diff2html", "@lerna/create-symlink", "@stdlib/regexp-extended-length-path", "@devexpress/error-stack-parser", "@pnpm/hosted-git-info", "nano-json-stream-parser", "geojson-polygon-self-intersections", "@stdlib/assert-is-uint32array", "single-spa", "@types/webpack-dev-server", "@swagger-api/apidom-ns-json-schema-2019-09", "x-default-browser", "obj-multiplex", "zlib", "postcss-styled-syntax", "stylelint-config-recommended-vue", "@aws-sdk/client-iot", "ajv-cli", "@metamask/superstruct", "@storybook/angular", "@zag-js/rect-utils", "unicode-length", "directory-tree", "dinero.js", "@types/react-avatar-editor", "@visx/glyph", "ng2-charts", "@salesforce/schemas", "degit", "embla-carousel-vue", "@vercel/og", "buf-compare", "@nuxtjs/color-mode", "@oxc-resolver/binding-linux-s390x-gnu", "stream-meter", "@pnpm/network.config", "c32check", "@reach/popover", "rusha", "dom-scroll-into-view", "@splitsoftware/splitio-commons", "astronomia", "chartjs-plugin-crosshair", "imagemin-pngquant", "@google-cloud/translate", "@wojtekmaj/enzyme-adapter-utils", "@stdlib/utils-next-tick", "css-to-xpath", "@clawdbot/lobster", "@badeball/cypress-cucumber-preprocessor", "relative", "@fullcalendar/premium-common", "after-all-results", "streamifier", "imap-simple", "tss-react", "x-xss-protection", "@material/top-app-bar", "@typeform/embed", "http-headers", "babel-preset-stage-1", "@azure/monitor-opentelemetry", "@stdlib/assert-is-big-endian", "@rushstack/rush-amazon-s3-build-cache-plugin", "@tsconfig/recommended", "@types/command-exists", "@oxc-resolver/binding-linux-arm64-gnu", "hjson", "url-set-query", "deasync", "babel-plugin-import", "eslint-plugin-boundaries", "react-native-reanimated-carousel", "cryptr", "clean-set", "@stdlib/math-base-napi-binary", "babel-plugin-transform-react-jsx-source", "http-auth-connect", "@visx/react-spring", "ibantools", "@napi-rs/wasm-tools", "@types/autocannon", "normalize-scroll-left", "@react-three/postprocessing", "eth-json-rpc-filters", "is-string-blank", "@chakra-ui/layout", "@types/hapi__catbox", "cpy-cli", "grunt-contrib-clean", "header-generator", "react-text-mask", "@types/global-agent", "@types/undertaker-registry", "@portabletext/plugin-markdown-shortcuts", "portal-vue", "http-https", "graphql-compose", "@snyk/github-codeowners", "@svgr/rollup", "@tailwindcss/line-clamp", "@fig/complete-commander", "null-check", "@mdx-js/rollup", "victory-create-container", "@mastra/server", "@multiformats/multiaddr", "@chakra-ui/popper", "iceberg-js", "typed-error", "force-graph", "fake-xml-http-request", "@mermaid-js/mermaid-cli", "@stdlib/complex-float32", "package-changed", "totp-generator", "@stdlib/types", "@rushstack/rush-http-build-cache-plugin", "mkcert", "omit.js", "@types/google__maps", "@react-native-firebase/crashlytics", "@amplitude/types", "golden-fleece", "lodash.orderby", "@stdlib/string-format", "@types/react-plotly.js", "loglevelnext", "react-force-graph-2d", "@stdlib/array-uint8", "@aws-crypto/decrypt-node", "@metamask/json-rpc-middleware-stream", "phantomjs-prebuilt", "rollup-plugin-peer-deps-external", "@stdlib/number-float64-base-get-high-word", "fixturify", "@types/koa-send", "react-waypoint", "@solana-mobile/wallet-standard-mobile", "firebase-functions-test", "@ai-sdk/cohere", "@types/pino-pretty", "aws-xray-sdk-express", "@lerna/diff", "@chakra-ui/tabs", "@langchain/aws", "eslint-plugin-typescript-sort-keys", "youtube-video-element", "@nestjs/bullmq", "@types/fontkit", "libxmljs2", "@bugsnag/plugin-react", "esbuild-linux-riscv64", "trace-event-lib", "@deck.gl/core", "@lerna/publish", "yorkie", "@tanstack/router-cli", "tsc", "jss-plugin-compose", "grunt-contrib-copy", "@vscode/vsce-sign-linux-x64", "@mixpanel/rrweb-utils", "@types/react-window-infinite-loader", "lambda-local", "@lerna/run", "react-string-replace", "@oclif/plugin-commands", "victory-selection-container", "elementtree", "@chakra-ui/menu", "@pandacss/is-valid-prop", "@expo/plugin-help", "@lerna/npm-conf", "@aws-sdk/eventstream-marshaller", "babel-plugin-transform-member-expression-literals", "victory-histogram", "@bundled-es-modules/memfs", "@inertiajs/react", "@chakra-ui/transition", "xml-escape", "xml-but-prettier", "cbor-js", "@nuxt/fonts", "@manypkg/cli", "webworkify", "svelte-hmr", "metro-minify-uglify", "@types/babel__helper-plugin-utils", "@loaders.gl/math", "polyclip-ts", "date-holidays-parser", "@stdlib/constants-float64-ninf", "interactjs", "@lmdb/lmdb-linux-arm", "@nrwl/webpack", "@chakra-ui/portal", "tree-sync", "vimeo-video-element", "material-ui-popup-state", "@lexical/headless", "@vvo/tzdb", "@lerna/npm-run-script", "@stdlib/array-uint32", "type-of", "@types/react-native-vector-icons", "lodash-unified", "@chenglou/pretext", "@rspack/binding-win32-arm64-msvc", "@loaders.gl/3d-tiles", "@workflow/world-local", "@mui/x-license-pro", "@material/select", "@mantine/dropzone", "@deck.gl/layers", "@wdio/json-reporter", "@rushstack/rush-azure-storage-build-cache-plugin", "@types/dedent", "koa-compress", "use-places-autocomplete", "bundle-n-require", "@intercom/messenger-js-sdk", "@types/rsocket-core", "@stdlib/constants-uint8-max", "observable-fns", "lz4", "@nx/key", "@keystonehq/bc-ur-registry", "@stdlib/utils-noop", "@types/pad-left", "@types/json-bigint", "radix-vue", "@element-plus/icons-vue", "arrgv", "@nrwl/angular", "@luma.gl/core", "type-level-regexp", "@rushstack/credential-cache", "@cyclonedx/cyclonedx-library", "@types/event-emitter", "content-security-policy-parser", "eth-query", "babel-plugin-transform-export-extensions", "chai-string", "math-interval-parser", "jade", "@google-cloud/container", "gulp-sass", "@aws-cdk/cx-api", "@stdlib/assert-has-node-buffer-support", "react-themeable", "@oxlint/binding-linux-arm64-musl", "@statsig/react-bindings", "jsii-reflect", "core-assert", "fastify-warning", "@material/radio", "@stdlib/constants-float64-max-base2-exponent", "@tanstack/router-ssr-query-core", "@aws-lambda-powertools/metrics", "normalize-wheel-es", "lucide-vue-next", "babel-plugin-syntax-class-constructor-call", "@chakra-ui/alert", "@wojtekmaj/enzyme-adapter-react-17", "@node-saml/passport-saml", "@storybook/addon-storysource", "@material/dialog", "discord.js", "conventional-changelog-cli", "restricted-input", "inputmask", "wistia-video-element", "markdownlint-micromark", "@stdlib/number-float64-base-exponent", "yet-another-react-lightbox", "@salesforce/apex-node", "@material/segmented-button", "vite-plugin-solid", "@workflow/core", "@react-hook/window-size", "super-media-element", "@tanstack/react-router-ssr-query", "@lerna/info", "referrer-policy", "bip66", "@aduh95/viz.js", "eslint-restricted-globals", "@swc/plugin-styled-components", "cucumber-expressions", "typechain", "nodemailer-fetch", "win-release", "fumadocs-core", "twitch-video-element", "@aws-cdk/asset-kubectl-v20", "@percy/monitoring", "hpkp", "tiktok-video-element", "spotify-audio-element", "@math.gl/geospatial", "@fluentui/react-context-selector", "@ckeditor/ckeditor5-adapter-ckfinder", "react-with-styles", "@csstools/postcss-mixins", "is-valid-domain", "unimodules-app-loader", "react-country-flag", "@testing-library/jest-native", "openshell", "@aws-sdk/client-eks", "@nrwl/web", "mimetext", "victory-brush-line", "eslint-plugin-vuejs-accessibility", "@newrelic/fn-inspect", "@remotion/web-renderer", "@vueuse/nuxt", "child_process", "@stdlib/complex-float64", "@ts-morph/bootstrap", "@vanilla-extract/compiler", "country-list", "@oxlint/binding-darwin-x64", "@codesandbox/nodebox", "mime-match", "@sanity/eventsource", "ag-charts-enterprise", "geokdbush", "ternary-stream", "@material/progress-indicator", "vega-interpreter", "@visx/responsive", "extension-port-stream", "phone", "@sapphire/shapeshift", "@willsoto/nestjs-prometheus", "read-all-stream", "vite-plugin-ruby", "rsocket-core", "detect-element-overflow", "ndarray-pack", "@nivo/heatmap", "@visx/xychart", "bo-selector", "opencode-anthropic-auth", "@chakra-ui/number-input", "@libsql/core", "r-json", "@chakra-ui/counter", "JSV", "sync-disk-cache", "eslint-typegen", "victory-errorbar", "weaviate-client", "@codemirror/language-data", "@types/asn1", "@atlaskit/theme", "pnpm-sync-lib", "@libsql/isomorphic-ws", "inquirer-autocomplete-standalone", "jump.js", "many-keys-map", "to-data-view", "@lerna/otplease", "isomorphic-rslog", "@aws-sdk/client-apigatewayv2", "http_ece", "@googleapis/calendar", "jest-expect-message", "stylelint-config-css-modules", "@material/linear-progress", "@visx/voronoi", "@remotion/studio", "proxy-memoize", "@chakra-ui/react-context", "@vue/cli-plugin-eslint", "@ai-sdk/svelte", "dom-css", "typescript-auto-import-cache", "@visx/annotation", "runed", "nub", "@chakra-ui/button", "@oxc-resolver/binding-darwin-x64", "lodash.istypedarray", "unidecode", "@ag-grid-enterprise/row-grouping", "@chakra-ui/image", "@ckeditor/ckeditor5-emoji", "@cosmjs/proto-signing", "@ai-sdk/vue", "@stdlib/constants-float64-exponent-bias", "global-cache", "@chakra-ui/media-query", "hamt_plus", "cors-gate", "@chakra-ui/switch", "@webcomponents/custom-elements", "@semantic-release/exec", "mock-property", "@types/jsonpath", "openapi-schema-validator", "ical.js", "@wdio/xvfb", "@biomejs/cli-win32-arm64", "@ai-sdk/solid", "mdast-add-list-metadata", "@stdlib/assert-is-little-endian", "@glimmer/validator", "jss-preset-default", "@material/snackbar", "@loaders.gl/terrain", "@verdaccio/commons-api", "@types/koa-static", "redux-form", "ts-type", "@types/lorem-ipsum", "@types/mini-css-extract-plugin", "@chakra-ui/spinner", "self-closing-tags", "@lerna/gitlab-client", "esbuild-sass-plugin", "react-with-styles-interface-css", "deep-strict-equal", "serverless-http", "@vercel/microfrontends", "static-browser-server", "pretender", "@jsamr/react-native-li", "public-ip", "fetch-jsonp", "find-git-root", "@chakra-ui/react-env", "@napi-rs/nice-android-arm64", "@deck.gl/mesh-layers", "moment-range", "@oxlint/binding-win32-arm64-msvc", "resumer", "aws-xray-sdk", "@atlaskit/icon", "@chakra-ui/popover", "sswr", "@chakra-ui/toast", "@stdlib/complex-reim", "@turf/boolean-concave", "hide-powered-by", "@vercel/edge-config-fs", "date-easter", "@semantic-release/gitlab", "@chakra-ui/react-use-focus-on-pointer-down", "number-flow", "@aws-crypto/encrypt-node", "fork-stream", "@chakra-ui/stat", "lodash.forown", "@emotion/eslint-plugin", "@types/cucumber", "date-holidays", "@elastic/ecs-pino-format", "eslint-plugin-react-perf", "platformsh-config", "sourcemap-validator", "tabster", "random-int", "sass-embedded-linux-arm", "gulp-header", "ngraph.events", "@stdlib/math-base-special-ldexp", "@nats-io/nats-core", "measured-reporting", "google-spreadsheet", "@cloudflare/workers-oauth-provider", "@astrojs/rss", "is-tar", "aws-xray-sdk-postgres", "photoswipe", "@material/tab-scroller", "cypress-recurse", "gulp-match", "@graphql-inspector/diff-command", "file-sync-cmp", "@chakra-ui/pin-input", "@azure/core-asynciterator-polyfill", "@chakra-ui/checkbox", "pseudolocale", "@chakra-ui/slider", "langfuse", "@workflow/next", "array-move", "@material/tab-bar", "ag-grid-angular", "@types/accept-language-parser", "@aws-sdk/util-stream-browser", "connect-livereload", "@storybook/jest", "@types/redux", "@ast-grep/napi-linux-x64-musl", "graphql-redis-subscriptions", "@chakra-ui/focus-lock", "@stdlib/regexp-regexp", "texture-compressor", "loadjs", "parse-color", "ejs-loader", "nodemailer-shared", "@effect/opentelemetry", "@anthropic-ai/claude-code-linux-arm64", "monkeypatch", "babel-cli", "@tsconfig/node24", "@vibrant/core", "@knocklabs/react", "@prefresh/vite", "@types/d3-graphviz", "@oxc-transform/binding-linux-arm64-gnu", "@chakra-ui/table", "eslint-plugin-mdx", "@stdlib/math-base-special-abs", "botframework-schema", "unicode-substring", "unidiff", "@biomejs/cli-win32-x64", "jsii-pacmak", "@netlify/config", "vue-observe-visibility", "@ag-grid-community/styles", "ts-command-line-args", "estree-is-function", "funpermaproxy", "humanize-number", "emojibase-regex", "@slorber/remark-comment", "stream-source", "@bahmutov/cypress-esbuild-preprocessor", "cookie-session", "import-modules", "url-pattern", "react-cropper", "sver", "qunit", "flow-bin", "sass-embedded-win32-arm64", "@types/component-emitter", "@material/slider", "workflow", "@chakra-ui/visually-hidden", "@unocss/preset-wind", "@near-js/types", "parse-help", "memoirist", "hashids", "markdown-it-mark", "@amplitude/utils", "heic-convert", "@material/drawer", "@types/estraverse", "@chakra-ui/textarea", "@google-cloud/tasks", "@polkadot/x-global", "proxy", "karma-sourcemap-loader", "@codegenie/serverless-express", "@mdit/plugin-alert", "@workflow/builders", "@turbo/darwin-64", "gl-util", "mapcap", "fast-stream-to-buffer", "@astrojs/tailwind", "@mikro-orm/core", "@chakra-ui/radio", "@napi-rs/nice-linux-ppc64-gnu", "@stomp/stompjs", "@workflow/nitro", "@chakra-ui/breadcrumb", "@material/card", "swrev", "@workflow/cli", "esbuild-android-64", "@flmngr/flmngr-server-node", "@material/chips", "@sentry/aws-serverless", "@rsdoctor/utils", "helmet-crossdomain", "@parcel/transformer-worklet", "@ui5/fs", "tsd", "antlr4ts", "on-net-listen", "@chakra-ui/live-region", "@scena/event-emitter", "@biomejs/wasm-nodejs", "@emurgo/cardano-serialization-lib-nodejs", "@react-grab/cli", "imagemin-mozjpeg", "fumadocs-ui", "non-layered-tidy-tree-layout", "use-deep-compare", "@coral-xyz/anchor", "@aws-sdk/url-parser-native", "@jitl/quickjs-wasmfile-release-sync", "acorn-typescript", "custom-event-polyfill", "@formulajs/formulajs", "@storybook/addon-ondevice-actions", "@types/npm-package-arg", "@sliphua/lilconfig-ts-loader", "crosspath", "json-rules-engine", "@biomejs/js-api", "@aws-sdk/client-location", "sass-embedded-android-arm", "jest-fixed-jsdom", "@azure/service-bus", "@codemirror/lang-vue", "@ag-grid-enterprise/menu", "react-loadable", "react-event-listener", "stylelint-no-unsupported-browser-features", "karma-mocha-reporter", "@stdlib/constants-float64-smallest-normal", "@volar/language-server", "trim-canvas", "@orpc/standard-server-fetch", "@portabletext/react", "@types/interpret", "@stdlib/cli-ctor", "eslint-plugin-oxlint", "@workflow/swc-plugin", "signal-utils", "@node-llama-cpp/linux-x64-vulkan", "@aws-sdk/chunked-blob-reader-native", "nextjs-toploader", "@types/nanoid", "@maplibre/vt-pbf", "langfuse-core", "eslint-plugin-command", "@portabletext/types", "d3-cloud", "@cosmjs/stream", "reactotron-core-client", "safevalues", "victory-canvas", "merge-trees", "@deck.gl/aggregation-layers", "buffer-layout", "@tsoa/runtime", "unicode-byte-truncate", "@wagmi/core", "karma-spec-reporter", "@orpc/standard-server-peer", "async-cache", "cosmjs-types", "elastic-apm-node", "@material/switch", "@castleio/castle-js", "@aws-crypto/material-management-node", "iso8601-duration", "redux-observable", "@readme/openapi-parser", "@types/continuation-local-storage", "@remotion/compositor-linux-x64-gnu", "@transloadit/prettier-bytes", "is_js", "@oxfmt/binding-win32-x64-msvc", "sass-embedded-android-arm64", "@compodoc/live-server", "is-even", "@orpc/standard-server", "svg2ttf", "@nomicfoundation/solidity-analyzer-linux-x64-gnu", "@types/base-64", "react-tracked", "console-polyfill", "yeoman-test", "@chakra-ui/input", "read-excel-file", "@salesforce/telemetry", "@tiptap/extension-task-list", "@types/lodash.once", "@napi-rs/keyring", "typeof-article", "rsocket-websocket-client", "@nuxt/image", "bessel", "grunt-contrib-uglify", "@types/earcut", "ngx-markdown", "babel-plugin-syntax-function-bind", "@types/hapi__hapi", "apollo-env", "to-snake-case", "@blueprintjs/icons", "fumadocs-mdx", "stylelint-config-sass-guidelines", "monitor-event-loop-delay", "@parcel/feature-flags", "@gulp-sourcemaps/identity-map", "@chakra-ui/modal", "@stylistic/eslint-plugin-js", "backslash", "tiptap-markdown", "w-json", "digest-header", "lodash._basefor", "vitest-fetch-mock", "@uppy/status-bar", "@lingui/format-po", "markdown-it-sub", "@ffmpeg/util", "@chakra-ui/skeleton", "@antv/g-math", "@vercel/fetch", "@types/split2", "@chakra-ui/event-utils", "@types/express-unless", "@types/vfile-message", "@analytics/type-utils", "xterm", "embla-carousel-auto-height", "@zag-js/json-tree-utils", "@arethetypeswrong/cli", "@prefresh/babel-plugin", "@chakra-ui/accordion", "@fluentui/react-jsx-runtime", "@types/google.picker", "@manypkg/tools", "@stdlib/constants-float64-high-word-abs-mask", "@pnpm/node-fetch", "@biomejs/cli-darwin-x64", "glsl-token-depth", "magic-bytes.js", "redux-actions", "indefinite", "@codexteam/icons", "@chakra-ui/close-button", "lunr-languages", "@material-ui/pickers", "bootstrap-sass", "@lerna/filter-options", "get-node-dimensions", "cohere-ai", "gl-mat4", "virtua", "@unocss/transformer-variant-group", "@types/finalhandler", "@types/nock", "@openai/agents-core", "dup", "@types/textarea-caret", "@oxfmt/binding-darwin-arm64", "reactotron-core-contract", "stylelint-config-html", "gulp-uglify", "@salesforce/packaging", "@langchain/google-common", "@chakra-ui/provider", "esbuild-jest", "ink-use-stdout-dimensions", "extend-object", "@ag-grid-enterprise/column-tool-panel", "@types/graphql-upload", "@types/xlsx", "@chakra-ui/icons", "@types/rsocket-websocket-client", "@applitools/snippets", "@deck.gl/react", "@sphinxxxx/color-conversion", "@libsql/linux-x64-gnu", "jest-html-reporter", "@portabletext/plugin-one-line", "color-normalize", "simple-is", "commoner", "original-url", "partyserver", "@svta/cml-cmcd", "@antv/matrix-util", "@urql/introspection", "superagent-proxy", "csurf", "svgicons2svgfont", "@actions/artifact", "@preact/preset-vite", "@material/image-list", "expo-task-manager", "opencode-windows-x64", "@workflow/nuxt", "@stdlib/utils-regexp-from-string", "scope-analyzer", "@types/polylabel", "@types/get-port", "stylelint-config-styled-components", "syncpack-linux-x64", "tunnel-ssh", "@zxcvbn-ts/language-en", "split-array-stream", "ksuid", "cliff", "@salesforce/plugin-info", "composed-offset-position", "jss-plugin-template", "browser-fs-access", "@microsoft/1ds-post-js", "@segment/tsub", "lodash._isnative", "@assistant-ui/core", "graphiql", "@ljharb/resumer", "@aws-amplify/cache", "@material/banner", "@sanity/template-validator", "@trezor/utils", "moti", "node-vault", "@stdlib/fs-read-file", "pre-commit", "@fluentui/react-card", "react-selecto", "@material/layout-grid", "glsl-token-descope", "airtable", "@chakra-ui/tooltip", "html-validate", "get-object", "@types/vimeo__player", "@sanity/codegen", "@types/react-lottie", "rxjs-report-usage", "@libsql/client", "accessor-fn", "@workflow/sveltekit", "domify", "iced-lock", "pinyin-pro", "@cosmjs/socket", "@types/connect-pg-simple", "@posthog/react", "@types/text-table", "lodash.xorby", "react-native-draggable-flatlist", "react-native-paper", "@mastra/deployer", "@sapphire/snowflake", "@mixpanel/rrdom", "react-native-builder-bob", "audit-ci", "has-binary", "@azure/arm-storage", "parse-package-name", "@types/is-buffer", "default-uid", "@types/js-beautify", "timekeeper", "@wasm-audio-decoders/ogg-vorbis", "react-live", "@ag-grid-community/csv-export", "sass-embedded-android-riscv64", "is-class-hotfix", "glslify-deps", "sass-embedded-linux-riscv64", "@tsoa/cli", "@portabletext/editor", "@types/loadable__component", "url-regex", "@chakra-ui/tag", "eslint-plugin-eslint-plugin", "@knocklabs/node", "@fluentui/react-drawer", "content-hash", "@aws-sdk/client-iot-data-plane", "@svta/cml-dash", "encoding-down", "react-calendly", "@scena/dragscroll", "babel-plugin-transform-runtime", "@storybook/expect", "@langchain/google-gauth", "@stdlib/constants-float64-high-word-sign-mask", "@linaria/logger", "promise-timeout", "callsite-record", "@types/moo", "@chakra-ui/react-use-callback-ref", "@types/jsforce", "gesto", "onchange", "json-schema-migrate", "@aws-sdk/client-ecs", "@ngrx/signals", "@mediabunny/mp3-encoder", "@coinbase/cdp-sdk", "ngx-mask", "@gbulls-org/gbulls-sdk", "favicons", "@types/regenerator-runtime", "react-app-rewired", "messageformat-parser", "@mapbox/geojson-normalize", "@chakra-ui/breakpoint-utils", "@salesforce/templates", "@graphiql/react", "@prisma/schema-engine-wasm", "@portabletext/block-tools", "@effect/cluster", "casual", "exact-mirror", "node-bitmap", "@fastify/reply-from", "color-hash", "country-state-city", "@types/junit-report-builder", "@csstools/postcss-font-width-property", "react-image-gallery", "@native-html/transient-render-engine", "victory-native", "@angular/ssr", "@oxc-transform/binding-darwin-arm64", "connected-react-router", "@applitools/eg-frpc", "@types/debounce-promise", "babel-plugin-transform-do-expressions", "md5hex", "@nomicfoundation/edr-linux-x64-gnu", "@discordjs/ws", "opencode-windows-x64-baseline", "@oxc-resolver/binding-linux-arm-musleabihf", "@types/bull", "@near-js/crypto", "@linaria/utils", "ora-classic", "@apify/consts", "graph-data-structure", "@better-auth/passkey", "bitmap-sdf", "@readme/openapi-schemas", "string-strip-html", "@types/react-linkify", "@types/speakingurl", "react-moveable", "parse-multipart-data", "sass-embedded-linux-musl-arm", "@stablelib/constant-time", "crypto-hash", "bitsyntax", "keyborg", "gulp-if", "pg-mem", "@types/jwt-decode", "@napi-rs/nice-darwin-x64", "@vscode/ripgrep", "@scalar/themes", "servify", "@adyen/adyen-web", "p-iteration", "@types/glob-stream", "jest-localstorage-mock", "@types/testing-library__dom", "mozjpeg", "babel-plugin-syntax-do-expressions", "@mikro-orm/knex", "@types/imap-simple", "@types/joi", "@types/iltorb", "y-websocket", "@types/eslint-config-prettier", "@types/ssri", "@udecode/utils", "@fluentui/theme", "@stablelib/hash", "@workflow/web", "@oxc-resolver/binding-linux-arm64-musl", "@electric-sql/client", "@chakra-ui/react-use-animation-state", "to-gfm-code-block", "jss-plugin-rule-value-observable", "@parcel/transformer-raw", "osx-release", "sass-embedded-android-x64", "split-skip", "html-tag", "ansi-to-react", "electron-dl", "@sentry/bun", "@aws-cdk/cloudformation-diff", "@salesforce/agents", "@openrouter/sdk", "@pulumi/awsx", "is-self-closing", "@nomicfoundation/edr-linux-x64-musl", "@ui5/logger", "@chakra-ui/react-use-merge-refs", "glsl-token-defines", "signum", "bunyamin", "@formatjs/intl-datetimeformat", "@rsbuild/plugin-react", "@apify/log", "@earendil-works/pi-ai", "@unocss/preset-uno", "gulp-postcss", "express-graphql", "@contrast/fn-inspect", "react-jss", "@intlify/vue-i18n-extensions", "o11y", "@turf/point-to-polygon-distance", "intercom-client", "@plotly/regl", "@types/ci-info", "@chakra-ui/react-types", "unist-util-map", "php-parser", "eslint-plugin-toml", "wouter", "@types/fast-levenshtein", "broccoli-kitchen-sink-helpers", "eslint-formatter-gitlab", "@visx/legend", "postcss-css-variables", "@deck.gl/geo-layers", "ngx-quill", "@vaadin/component-base", "@auth0/auth0-auth-js", "parcel", "@tinyhttp/app", "@uppy/aws-s3", "@chakra-ui/control-box", "@aklinker1/rollup-plugin-visualizer", "bunyan-debug-stream", "@codeceptjs/configure", "thunkify", "feature-policy", "@chakra-ui/select", "@babel/helper-builder-react-jsx-experimental", "@gql.tada/internal", "victory", "@scalar/workspace-store", "@material/fab", "remix-utils", "@loaders.gl/tiles", "@nomicfoundation/edr-win32-x64-msvc", "@sap-ux/logger", "@ag-grid-enterprise/server-side-row-model", "@deck.gl/mapbox", "embla-carousel-class-names", "get-own-enumerable-keys", "react-native-css-interop", "@graphiql/plugin-history", "@nrwl/cypress", "tomlify-j0.4", "@fingerprintjs/fingerprintjs-pro", "@nomicfoundation/edr-linux-arm64-musl", "@material/tab-indicator", "@nomicfoundation/edr-darwin-x64", "find-workspaces", "@chakra-ui/progress", "react-addons-shallow-compare", "@openai/agents-realtime", "@types/leaflet.markercluster", "jwt-simple", "@math.gl/sun", "@rspack/binding-wasm32-wasi", "ttf2eot", "aws-xray-sdk-mysql", "@cosmjs/json-rpc", "@playwright/experimental-ct-core", "@iconify-json/lucide", "@salesforce/plugin-settings", "openapi-react-query", "pdf2pic", "@amplitude/rrdom", "fn-args", "@luma.gl/constants", "json-schema-deref-sync", "sanity", "prisma-json-types-generator", "moment-locales-webpack-plugin", "@types/react-motion", "concat", "@chakra-ui/avatar", "hygen", "lodash.clamp", "electron-packager", "tsc-files", "babel-plugin-transform-function-bind", "@react-pdf-viewer/core", "@mui/styled-engine-sc", "@types/react-input-mask", "babel-preset-stage-0", "playroom", "@types/auth0", "@formatjs/intl-enumerator", "@chakra-ui/editable", "@cfcs/core", "@ckeditor/ckeditor5-bookmark", "@chakra-ui/react-use-interval", "look-it-up", "@types/type-is", "@orpc/contract", "eslint-etc", "@remote-ui/rpc", "npm-keyword", "messageformat", "@floating-ui/devtools", "serverless-prune-plugin", "openapi-merge", "right-pad", "@graphql-inspector/ci", "babel-plugin-htmlbars-inline-precompile", "@types/enhanced-resolve", "@sentry/angular", "@huggingface/inference", "hostile", "xhr-request", "relative-microtime", "@fluentui/react-swatch-picker", "@mediabunny/flac-encoder", "@salesforce/plugin-schema", "strip-color", "@tensorflow/tfjs-data", "react_ujs", "strip-markdown", "@stdlib/assert-tools-array-function", "@sanity/migrate", "@effect/rpc", "react-ga", "hast-util-to-mdast", "@openai/agents", "vue-multiselect", "analytics", "@types/basic-auth", "@openai/agents-openai", "@mantine/utils", "@miragejs/pretender-node-polyfill", "eight-colors", "@stdlib/assert-is-uint8array", "solid-refresh", "sha3", "safe-flat", "moize", "root-check", "js-binary-schema-parser", "markdown-it-deflist", "sass-embedded-linux-musl-riscv64", "@angular-builders/custom-webpack", "ignore-loader", "@temporalio/testing", "downgrade-root", "emoji-toolkit", "react-router-hash-link", "js-sha1", "pyright", "@heroui/shared-utils", "@nuxtjs/tailwindcss", "rsocket-types", "@plasmohq/parcel-optimizer-encapsulate", "@nomicfoundation/edr-darwin-arm64", "@dynamic-labs/sdk-api-core", "safari-14-idb-fix", "@apphosting/common", "@mui/x-internal-gestures", "@tensorflow/tfjs-layers", "@wordpress/element", "bip174", "babel-plugin-transform-hook-names", "@workos-inc/authkit-nextjs", "cytoscape-dagre", "@stylexjs/shared", "pica", "@ag-grid-enterprise/set-filter", "ascii-table", "lodash.toupper", "snakeize", "apollo-codegen-core", "@cypress/browserify-preprocessor", "@chakra-ui/react-children-utils", "@cloudflare/workerd-windows-64", "folder-hash", "@jrichman/ink", "@tensorflow/tfjs", "@nivo/treemap", "@fluentui/react-infolabel", "yurnalist", "@material/tab", "@types/murmurhash", "aws-sdk-client-mock-jest", "react-fit", "@types/query-string", "devcert", "@types/google.analytics", "cypress-mochawesome-reporter", "@ag-grid-enterprise/side-bar", "@chakra-ui/react-use-update-effect", "eas-cli", "uri-path", "yalc", "@unocss/transformer-compile-class", "remove-markdown", "cldrjs", "ngx-bootstrap", "@workflow/astro", "@nivo/calendar", "@lingui/babel-plugin-lingui-macro", "@rive-app/webgl2", "material-react-table", "@fluentui/react-persona", "shuffle-array", "stream-chopper", "@pnpm/parse-wanted-dependency", "pct-encode", "sa-sdk-javascript", "spdx-expression-validate", "@types/loader-runner", "jss-plugin-expand", "@rc-component/notification", "tree-sitter-typescript", "@assistant-ui/tap", "@fullhuman/postcss-purgecss", "is-git-dirty", "@fluentui/react-tree", "@revenuecat/purchases-js", "@napi-rs/nice-freebsd-x64", "lodash.uniqueid", "@aws-sdk/crt-loader", "bulma", "node-ssh", "mcp-proxy", "@solana/wallet-standard-util", "@fluentui/react-virtualizer", "@parcel/transformer-svg", "coffeeify", "@fluentui/react-infobutton", "@parcel/runtime-browser-hmr", "ally.js", "jest-html-reporters", "dpdm", "json", "csstoxpath", "re-reselect", "@material/circular-progress", "gar", "vega-embed", "@tinyhttp/etag", "@pnpm/find-workspace-dir", "rsocket-flowable", "@ckeditor/ckeditor5-icons", "file-exists", "fuzzball", "react-style-proptype", "patchright-core", "vite-plugin-storybook-nextjs", "buffer-to-arraybuffer", "@types/store", "@formatjs/intl-utils", "@payloadcms/next", "audio-type", "json-schema-library", "@apify/utilities", "tsutils-etc", "@types/base-x", "vue-sonner", "@fluentui/react-message-bar", "anchor-markdown-header", "@maskito/core", "object-filter-sequence", "@lottiefiles/react-lottie-player", "@intlify/utils", "cbor-sync", "set-interval-async", "gulp-babel", "vue-property-decorator", "@fastly/js-compute", "theming", "rtcpeerconnection-shim", "remark-toc", "ttf2woff2", "utile", "@types/react-mentions", "@rollup/plugin-esm-shim", "@remotion/compositor-linux-x64-musl", "lockfile-lint-api", "hat", "@workflow/nest", "@near-js/utils", "async-value-promise", "analytics-utils", "@ag-grid-enterprise/clipboard", "@stdlib/utils-define-property", "koa-mount", "@casl/react", "babel-plugin-formatjs", "bytebuffer", "@elevenlabs/types", "@salesforce/plugin-user", "mastra", "@types/rsocket-types", "relative-time-format", "css-background-parser", "broccoli-caching-writer", "react-date-picker", "@esbuild-plugins/node-resolve", "color-diff", "libsodium-sumo", "peggy", "@salesforce/plugin-auth", "@salesforce/plugin-trust", "@analytics/cookie-utils", "@nomicfoundation/edr", "multer-s3", "@salesforce/plugin-packaging", "@stripe/connect-js", "mdast-comment-marker", "@fullcalendar/scrollgrid", "@discordjs/builders", "expo-tracking-transparency", "idx", "@ably/chat", "brotli-size", "@netlify/edge-bundler", "@emmetio/stream-reader", "css-font-stretch-keywords", "powerbi-models", "@workflow/vite", "clipboard-copy", "@nomicfoundation/solidity-analyzer-darwin-x64", "@glideapps/ts-necessities", "@sanity/visual-editing", "@tauri-apps/plugin-opener", "@types/testing-library__react", "@bcherny/json-schema-ref-parser", "@trapezedev/project", "@markdoc/markdoc", "cypress-xpath", "@oclif/plugin-search", "@salesforce/plugin-apex", "eslint-plugin-css-modules", "selecto", "parse-domain", "vega-view-transforms", "fullname", "bower", "@fluentui/react-breadcrumb", "jest-silent-reporter", "python-shell", "canvas-color-tracker", "@portabletext/html", "@js-joda/timezone", "@napi-rs/wasm-tools-linux-x64-musl", "wagmi", "heatmap.js", "napi-wasm", "block-stream2", "st", "pmtiles", "@deck.gl/extensions", "@types/react-simple-maps", "@types/json-diff", "node-sql-parser", "@shikijs/twoslash", "tap", "postcss-for", "react-switch", "brace", "sharp-ico", "@inversifyjs/prototype-utils", "@strapi/utils", "@cosmjs/stargate", "@types/vfile", "optional-js", "tap-mocha-reporter", "content-type-parser", "@ag-grid-enterprise/excel-export", "@fluentui/tokens", "jss-plugin-extend", "@earendil-works/pi-agent-core", "apollo3-cache-persist", "@graphql-inspector/similar-command", "@rive-app/react-canvas", "@netlify/edge-functions", "@tracetail/react", "@types/mimetext", "browser-split", "@salesforce/plugin-api", "@types/shallow-equals", "@heroui/theme", "tsoa", "@portabletext/patches", "@iconify-json/simple-icons", "libsodium-wrappers-sumo", "level-sublevel", "@nestjs/cqrs", "@salesforce/plugin-agent", "@parcel/runtime-service-worker", "npm-api", "@microlink/react-json-view", "@nuxt/eslint-plugin", "fingerprint-generator", "@capacitor/assets", "@zag-js/navigation-menu", "@types/stylus", "react-sortablejs", "breadth-filter", "img-loader", "bufferstreams", "caldate", "@react-navigation/devtools", "union-class-names", "macaddress", "@salesforce/plugin-deploy-retrieve", "@parcel/packager-css", "cli-list", "prefix-style", "raven", "@reach/dropdown", "fontless", "@salesforce/plugin-data", "@salesforce/plugin-templates", "substyle", "extract-text-webpack-plugin", "@leafygreen-ui/typography", "@emmetio/html-matcher", "@pandacss/node", "html2canvas-pro", "font-measure", "@nomicfoundation/edr-linux-arm64-gnu", "@types/react-relay", "vue-class-component", "yaku", "base32-encode", "@oxc-transform/binding-win32-x64-msvc", "leaflet-draw", "@thednp/event-listener", "@scalar/hono-api-reference", "@unocss/preset-icons", "http-graceful-shutdown", "mcp-remote", "jsonpointer.js", "@vendia/serverless-express", "image-to-base64", "@payloadcms/graphql", "koa-logger", "ink-testing-library", "@orpc/openapi", "@emmetio/stream-reader-utils", "unified-message-control", "printf", "@napi-rs/triples", "@oxc-transform/binding-linux-arm64-musl", "apollo-language-server", "lodash.every", "@earendil-works/pi-tui", "@nuxt/ui", "@auth0/nextjs-auth0", "@turbo/windows-arm64", "@types/imagemin-optipng", "ink-link", "@types/libsodium-wrappers", "@prefresh/core", "merge-class-names", "@types/analytics-node", "regl-error2d", "fast-isnumeric", "@babel/plugin-proposal-throw-expressions", "@types/node-schedule", "lodash.compact", "mouse-change", "react-css-styled", "passport-http", "react-feather", "@uppy/informer", "@unhead/ssr", "@aws-crypto/cache-material", "@orpc/shared", "cross-spawn-windows-exe", "@deck.gl/google-maps", "jsan", "ngx-infinite-scroll", "glsl-token-properties", "@ibm/telemetry-js", "syncpack-linux-x64-musl", "require-dir", "@nuxt/friendly-errors-webpack-plugin", "arr-rotate", "typedarray-dts", "http-post-message", "@number-flow/react", "@paypal/react-paypal-js", "@zenuml/core", "@aws-sdk/util-create-request", "@apollo/rover", "fd", "@ag-grid-enterprise/rich-select", "@types/autosuggest-highlight", "@turf/boolean-touches", "oclif", "@unocss/preset-web-fonts", "@vibrant/quantizer-mmcq", "express-http-context", "@fluentui/react-alert", "@clerk/types", "@microsoft/load-themed-styles", "vitest-axe", "async-value", "parse-data-uri", "@salesforce/cli", "@webcomponents/shadycss", "@mastra/loggers", "@pinecone-database/pinecone", "section-iterator", "eslint-no-restricted", "@nrwl/nx-linux-x64-gnu", "font-atlas", "pnpm-workspace-yaml", "@unocss/preset-typography", "gitignore-to-glob", "@protobuf-ts/grpcweb-transport", "@material/auto-init", "@parcel/packager-svg", "dexie-react-hooks", "@mikro-orm/postgresql", "@stellar/js-xdr", "@oxc-resolver/binding-darwin-arm64", "@rudderstack/analytics-js", "@turf/quadrat-analysis", "@sagold/json-query", "@wallet-standard/wallet", "@chakra-ui/react-use-focus-effect", "min-dom", "@nomicfoundation/solidity-analyzer-darwin-arm64", "connect-timeout", "@nestjs-modules/mailer", "@types/imagemin-svgo", "@silvia-odwyer/photon-node", "@tremor/react", "@types/webgl-ext", "@types/base64-url", "parsejson", "blueimp-load-image", "ipv6-normalize", "@chakra-ui/react-use-disclosure", "@analytics/global-storage-utils", "@types/koa__cors", "stream-wormhole", "miniprogram-api-typings", "grant", "@napi-rs/nice-win32-ia32-msvc", "powerbi-client", "@reach/menu-button", "@salesforce/plugin-sobject", "@salesforce/plugin-telemetry", "@ngrx/component-store", "@pivanov/utils", "@prefresh/utils", "@clerk/shared", "@google-cloud/spanner", "material-icons", "@visx/pattern", "@salesforce/plugin-limits", "react-lazy-load-image-component", "@aws-sdk/client-lex-runtime-service", "zod-from-json-schema", "@napi-rs/nice-openharmony-arm64", "@aws-crypto/caching-materials-manager-node", "string-split-by", "temp-fs", "blob-polyfill", "@chakra-ui/lazy-utils", "shallow-clone-shim", "@tinyhttp/router", "@aws-sdk/client-auto-scaling", "@parcel/optimizer-image", "@radix-ui/themes", "eckles", "use-editable", "lodash._baseisequal", "type-flag", "error-callsites", "progress-webpack-plugin", "use-device-pixel-ratio", "@discordjs/formatters", "graphology-traversal", "@types/parse-package-name", "exports-loader", "@scalar/core", "@inversifyjs/container", "hast-util-format", "botid", "@aws-amplify/pubsub", "primereact", "sql-summary", "@leafygreen-ui/polymorphic", "@segment/analytics-page-tools", "js-xxhash", "@fortawesome/vue-fontawesome", "vitest-environment-nuxt", "custom-error-instance", "@turbo/windows-64", "physical-cpu-count", "@salesforce/plugin-marketplace", "@pdftron/webviewer", "babel-preset-gatsby", "eslint-ast-utils", "@node-rs/argon2", "@egjs/component", "@aws-crypto/raw-aes-keyring-node", "@hocuspocus/server", "@json2csv/plainjs", "@duckdb/duckdb-wasm", "@wallet-standard/features", "lodash._slice", "@types/tar-fs", "@inversifyjs/plugin", "swarm-js", "@rexxars/react-json-inspector", "lodash.last", "@sap/cds-compiler", "filtrex", "@oxfmt/binding-darwin-x64", "@parcel/packager-wasm", "@netlify/redirect-parser", "@react-hookz/web", "content-tag", "read-config-file", "@napi-rs/snappy-linux-x64-musl", "pubsub-js", "@prettier/plugin-oxc", "lodash.samplesize", "just-clone", "@types/normalize-path", "@rnx-kit/chromium-edge-launcher", "@vladfrangu/async_event_emitter", "@heroui/use-callback-ref", "@salesforce/plugin-org", "crossvent", "lodash.create", "@sap-devx/yeoman-ui-types", "pikaday", "@sqlite.org/sqlite-wasm", "expo-print", "@replit/vite-plugin-runtime-error-modal", "@fluentui/react-toolbar", "deep-freeze-strict", "esbuild-plugins-node-modules-polyfill", "material-symbols", "koa-helmet", "@parcel/reporter-tracer", "clean-deep", "@stablelib/hkdf", "@fluentui/react-carousel", "nosleep.js", "file-set", "typo-js", "@sanity/image-url", "findup", "next-transpile-modules", "@rails/actiontext", "use-effect-event", "@types/spark-md5", "@chakra-ui/react-use-event-listener", "bluebird-lst", "@storybook/manager-webpack5", "display-notification", "@blakeembrey/template", "@nuxt/eslint", "@babel/plugin-external-helpers", "@unocss/vite", "remark-message-control", "handlebars-utils", "collect.js", "contra", "@types/imagemin-gifsicle", "date.js", "@cosmjs/tendermint-rpc", "penpal", "unocss", "passwd-user", "multimap", "accounting", "@fastly/cli", "eslint-plugin-graphql", "@mermaid-js/mermaid-zenuml", "@unocss/transformer-directives", "object-identity-map", "@netlify/binary-info", "@fluentui/react-window-provider", "lodash._createwrapper", "@uppy/xhr-upload", "sjcl", "jquery-ujs", "deepcopy", "react-rx", "@lingui/macro", "react-google-autocomplete", "ember-rfc176-data", "@rushstack/npm-check-fork", "right-now", "tailwind-scrollbar-hide", "@fluentui/react-motion-components-preview", "@parcel/types-internal", "@stdlib/assert-has-uint8array-support", "@types/progress", "canonical-path", "@apollographql/graphql-language-service-utils", "@posthog/cli", "levenshtein-edit-distance", "propagating-hammerjs", "fetch-ponyfill", "@types/lodash.toupper", "li", "@percy/selenium-webdriver", "ogl", "connect-session-knex", "jpegtran-bin", "storybook-addon-performance", "jest-serializer-vue", "mock-require", "ml-spectra-processing", "@sap-ux/ui5-config", "@types/koa-bodyparser", "@rc-component/slider", "@types/swagger-ui-dist", "@opencensus/propagation-b3", "@wix/wix-code-types", "@apollographql/graphql-language-service-parser", "@remix-run/dev", "@wordpress/keycodes", "react-barcode", "ecstatic", "@pulumi/gcp", "@module-federation/vite", "ctype", "streamfilter", "@nomicfoundation/solidity-analyzer-linux-x64-musl", "@apollographql/graphql-language-service-types", "@fluentui/dom-utilities", "sqs-producer", "lambda-runtimes", "spacetime", "@react-native-community/geolocation", "nestjs-i18n", "@unocss/cli", "@vibrant/generator", "lodash._baseclone", "passport-facebook", "expo-navigation-bar", "@scalar/helpers", "@phosphor-icons/core", "reassure", "@unocss/transformer-attributify-jsx", "@antv/g-canvas", "@types/convert-source-map", "hdb", "cypress-wait-for-stable-dom", "@chakra-ui/dom-utils", "@types/promise-retry", "@sheerun/mutationobserver-shim", "@analytics/localstorage-utils", "@formatjs/intl-durationformat", "@nestjs/platform-ws", "medium-zoom", "@orpc/standard-server-aws-lambda", "@aws-sdk/client-acm", "@types/express-http-proxy", "mipd", "@types/webrtc", "@embroider/macros", "@mermaid-js/layout-elk", "react-svg", "array-unflat-js", "@mark.probst/typescript-json-schema", "@lezer/generator", "inspect-function", "@nomicfoundation/solidity-analyzer-win32-x64-msvc", "window-post-message-proxy", "@spruceid/siwe-parser", "@salesforce/types", "is-online", "compressorjs", "@carbon/icons-react", "@upstash/core-analytics", "cypress-plugin-tab", "@thednp/position-observer", "@sap/cds", "sst-linux-x64", "@types/bs58", "just-bash", "react-diff-viewer-continued", "vite-plugin-environment", "react-countdown", "ajv-formats-draft2019", "passthrough-counter", "codeowners", "json-server", "sudo-block", "@elevenlabs/react", "path-unified", "google-map-react", "@fastly/cli-linux-x64", "@chakra-ui/clickable", "@fluentui/react-color-picker", "topological-sort", "datauri", "koa-session", "acorn-class-fields", "graphql-sse", "babel-plugin-remove-graphql-queries", "@aws-sdk/client-codebuild", "@stablelib/ed25519", "@cloudflare/containers", "@stdlib/process-cwd", "array-normalize", "froala-editor", "final-form-arrays", "opus-decoder", "react-contenteditable", "ip-range-check", "graphql-middleware", "node-version", "magicli", "@maskito/kit", "@unocss/preset-attributify", "@base-ui-components/utils", "@inertiajs/vue3", "seekout", "@aws-sdk/client-redshift-data", "@e2b/code-interpreter", "measured-core", "@types/decamelize", "@hpke/core", "@grafana/faro-core", "oas-normalize", "@material/tooltip", "@types/path-browserify", "@analytics/storage-utils", "@chakra-ui/react-use-pan-event", "react-boxplot", "@salesforce/eslint-config-lwc", "@heroui/use-data-scroll-overflow", "extract-css", "@tsdown/css", "tap-yaml", "gatsby-legacy-polyfills", "https-localhost", "dockerfile-ast", "@devicefarmer/adbkit-monkey", "jest-environment-emit", "@unocss/preset-tagify", "@uppy/progress-bar", "@langchain/google-vertexai", "vite-plugin-monaco-editor", "@oxlint/linux-x64-musl", "@agentclientprotocol/claude-agent-acp", "@types/sequelize", "gatsby-cli", "@heroui/select", "@aws-amplify/interactions", "@docsearch/js", "@microsoft/applicationinsights-react-js", "stylelint-processor-styled-components", "@antfu/eslint-config", "atoa", "regl-line2d", "tiny-each-async", "@remix-run/express", "@types/express-rate-limit", "@chakra-ui/react-use-size", "react-native-qrcode-svg", "elastic-builder", "@angular-devkit/build-optimizer", "isoformat", "gatsby-plugin-utils", "@fluentui/react-rating", "dom-to-image", "@vue/preload-webpack-plugin", "@oclif/plugin-which", "yaml-js", "@mapbox/sphericalmercator", "babel-literal-to-ast", "semantic-ui-react", "nanocolors", "yeoman-character", "geobuf", "@analytics/session-storage-utils", "i18next-http-middleware", "@swc/plugin-emotion", "@nomicfoundation/solidity-analyzer-linux-arm64-gnu", "monocart-locator", "@chakra-ui/react-use-timeout", "dom-storage", "@luma.gl/shadertools", "regexp-clone", "@payloadcms/translations", "@chakra-ui/react-use-outside-click", "@electron-forge/maker-squirrel", "botframework-connector", "@fluentui/react-focus", "@progress/kendo-licensing", "@native-html/css-processor", "unplugin-icons", "graphql-import", "absolute-path", "@sanity/logos", "pushdata-bitcoin", "quicktype", "@napi-rs/canvas-linux-arm64-gnu", "@xterm/addon-fit", "@aws-crypto/hkdf-node", "@fluentui/react-tag-picker", "@cdklabs/tskb", "@scalar/typebox", "path-temp", "@pnpm/parse-overrides", "@backstage/integration", "ci-env", "base64-arraybuffer-es6", "twemoji-parser", "@ark/util", "style-data", "parse-rect", "@better-auth/utils", "@pnpm/linux-arm64", "@contentful/rich-text-plain-text-renderer", "simple-icons", "detect-kerning", "@oclif/multi-stage-output", "@types/dns-packet", "botbuilder-stdlib", "@microsoft/app-manifest", "@capacitor/device", "css-font-weight-keywords", "@mastra/pg", "vite-plugin-css-injected-by-js", "@eth-optimism/core-utils", "futoin-hkdf", "officeparser", "@analogjs/vite-plugin-angular", "shepherd.js", "babel-plugin-transform-import-meta", "prosemirror-utils", "@types/nodemon", "graphql-extensions", "@node-llama-cpp/linux-armv7l", "serverless-domain-manager", "fast-jwt", "@workflow/errors", "node-bin-setup", "@chakra-ui/css-reset", "@datastructures-js/heap", "redux-saga-test-plan", "is-file-esm", "@types/snowflake-sdk", "audio-decode", "@parcel/optimizer-swc", "create-gatsby", "console-clear", "popsicle", "pandemonium", "@stdlib/math-base-assert-is-infinite", "lodash.support", "vitest-canvas-mock", "@types/jwk-to-pem", "@antv/component", "eslint-snapshot-test", "base62", "@sagold/json-pointer", "form-data-lite", "@types/jqueryui", "stream-chat", "@chakra-ui/react-use-latest-ref", "markdown-it-abbr", "@earendil-works/pi-coding-agent", "gatsby-link", "x256", "run-script-os", "@polkadot/x-textdecoder", "@plotly/d3-sankey", "typesafe-path", "gatsby-react-router-scroll", "jsdoctypeparser", "masonry-layout", "@keystonehq/bc-ur-registry-eth", "@stablelib/sha512", "@storybook/preset-create-react-app", "@types/cordova", "expect-puppeteer", "@vue-flow/core", "@fontsource/open-sans", "git-describe", "@asyncapi/openapi-schema-parser", "react-otp-input", "micro-api-client", "utility", "@tsd/typescript", "@sanity/generate-help-url", "twitter-api-v2", "@daytonaio/sdk", "@capacitor/keyboard", "@nicolo-ribaudo/semver-v6", "@sanity/telemetry", "sander", "@tracetail/js", "lodash._basebind", "jsx-ast-utils-x", "@stdlib/complex-reimf", "appium-chromium-driver", "ticky", "electron-installer-dmg", "@chakra-ui/react-use-controllable-state", "@vercel/cli-auth", "@floating-ui/react-native", "@reach/combobox", "@antv/g2", "rosie", "@lovable.dev/vite-plugin-dev-server-bridge", "@heroui/system-rsc", "@activepieces/pieces-framework", "@urql/exchange-auth", "stylelint-value-no-unknown-custom-properties", "react-arborist", "@rollup/plugin-url", "@upstash/qstash", "@parcel/runtime-react-refresh", "close-with-grace", "@egjs/agent", "assemblyai", "apify-client", "stylis-plugin-rtl", "@polka/send-type", "npm-package-json-lint", "mergexml", "ebec", "@fluentui/react-teaching-popover", "dragula", "gatsby", "@uppy/file-input", "@uppy/drag-drop", "@clerk/themes", "@apollographql/graphql-language-service-interface", "@mastra/observability", "mjolnir.js", "ast-transform", "@solana-program/compute-budget", "@laravel/vite-plugin-wayfinder", "@scena/matrix", "@sap-ux/yaml", "chrome-extension-hot-reload", "@sanity/color", "inline-css", "@applitools/css-tree", "primeflex", "@types/jump.js", "@fluentui/react-toast", "@handlebars/parser", "@types/rsocket-flowable", "@sveltejs/adapter-auto", "@tanstack/hotkeys", "react-international-phone", "@pgsql/types", "starkbank-ecdsa", "@ionic/core", "@turbopuffer/turbopuffer", "fastify-type-provider-zod", "cleave.js", "strongly-connected-components", "@types/simple-oauth2", "@testcontainers/toxiproxy", "@segment/analytics-react-native", "@aws-sdk/client-codepipeline", "use-local-storage-state", "@cloudflare/workerd-darwin-64", "@capsizecss/core", "pepper-scanner", "@stdlib/os-byte-order", "@json-render/react", "@loaders.gl/mvt", "tailwindcss-logical", "@syncfusion/ej2-base", "babel-plugin-transform-imports", "@ebay/nice-modal-react", "@aws-sdk/client-wafv2", "@descope/core-js-sdk", "dts-bundle-generator", "lodash.range", "koa-etag", "imagesloaded", "react-native-dotenv", "@unocss/inspector", "has-passive-events", "@antv/event-emitter", "react-native-codegen", "@atlaskit/feature-gate-js-client", "@napi-rs/canvas-linux-arm64-musl", "@actions/glob", "@netlify/headers-parser", "tether", "react-relay", "gatsby-plugin-typescript", "@vaadin/field-base", "rxjs-compat", "@reach/machine", "tailwindcss-radix", "run-jxa", "@chakra-ui/react-use-previous", "@flmngr/flmngr-vue", "request-compose", "update-diff", "fscreen", "ses", "asar", "@braidai/lang", "react-slider", "rgb-hex", "@prisma/internals", "react-diff-viewer", "exa-js", "remark-lint", "persona", "@fluentui/react-motion", "@tanstack/react-hotkeys", "@types/dogapi", "get-pixels", "unidragger", "@rsbuild/plugin-check-syntax", "objection", "angularx-qrcode", "@ckeditor/ckeditor5-fullscreen", "@polkadot/x-bigint", "@reach/tooltip", "audio-buffer", "blob-to-buffer", "jsoneditor", "@types/intercom-web", "get-random-values", "botbuilder-core", "rename-overwrite", "update-input-width", "@aws-sdk/client-bedrock-agent", "@electron-forge/maker-deb", "expo-calendar", "gatsby-plugin-page-creator", "@typescript/native-preview-linux-arm", "io-ts-reporters", "@google-cloud/documentai", "hyperformula", "@xrplf/secret-numbers", "draftjs-utils", "pizzip", "angular-oauth2-oidc", "@types/imagemin-mozjpeg", "fnv-plus", "@types/randomstring", "@elysiajs/cors", "@aws-cdk/aws-service-spec", "@react-types/accordion", "mixwith", "@chakra-ui/number-utils", "@types/etag", "css-jss", "@sap-ux/store", "@types/angular", "@parse/node-apn", "@heroicons/vue", "@apphosting/build", "pad", "@vis.gl/react-mapbox", "@portabletext/sanity-bridge", "@near-js/transactions", "protoc-gen-ts", "itty-router", "miragejs", "eslint-plugin-pnpm", "@azure/msal-angular", "mailslurp-client", "botbuilder-dialogs-adaptive-runtime-core", "@modelcontextprotocol/server-filesystem", "bpmn-moddle", "level-peek", "@import-maps/resolve", "@heroui/system", "ts-expect", "jsii", "ansistyles", "glsl-token-assignments", "rollup-plugin-polyfill-node", "@actions/tool-cache", "level-hooks", "@fluentui/react-list", "js2xmlparser2", "electron-context-menu", "react-lazyload", "@tiptap/extension-collaboration-caret", "unplugin-dts", "@currents/commit-info", "@splitsoftware/splitio", "graphql-mapping-template", "sh-syntax", "runtypes", "@dynamic-labs-wallet/core", "mdast-util-toc", "hbs", "object-code", "@fluentui/react-skeleton", "@plotly/d3", "@node-minify/terser", "relay-compiler", "@nomicfoundation/solidity-analyzer-linux-arm64-musl", "array-source", "react-loader-spinner", "@microsoft/fast-foundation", "react-responsive-masonry", "@types/lodash.kebabcase", "typeson", "jest-dev-server", "@octokit/graphql-schema", "@oxfmt/binding-win32-arm64-msvc", "@xterm/addon-serialize", "@verdaccio/hooks", "@types/await-timeout", "@fluent/syntax", "@stdlib/constants-float64-min-base2-exponent-subnormal", "prosemirror-highlight", "@wordpress/warning", "ultracite", "outlayer", "react-collapse", "@fluentui/keyboard-key", "@types/pidusage", "node-pg-migrate", "@plasmohq/parcel-core", "@privy-io/js-sdk-core", "@trezor/env-utils", "svg-path-bounds", "@oxfmt/binding-linux-arm64-musl", "qs-esm", "express-async-handler", "formatio", "@google-cloud/recaptcha-enterprise", "@capacitor/preferences", "graphql-transformer-common", "zen-push", "is-js-type", "matter-js", "@callstack/reassure-measure", "stringset", "express-useragent", "typia", "lodash._arrayeach", "cls-bluebird", "list-stylesheets", "@asyncapi/avro-schema-parser", "to-float32", "elementary-circuits-directed-graph", "ngraph.graph", "react-native-purchases", "@polymer/polymer", "level-filesystem", "prettier-plugin-sh", "typescript-paths", "@elevenlabs/elevenlabs-js", "@fluentui/react-popover", "tone", "@remotion/licensing", "@breejs/later", "@napi-rs/nice-linux-arm-gnueabihf", "autobind-decorator", "next-pwa", "google-auto-auth", "plotly.js-dist-min", "@eslint-react/tools", "@ckeditor/ckeditor5-react", "vite-bundle-visualizer", "@jsonforms/core", "@workflow/utils", "geo-tz", "@apollo/query-graphs", "powerbi-router", "@fastify/websocket", "url-regex-safe", "draft-js-utils", "@vercel/webpack-asset-relocator-loader", "json-merge-patch", "@wordpress/is-shallow-equal", "plasmo", "checkpoint-client", "subtag", "react-native-helmet-async", "randomcolor", "@fumadocs/tailwind", "http-z", "gatsby-page-utils", "@graphql-inspector/json-loader", "@types/lodash.omit", "react-split-pane", "sha256-uint8array", "netlify", "@analytics/core", "@pnpm/lockfile.merger", "flush-promises", "@escape.tech/graphql-armor-max-depth", "astro-eslint-parser", "@sanity/visual-editing-csm", "@emotion/babel-plugin-jsx-pragmatic", "@types/clone", "@graphql-codegen/import-types-preset", "@backstage/cli-node", "@excalidraw/excalidraw", "global-object", "@graphql-inspector/code-loader", "@pnpm/catalogs.types", "@json-schema-tools/dereferencer", "is-get-set-prop", "js-types", "http2-proxy", "deglob", "ip3country", "@wordpress/compose", "@mui/x-data-grid-premium", "@temporalio/nexus", "acorn-private-class-elements", "limax", "esrever", "wtf-8", "bcp47", "json-lexer", "@dnd-kit/collision", "username-sync", "eslint-plugin-no-barrel-files", "@fluentui/react-nav", "@types/sqlite3", "gatsby-graphiql-explorer", "superscript-text", "koa-morgan", "@upstash/context7-mcp", "nanopop", "@mantine/carousel", "@prisma/prisma-schema-wasm", "await-timeout", "@stellar/stellar-base", "mongodb-uri", "ng2-pdf-viewer", "@testcontainers/localstack", "@amplitude/rrweb-plugin-console-record", "react-datetime", "@firebase/polyfill", "@workflow/world-vercel", "@strapi/design-system", "json-edit-react", "text-mask-addons", "elasticsearch", "@sanity/webhook", "is-proto-prop", "@vscode-logging/logger", "maska", "ts-unused-exports", "datatables.net-dt", "@storybook/addon-coverage", "@types/pg-cursor", "@reportportal/client-javascript", "@fortawesome/angular-fontawesome", "@google-cloud/speech", "@tauri-apps/plugin-shell", "@types/passport-facebook", "yargonaut", "sha", "@tsconfig/react-native", "update-section", "css-to-mat", "codemirror-spell-checker", "passport-oauth", "shcmd", "@apollo/gateway", "@pnpm/object.key-sorting", "@fullcalendar/timeline", "@types/object-inspect", "react-native-base64", "messageformat-formatters", "human-interval", "it-all", "@solid-primitives/media", "cross-spawn-async", "browserstack-node-sdk", "packrup", "@restart/context", "@okta/okta-react", "@oslojs/crypto", "picomodal", "@daytonaio/api-client", "desandro-matches-selector", "vue3-apexcharts", "ngx-color-picker", "didyoumean2", "remark-cli", "@ts-common/iterator", "flowbite-datepicker", "@types/clear", "keen-slider", "gulp-filter", "babel-plugin-transform-async-to-promises", "@microsoft/fast-web-utilities", "@graphiql/plugin-doc-explorer", "@mysten/sui", "unified-args", "clean-yaml-object", "node-status-codes", "@vaadin/text-field", "co-prompt", "@oxc-resolver/binding-win32-x64-msvc", "file-source", "charcodes", "@nats-io/nuid", "@salesforce/source-tracking", "clamscan", "array-rearrange", "@expressive-code/plugin-shiki", "@stdlib/constants-float64-max-base2-exponent-subnormal", "@apollo/query-planner", "apollo-cache-control", "node", "posthtml-rename-id", "@stryker-mutator/typescript-checker", "@types/elliptic", "imagemin-jpegtran", "react-native-progress", "apg-js", "xstream", "@toruslabs/constants", "level-packager", "laravel-mix", "@emotion/babel-preset-css-prop", "@types/request-promise", "html-to-draftjs", "replaceall", "empower-core", "@netlify/node-cookies", "regl-scatter2d", "graphql-relay", "sb-promise-queue", "stringmap", "cfonts", "@storybook/react-native-ui", "@types/parse-link-header", "karma-cli", "find-packages", "keyboard-key", "prettier-plugin-sort-json", "lodash._arraycopy", "@pixi/constants", "core-object", "net", "log-ok", "@scalar/snippetz", "best-effort-json-parser", "@wdio/junit-reporter", "shallow-compare", "@udecode/react-utils", "common-sequence", "timeago.js", "@vscode/extension-telemetry", "mdast", "extended-eventsource", "electron-squirrel-startup", "@node-rs/xxhash-linux-x64-musl", "@types/commander", "@stdlib/number-float64-base-from-words", "@azure/communication-common", "@growthbook/growthbook-react", "@payloadcms/ui", "is-git-ref-name-valid", "rfc6902", "@stdlib/buffer-ctor", "react-full-screen", "unzip-crx-3", "@unocss/reset", "@clerk/backend", "@fluentui/date-time-utilities", "@napi-rs/nice-android-arm-eabi", "@maxmind/geoip2-node", "this-file", "lodash._setbinddata", "@oxc-transform/binding-darwin-x64", "jsonexport", "@metamask/abi-utils", "hsluv", "rename-keys", "serialport", "@types/slug", "graphql-fields", "chai-deep-match", "@vaadin/checkbox", "@apollo/composition", "amplitude-js", "@statsig/statsig-node-core", "@types/body-scroll-lock", "@apidevtools/swagger-cli", "react-instantsearch", "wretch", "@shopify/admin-api-client", "7zip-bin", "death", "eslint-template-visitor", "@plasmohq/parcel-transformer-manifest", "@tanstack/zod-adapter", "@napi-rs/nice-linux-s390x-gnu", "@ckeditor/ckeditor5-integrations-common", "has-hover", "@godaddy/terminus", "eslint-plugin-ava", "@assistant-ui/store", "pino-roll", "es-mime-types", "cypress-localstorage-commands", "maxstache", "lodash.tail", "@tinyhttp/proxy-addr", "@pulumi/tls", "@portabletext/keyboard-shortcuts", "cache-parser", "@types/qunit", "@syncfusion/ej2-buttons", "d3-octree", "@remote-ui/core", "string-range", "@pixi/runner", "@aws-sdk/client-service-quotas", "@urql/exchange-graphcache", "@wordpress/dom", "@serwist/build", "@types/jspdf", "rollup-plugin-node-externals", "gulp-typescript", "speech-rule-engine", "@heroui/card", "@progress/kendo-svg-icons", "react-qr-reader", "@html-validate/stylish", "fstream-ignore", "@nivo/canvas", "@zodios/core", "ansi-green", "@bugsnag/source-maps", "appium-geckodriver", "@protobuf-ts/plugin-framework", "d3-tip", "@openzeppelin/contracts-upgradeable", "netlify-redirector", "@microsoft/fast-element", "@playwright/browser-webkit", "classlist-polyfill", "buble", "@tiptap/extension-drag-handle-react", "@vscode/debugprotocol", "@types/passport-http-bearer", "zod-openapi", "@apollo/federation", "deep-for-each", "@chakra-ui/card", "@oxc-resolver/binding-linux-arm-gnueabihf", "replace", "mailcomposer", "@graphql-inspector/validate-command", "vue-echarts", "webpack-retry-chunk-load-plugin", "@react-pdf-viewer/print", "@rn-primitives/slot", "razorpay", "@graphql-inspector/serve-command", "@aws-crypto/kms-keyring-node", "grunt-contrib-concat", "vue-jest", "@yornaath/batshit-devtools", "react-lottie-player", "slackify-markdown", "@types/url-join", "jest-preset-stylelint", "@aws-sdk/client-lex-runtime-v2", "node-match-path", "@applitools/logger", "tryor", "@mantine/code-highlight", "browserslist-to-es-version", "statsig-node", "react-querybuilder", "humanize-url", "@vscode/codicons", "jquery-mousewheel", "@portabletext/schema", "@serwist/window", "migrate-mongo", "keymirror", "@types/redlock", "@builder.io/partytown", "playwright-ctrf-json-reporter", "@stricli/core", "@tanstack/db", "@types/react-pdf", "get-set-props", "int53", "dont-sniff-mimetype", "@types/svg-arc-to-cubic-bezier", "@lvce-editor/verror", "gulp-plumber", "@icons-pack/react-simple-icons", "bmpimagejs", "tom-select", "prettysize", "interface-datastore", "@toon-format/toon", "css-gradient-parser", "koa-passport", "jsonlint", "@oxc-resolver/binding-win32-arm64-msvc", "is-bluebird", "highlight-words", "@parcel/transformer-sass", "@prettier/sync", "simple-peer", "fractional-indexing", "react-draft-wysiwyg", "@visx/drag", "acorn-static-class-features", "@css-inline/css-inline-linux-x64-gnu", "ol-mapbox-style", "xpath.js", "@devexpress/utils", "@wasm-audio-decoders/opus-ml", "@graphql-inspector/coverage-command", "react-papaparse", "@vitejs/plugin-vue2", "appium-safari-driver", "@expo/react-native-action-sheet", "@azure/functions-extensions-base", "@virtuoso.dev/react-urx", "@typeform/embed-react", "@react-pdf-viewer/page-navigation", "http", "@genkit-ai/core", "@types/recursive-readdir", "await-lock", "@jercle/yargonaut", "react-use-gesture", "@types/webgl2", "@types/sqlstring", "@fontsource/ibm-plex-mono", "ember-auto-import", "@trapezedev/gradle-parse", "v-calendar", "chakra-react-select", "@poppinss/utils", "axios-cache-interceptor", "injectpromise", "@types/react-date-range", "@pulumi/query", "vue-server-renderer", "@types/heic-convert", "@tamagui/constants", "@fast-check/jest", "@uiw/color-convert", "node-polyglot", "@simonwep/pickr", "lil-http-terminator", "fs-promise", "@netlify/cache-utils", "unleash-proxy-client", "@vuelidate/core", "simple-fmt", "diacritic", "@tanstack/db-ivm", "@readme/better-ajv-errors", "mobile-detect", "@tamagui/use-force-update", "@tsparticles/plugin-rgb-color", "@pixi/core", "@storybook/react-native-ui-common", "ml-distance-euclidean", "@atlaskit/atlassian-context", "@aws-amplify/cli", "json-schema-walker", "tree-kit", "suf-log", "cucumber", "react-native-date-picker", "reactotron-react-native", "png-async", "string-kit", "@antv/path-util", "@oxc-transform/binding-win32-arm64-msvc", "@launchdarkly/js-client-sdk-common", "@daytonaio/toolbox-api-client", "@amcharts/amcharts5", "rangetouch", "replace-string", "merge-value", "victory-polar-axis", "@pixi/ticker", "facebook-nodejs-business-sdk", "@splidejs/splide", "hono-openapi", "babel-plugin-transform-inline-environment-variables", "@solana/wallet-standard-features", "@ngrx/schematics", "@types/lodash.groupby", "survey-core", "alter", "sb-scandir", "@revenuecat/purchases-typescript-internal", "@asyncapi/protobuf-schema-parser", "@unocss/preset-wind3", "@adora-so/adora-js", "nano-pubsub", "@scalar/sidebar", "@azure/search-documents", "react-native-size-matters", "react-final-form-arrays", "inspect-parameters-declaration", "bitcoin-ops", "get-ready", "@serialport/parser-inter-byte-timeout", "victory-voronoi-container", "@types/stripe", "yesno", "@heroui/react-rsc-utils", "@wordpress/escape-html", "stream-replace-string", "@sanity/export", "decorator-transforms", "@lwc/babel-plugin-component", "@vercel/kv", "@pixi/utils", "@pixi/math", "eslint-plugin-react-native-a11y", "i18next-chained-backend", "@capacitor/camera", "@babel/plugin-proposal-function-sent", "@sap/cf-tools", "@react-pdf-viewer/rotate", "hash-for-dep", "@tsconfig/bun", "source-map-generator", "@vreden/youtube_scraper", "@syncfusion/ej2-popups", "@sparticuz/chromium", "@ckeditor/ckeditor5-special-characters", "@tsparticles/updater-rotate", "@sap/hdi-deploy", "@google-cloud/aiplatform", "@types/gensync", "jsox", "monaco-graphql", "assets-webpack-plugin", "ts_dependency_graph", "@pyroscope/nodejs", "@react-native-community/eslint-plugin", "is-obj-prop", "@tamagui/timer", "datadog-cdk-constructs-v2", "@better-auth/expo", "@tanstack/react-pacer", "node-hex", "@stylistic/stylelint-plugin", "monaco-types", "@primevue/icons", "webpack-core", "@okta/jwt-verifier", "yaml-lint", "libnpmconfig", "@parcel/reporter-cli", "@types/stripe-v3", "typescript-event-target", "deep-rename-keys", "@netlify/functions-utils", "@wasm-audio-decoders/common", "@virtuoso.dev/urx", "@vaadin/vaadin-lumo-styles", "jest-specific-snapshot", "gatsby-sharp", "hyparquet", "pick-by-alias", "@metaplex-foundation/beet-solana", "@types/on-headers", "tinykeys", "lockfile-lint", "@sendgrid/eventwebhook", "@aws-amplify/graphql-directives", "@effect/sql", "@types/sprintf-js", "factory.ts", "buildmail", "@bytecodealliance/weval", "@mintlify/common", "@atlaskit/analytics-next", "@microsoft/rush-lib", "lodash.invokemap", "roboto-fontface", "@fluentui/react-search", "@aws-sdk/client-pinpoint", "lodash.keysin", "react-frame-component", "graphql-parse-resolve-info", "@cloudflare/workers-shared", "@azure/openai", "exeunt", "@googleapis/admin", "@chakra-ui/stepper", "react-hotkeys", "@pnpm/catalogs.protocol-parser", "@fastify/autoload", "esbuild-plugin-copy", "posthtml-svg-mode", "firecrawl", "diagram-js", "@types/oidc-provider", "plyr", "child-process-promise", "eslint-plugin-rxjs", "@serialport/parser-byte-length", "@sanity/util", "get-package-info", "eslint-plugin-prefer-arrow-functions", "wolfy87-eventemitter", "prepin", "obj-props", "detect-it", "path-is-network-drive", "tw-to-css", "@vscode-logging/types", "path-strip-sep", "@cubejs-client/core", "@vaadin/grid", "angular-sanitize", "@oxc-transform/binding-freebsd-x64", "@oxc-transform/binding-android-arm64", "@workflow/rollup", "upath2", "buffer-equals", "@fluentui/react-avatar", "currency-codes", "interface-store", "@napi-rs/simple-git", "@orpc/standard-server-node", "@oxlint/binding-win32-ia32-msvc", "reconnecting-websocket", "@scalar/use-toasts", "@netlify/plugins-list", "@types/geoip-lite", "fwd-stream", "orchestrator", "regextras", "serwist", "bloom-filters", "pubnub", "s3rver", "vite-plugin-top-level-await", "react-d3-tree", "@serialport/parser-cctalk", "camelize-ts", "@rc-component/collapse", "@stripe/stripe-react-native", "pluralize-esm", "victory-box-plot", "domready", "stream-via", "algosdk", "@scalar/icons", "@vee-validate/zod", "@trigger.dev/core", "type-name", "postcss-markdown", "@pandacss/preset-panda", "mongoose-legacy-pluralize", "@pnpm/lockfile.utils", "tailwind-csstree", "@hyperjump/json-pointer", "@nomicfoundation/solidity-analyzer", "@fluentui/set-version", "heic-to", "tz-lookup", "@react-pdf-viewer/theme", "simple-yenc", "@tsparticles/shape-star", "ngeohash", "testem", "cassandra-driver", "@knocklabs/client", "pa11y", "@pandacss/preset-base", "lodash._baseflatten", "@sap/xssec", "hex2dec", "@editorjs/editorjs", "@rsbuild/plugin-type-check", "@gatsbyjs/reach-router", "@emotion/babel-utils", "sscaff", "mingo", "@plasmohq/parcel-resolver-post", "tiny-jsonc", "sequencify", "@mariozechner/clipboard-linux-x64-musl", "@types/mapbox__mapbox-gl-draw", "@aws-sdk/middleware-sdk-s3-control", "xml-lexer", "impit", "@salesforce/o11y-reporter", "fuzzy-search", "@aws-sdk/client-appsync", "@blueprintjs/core", "@types/lz-string", "@hotwired/stimulus-webpack-helpers", "inferno-vnode-flags", "@types/matter-js", "vite-plugin-commonjs", "changelog-filename-regex", "hawiah", "lineclip", "@statsig/statsig-node-core-linux-x64-gnu", "@genkit-ai/ai", "cleye", "@oxc-resolver/binding-freebsd-x64", "vanilla-cookieconsent", "sqlite", "@webcomponents/webcomponentsjs", "@posthog/ai", "@types/humps", "log-utils", "ldapjs", "@dnd-kit/react", "@types/html-webpack-plugin", "svg-baker", "calculate-cache-key-for-tree", "package-config", "level-blobs", "@types/ndjson", "postcode-validator", "@vercel/sdk", "@types/json-pointer", "construct-style-sheets-polyfill", "@loydjs/schema", "stream-to", "@floating-ui/react-dom-interactions", "cdk8s", "@adiwajshing/keyed-db", "expo-intent-launcher", "@emurgo/cardano-serialization-lib-browser", "@netlify/api", "easy-bem", "@aws-sdk/client-organizations", "@azure/core-sse", "@tsparticles/shape-image", "@simplewebauthn/types", "date-bengali-revised", "@node-rs/argon2-linux-x64-gnu", "is-type", "eslint-plugin-react-jsx", "@syncfusion/ej2-icons", "atlassian-openapi", "@backstage/config-loader", "@ant-design/pro-utils", "cache-manager-redis-store", "react-native-collapsible", "ethereumjs-abi", "gl-text", "@fluentui/react-tooltip", "@ant-design/pro-provider", "@pnpm/catalogs.resolver", "@cacheable/memoize", "@nrwl/node", "@effect/experimental", "jotai-family", "@pandacss/core", "react-router-redux", "@types/highlight.js", "react-places-autocomplete", "@react-pdf-viewer/selection-mode", "express-urlrewrite", "@devcontainers/cli", "@thi.ng/api", "jest-websocket-mock", "date-chinese", "@remote-ui/react", "@types/json-patch", "@orpc/interop", "codec-parser", "centrifuge", "@pothos/core", "@pixi/display", "broccoli-concat", "@types/convict", "@elastic/apm-rum-core", "@intlify/h3", "@codemirror/lang-jinja", "@twurple/common", "@wordpress/icons", "@contentful/rich-text-html-renderer", "@antv/g", "xml-reader", "@react-pdf-viewer/properties", "prettier-plugin-java", "arkregex", "svgson", "@stacks/common", "@fluentui/style-utilities", "@nrwl/react", "@mastra/mcp", "electron-installer-debian", "shlex", "json-dup-key-validator", "single-spa-react", "netlify-cli", "open-cli", "@calcom/embed-core", "@fluentui/react-dialog", "@ckeditor/ckeditor5-mention", "@glimmer/reference", "octal", "terminal-columns", "mpg123-decoder", "babel-plugin-require-context-hook", "@types/css-mediaquery", "cpx2", "testcafe-hammerhead", "ember-source", "@architect/asap", "extract-from-css", "github-markdown-css", "@fluentui/react-menu", "@open-wc/scoped-elements", "@progress/kendo-popup-common", "@progress/kendo-drawing", "@heroui/use-disclosure", "@architect/inventory", "@antv/layout", "@payloadcms/richtext-lexical", "shrink-ray-current", "css-modules-loader-core", "cron-validator", "jsdoc-api", "@optimizely/optimizely-sdk", "@ledgerhq/hw-transport-webhid", "css-rule-stream", "@fastify/http-proxy", "remark-lint-ordered-list-marker-style", "graphql-jit", "vue-select", "adal-node", "@newrelic/superagent", "@fluentui/react-textarea", "@mariozechner/clipboard-win32-x64-msvc", "@yeoman/adapter", "nano-memoize", "@sanity/import", "@types/react-outside-click-handler", "print-js", "decode-formdata", "@serialport/stream", "genkit", "@aws-lite/ssm", "@google/gemini-cli-core", "prettier-plugin-sql", "gcs-resumable-upload", "prettify-xml", "rehype-attr", "htmlencode", "@react-pdf-viewer/get-file", "@oxlint/binding-openharmony-arm64", "@deck.gl/json", "@parcel/rust-linux-x64-gnu", "@netlify/build", "@resvg/resvg-js-linux-x64-musl", "react-autosize-textarea", "franc-min", "@types/moment-duration-format", "react-prop-types", "@aws-sdk/client-glue", "@polkadot/wasm-crypto", "@plotly/d3-sankey-circular", "pkg", "@antv/hierarchy", "ngx-build-plus", "make-synchronized", "@nivo/funnel", "@oxc-resolver/binding-linux-riscv64-gnu", "@pnpm/lockfile.fs", "vue-flow-layout", "gql.tada", "@glimmer/global-context", "multiple-cucumber-html-reporter", "@fastify/view", "@zeit/dns-cached-resolve", "@miyaneee/rollup-plugin-json5", "@vercel/style-guide", "@fluentui/react-shared-contexts", "nuxt-site-config-kit", "detect-passive-events", "@safe-global/safe-gateway-typescript-sdk", "react-keyed-flatten-children", "ogg-opus-decoder", "jstransform", "@types/lodash.set", "@anthropic-ai/claude-agent-sdk-darwin-arm64", "@aws-amplify/ui", "@react-pdf-viewer/search", "call-signature", "form-urlencoded", "@esbuild-kit/cjs-loader", "@types/protocol-buffers-schema", "@google-cloud/text-to-speech", "@toruslabs/eccrypto", "mocha-suppress-logs", "accept-language", "@node-rs/jieba", "@oxc-transform/binding-linux-arm-gnueabihf", "quasar", "mapbox-to-css-font", "@nrwl/linter", "onecolor", "@motionone/vue", "eslint-rspack-plugin", "@base-ui-components/react", "markdownlint-rule-helpers", "connection-parse", "vscode-markdown-languageservice", "@wasm-audio-decoders/flac", "env-schema", "@cloudinary/url-gen", "@newrelic/koa", "@quasar/extras", "@web/dev-server-core", "@mjackson/headers", "destroyable-server", "sherif-linux-x64", "@types/loader-utils", "recordrtc", "strict-url-sanitise", "@revenuecat/purchases-js-hybrid-mappings", "@types/base64-js", "@linaria/tags", "@remote-ui/types", "@wdio/cucumber-framework", "@ant-design/pro-layout", "viewport-mercator-project", "default-shell", "ember-cli-string-utils", "require_optional", "@andrewbranch/untar.js", "stream-counter", "object-to-spawn-args", "@telegraph/layout", "@fluentui/react-tabster", "@firebase/messaging-types", "@electron-forge/plugin-auto-unpack-natives", "@calcom/embed-snippet", "@ember-data/rfc395-data", "@types/fs-capacitor", "@open-rpc/schema-utils-js", "@remix-run/serve", "@types/sha.js", "@calcom/embed-react", "franc", "@typechain/ethers-v5", "eslint-plugin-sort-destructure-keys", "cache-point", "emoji-datasource", "overlayscrollbars-react", "graphql-shield", "imsc", "@prisma/extension-read-replicas", "@syncfusion/ej2-splitbuttons", "@fluentui/merge-styles", "@oxlint/binding-linux-arm-gnueabihf", "dotprompt", "inngest-cli", "btch-downloader", "json-stringify-deterministic", "@oxlint/binding-linux-ppc64-gnu", "@connectrpc/connect-node", "vue-meta", "@azure/arm-containerinstance", "git-diff", "@heroui/ripple", "@oxlint/binding-linux-s390x-gnu", "fizzy-ui-utils", "@parcel/optimizer-terser", "@koa/multer", "@hono/swagger-ui", "@tamagui/types", "requestretry", "link-preview-js", "modify-filename", "module-replacements", "@oxlint/binding-freebsd-x64", "@canvas/image-data", "lodash.iserror", "@shopify/polaris-icons", "npm-registry-client", "read-tls-client-hello", "@zowe/secrets-for-zowe-sdk", "@oven/bun-darwin-aarch64", "@types/winston", "@html-eslint/parser", "empty-npm-package", "oazapfts", "postcss-jsx", "@netlify/run-utils", "mimer", "@polkadot-api/substrate-bindings", "command-exists-promise", "@types/date-fns", "log-process-errors", "@netlify/git-utils", "@web/parse5-utils", "draggabilly", "rrweb-player", "@types/gradient-parser", "@mongosh/shell-bson", "vite-bundle-analyzer", "@fullcalendar/resource-timeline", "spawn-args", "@types/rtl-detect", "mhchemparser", "@arethetypeswrong/core", "graphology-indices", "@statoscope/webpack-model", "@thi.ng/compare", "@remote-ui/async-subscription", "cubic2quad", "react-toggle", "@emmetio/css-parser", "@types/youtube", "@types/remove-markdown", "gatsby-worker", "cypress-split", "@solana/errors", "@pixi/sprite", "newman-reporter-htmlextra", "@types/react-responsive", "fast-shuffle", "@types/number-to-words", "cra-template", "koa-ip", "draftjs-to-html", "next-runtime-env", "mcp-handler", "json-query", "@types/through2", "@fluentui/react-aria", "@aws-cdk/region-info", "contentful-batch-libs", "@mapbox/geojson-coords", "monocart-reporter", "@types/fetch-mock", "idtoken-verifier", "@antv/coord", "@types/jws", "@aws-amplify/appsync-modelgen-plugin", "siwe", "@netlify/build-info", "@tanstack/eslint-plugin-router", "@simplewebauthn/typescript-types", "bats", "@types/amplitude-js", "@types/dotenv-flow", "app-path", "@heroui/navbar", "@types/serve-handler", "orb-billing", "linkify-html", "@serialport/parser-regex", "@syncfusion/ej2-navigations", "@tiptap/extension-file-handler", "@polkadot-api/utils", "line-height", "split-lines", "@wordpress/priority-queue", "remark-lint-no-blockquote-without-marker", "samlify", "@parcel/optimizer-htmlnano", "gatsby-source-filesystem", "@heroui/progress", "enhance-visitors", "typesafe-actions", "@sap/cds-fiori", "debug-log", "base32", "@plotly/mapbox-gl", "lodash._basecreatewrapper", "@plasmohq/consolidate", "becke-ch--regex--s0-0-v1--base--pl--lib", "@applitools/spec-driver-puppeteer", "@react-native-community/eslint-config", "@sindresorhus/df", "libpg-query", "@httptoolkit/httpolyglot", "maximatch", "@stream-io/escape-string-regexp", "@auth/prisma-adapter", "microsoft-cognitiveservices-speech-sdk", "@aws-amplify/predictions", "@gql.tada/cli-utils", "vue-functional-data-merge", "resize-observer", "@aws-sdk/client-cost-explorer", "express-oauth2-jwt-bearer", "@progress/kendo-angular-schematics", "react-custom-scrollbars-2", "@pandacss/extractor", "@rexxars/react-split-pane", "@types/react-loadable", "broccoli", "es-html-parser", "@solana/wallet-standard-wallet-adapter-base", "@oxlint-tsgolint/darwin-arm64", "react-devtools", "@types/ps-tree", "@oxc-transform/binding-linux-s390x-gnu", "@composio/json-schema-to-zod", "pkg-fetch", "nextgen-events", "@huggingface/hub", "@privy-io/api-base", "@types/mochawesome", "@types/indefinite", "@fluentui/react-components", "react-range", "filenamify-url", "@oxc-transform/binding-wasm32-wasi", "doctoc", "@oxlint/binding-android-arm-eabi", "folder-walker", "@oxlint/binding-linux-riscv64-musl", "@better-auth/sso", "@luma.gl/gltf", "@twilio/declarative-type-validator", "@serwist/webpack-plugin", "easymde", "cucumber-tag-expressions", "@reach/listbox", "@swc/html", "@types/sass", "@heroui/react-utils", "eslint-plugin-rulesdir", "hashlru", "noop6", "aws4-axios", "@thi.ng/equiv", "@pandacss/generator", "@size-limit/esbuild", "@aptos-labs/ts-sdk", "mailchecker", "@ai-sdk/fireworks", "deep-assign", "eslint-plugin-functional", "@ui5/project", "clipboard-image", "@types/react-bootstrap", "@oxc-transform/binding-linux-riscv64-gnu", "@react-pdf-viewer/thumbnail", "koa-range", "vue-advanced-cropper", "alasql", "@thi.ng/checks", "@langchain/weaviate", "graphql-sock", "@types/socket.io", "@types/assert", "@ng-idle/core", "browser-headers", "@wordpress/primitives", "ember-cli-preprocess-registry", "@fluentui/react-checkbox", "babel-helper-vue-jsx-merge-props", "insert-css", "keep-func-props", "@types/rosie", "n", "@fluentui/react-link", "apollo-tracing", "xterm-addon-fit", "@tanstack/react-db", "@statoscope/types", "array-bounds", "@clerk/express", "@tinyhttp/content-disposition", "@mediapipe/tasks-vision", "@originjs/vite-plugin-commonjs", "@trpc/next", "@newrelic/aws-sdk", "@types/react-collapse", "@privy-io/react-auth", "@wordpress/components", "@types/connect-redis", "@hyperjump/json-schema", "canvas-size", "passport-azure-ad", "@rc-component/virtual-list", "@fluentui/react-radio", "@fluentui/react-slider", "@stoplight/json-schema-sampler", "react-masonry-css", "@oxlint/binding-linux-riscv64-gnu", "@react-native-community/blur", "@fluentui/react-badge", "opts", "@tamagui/web", "cm6-theme-basic-light", "@types/systemjs", "graphql-playground-middleware-express", "@logtail/tools", "@fluentui/react-combobox", "ttf2woff", "collection-utils", "freshlinks", "@types/opentype.js", "webpack-remove-empty-scripts", "@fluentui/react-button", "@hono/standard-validator", "auth0-js", "@babel/plugin-proposal-pipeline-operator", "@renovatebot/ruby-semver", "@hcaptcha/loader", "cdktf", "@chakra-ui/skip-nav", "ts-mockito", "@pagerduty/pdjs", "x-path", "@serwist/next", "@polkadot/x-ws", "@thi.ng/hex", "@types/node-jose", "edit-json-file", "@loaders.gl/core", "browserslist-load-config", "aos", "@near-js/keystores", "@readme/http-status-codes", "@fluentui/react-table", "skia-canvas", "react-perfect-scrollbar", "taskkill", "iframe-resizer-react", "vite-imagetools", "electron-devtools-installer", "mj-context-menu", "deprecated", "@clerk/clerk-react", "@google-cloud/local-auth", "@nats-io/transport-node", "cmd-ts", "@storybook/server", "@budibase/handlebars-helpers", "@ungap/url-search-params", "typpy", "ulidx", "@oven/bun-linux-aarch64-musl", "react-native-inappbrowser-reborn", "@portabletext/to-html", "serverless-webpack", "@giphy/js-types", "@react-native/polyfills", "@statoscope/stats", "process-exists", "@syncfusion/ej2-data", "is-valid-app", "govuk-frontend", "@copilotkit/aimock", "@payloadcms/drizzle", "function.name", "@sap/hdi", "function-loop", "@sap/bas-sdk", "@heroui/use-aria-button", "eslint-config-universe", "argue-cli", "@ckeditor/ckeditor5-find-and-replace", "ky-universal", "@babel/plugin-transform-strict-mode", "vite-plugin-wasm", "@statoscope/helpers", "url-slug", "asmcrypto.js", "@graphql-codegen/typescript-document-nodes", "typedoc-default-themes", "@dbml/core", "microbuffer", "@size-limit/preset-small-lib", "draft-js-export-html", "cssnano-preset-lite", "babel-merge", "@types/webscreens-window-placement", "eosjs", "rest-facade", "iterate-object", "eslint-config-riot", "@types/animejs", "@types/react-dropzone", "@types/request-promise-native", "@google-analytics/data", "@trezor/connect-web", "@netlify/local-functions-proxy", "@vaadin/a11y-base", "css-styled", "@types/dlv", "quill-mention", "cborg", "request-oauth", "@cypress/webpack-dev-server", "@fluentui/react-tabs", "tiny-svg", "async-promise-queue", "gulp-autoprefixer", "@improbable-eng/grpc-web"];
|
|
236
|
+
|
|
237
|
+
// src/ecosystems/npm/popular.ts
|
|
238
|
+
var CONVENTION_AFFIXES = [
|
|
239
|
+
["eslint", "plugin"],
|
|
240
|
+
["eslint", "config"],
|
|
241
|
+
["babel", "plugin"],
|
|
242
|
+
["babel", "preset"],
|
|
243
|
+
["rollup", "plugin"],
|
|
244
|
+
["vite", "plugin"],
|
|
245
|
+
["webpack", "plugin"],
|
|
246
|
+
["gatsby", "plugin"]
|
|
247
|
+
];
|
|
248
|
+
var TARGET_RANK = 5e3;
|
|
249
|
+
var SHORT_NAME_FLOOR = 4;
|
|
250
|
+
function buildCorpus(names) {
|
|
251
|
+
const rank = /* @__PURE__ */ new Map();
|
|
252
|
+
const depunctToBest = /* @__PURE__ */ new Map();
|
|
253
|
+
const tokenKeyToBest = /* @__PURE__ */ new Map();
|
|
254
|
+
names.forEach((raw, index) => {
|
|
255
|
+
const name = raw.toLowerCase();
|
|
256
|
+
if (!rank.has(name)) rank.set(name, index);
|
|
257
|
+
const punctKey = depunctuate(name);
|
|
258
|
+
const punctExisting = depunctToBest.get(punctKey);
|
|
259
|
+
if (!punctExisting || index < punctExisting.rank) {
|
|
260
|
+
depunctToBest.set(punctKey, { name, rank: index });
|
|
261
|
+
}
|
|
262
|
+
const tokens = tokenize(name);
|
|
263
|
+
if (tokens.length >= 2) {
|
|
264
|
+
const tokenKey = sortedTokenKey(tokens);
|
|
265
|
+
const tokenExisting = tokenKeyToBest.get(tokenKey);
|
|
266
|
+
if (!tokenExisting || index < tokenExisting.rank) {
|
|
267
|
+
tokenKeyToBest.set(tokenKey, { name, rank: index });
|
|
268
|
+
}
|
|
269
|
+
}
|
|
270
|
+
});
|
|
271
|
+
const has = (name) => rank.has(name.toLowerCase());
|
|
272
|
+
const rankOf = (name) => rank.get(name.toLowerCase());
|
|
273
|
+
function findNearMiss(input) {
|
|
274
|
+
const name = input.toLowerCase();
|
|
275
|
+
if (rank.has(name)) return void 0;
|
|
276
|
+
const candidates = [];
|
|
277
|
+
const depunctMatch = depunctToBest.get(depunctuate(name));
|
|
278
|
+
if (depunctMatch && depunctMatch.name !== name && depunctMatch.rank <= TARGET_RANK) {
|
|
279
|
+
candidates.push({
|
|
280
|
+
target: depunctMatch.name,
|
|
281
|
+
rank: depunctMatch.rank,
|
|
282
|
+
transform: "separator"
|
|
283
|
+
});
|
|
284
|
+
}
|
|
285
|
+
if (name.length > SHORT_NAME_FLOOR) {
|
|
286
|
+
for (const edit of edits1(name)) {
|
|
287
|
+
const r = rank.get(edit);
|
|
288
|
+
if (r === void 0 || r > TARGET_RANK) continue;
|
|
289
|
+
const transform = classifyTransform(name, edit) ?? "substitution";
|
|
290
|
+
candidates.push({ target: edit, rank: r, transform });
|
|
291
|
+
}
|
|
292
|
+
}
|
|
293
|
+
if (candidates.length === 0) return void 0;
|
|
294
|
+
return candidates.reduce((best, c) => c.rank < best.rank ? c : best);
|
|
295
|
+
}
|
|
296
|
+
function findRecombination(input) {
|
|
297
|
+
const name = input.toLowerCase();
|
|
298
|
+
if (rank.has(name)) return void 0;
|
|
299
|
+
const tokens = tokenize(name);
|
|
300
|
+
if (tokens.length < 2) return void 0;
|
|
301
|
+
const reordered = tokenKeyToBest.get(sortedTokenKey(tokens));
|
|
302
|
+
if (reordered && reordered.name !== name && reordered.rank <= TARGET_RANK) {
|
|
303
|
+
return { victim: reordered.name, rank: reordered.rank, kind: "reordered" };
|
|
304
|
+
}
|
|
305
|
+
for (const affix of CONVENTION_AFFIXES) {
|
|
306
|
+
const withAffix = tokenKeyToBest.get(sortedTokenKey([...tokens, ...affix]));
|
|
307
|
+
if (withAffix && withAffix.name !== name && withAffix.rank <= TARGET_RANK) {
|
|
308
|
+
return { victim: withAffix.name, rank: withAffix.rank, kind: "affix-drop" };
|
|
309
|
+
}
|
|
310
|
+
}
|
|
311
|
+
return void 0;
|
|
312
|
+
}
|
|
313
|
+
return { has, rankOf, findNearMiss, findRecombination, size: rank.size };
|
|
314
|
+
}
|
|
315
|
+
var defaultCorpus = buildCorpus(POPULAR_NAMES);
|
|
316
|
+
|
|
317
|
+
// src/core/rules/typosquat.ts
|
|
318
|
+
var TYPOSQUAT_POPULAR_FLOOR = 15e3;
|
|
319
|
+
var TYPOSQUAT_LOW_DOWNLOADS = 100;
|
|
320
|
+
var TYPOSQUAT_YOUNG_DAYS = 30;
|
|
321
|
+
var CONFIDENT_TRANSFORMS = /* @__PURE__ */ new Set(["transposition", "substitution-adjacent"]);
|
|
322
|
+
function bump(confidence) {
|
|
323
|
+
return confidence === "low" ? "medium" : "high";
|
|
324
|
+
}
|
|
325
|
+
function createTyposquatDetector(corpus = defaultCorpus) {
|
|
326
|
+
return {
|
|
327
|
+
id: "typosquat",
|
|
328
|
+
description: "Flags dependency names that closely resemble a popular package.",
|
|
329
|
+
detect(pkg2) {
|
|
330
|
+
if (pkg2.source !== "registry") return [];
|
|
331
|
+
if (pkg2.name.startsWith("@")) return [];
|
|
332
|
+
if (corpus.has(pkg2.name)) return [];
|
|
333
|
+
if (pkg2.existsOnRegistry === void 0) return [];
|
|
334
|
+
const near = corpus.findNearMiss(pkg2.name);
|
|
335
|
+
if (!near) return [];
|
|
336
|
+
const downloads = pkg2.weeklyDownloads;
|
|
337
|
+
const established = downloads !== void 0 && downloads >= TYPOSQUAT_POPULAR_FLOOR;
|
|
338
|
+
if (pkg2.existsOnRegistry === true && established) return [];
|
|
339
|
+
let severity;
|
|
340
|
+
let confidence;
|
|
341
|
+
if (pkg2.existsOnRegistry === false) {
|
|
342
|
+
severity = "high";
|
|
343
|
+
confidence = "high";
|
|
344
|
+
} else {
|
|
345
|
+
const young = pkg2.ageDays !== void 0 && pkg2.ageDays <= TYPOSQUAT_YOUNG_DAYS;
|
|
346
|
+
const veryLow = downloads !== void 0 && downloads < TYPOSQUAT_LOW_DOWNLOADS;
|
|
347
|
+
if (young || veryLow) {
|
|
348
|
+
severity = "high";
|
|
349
|
+
confidence = "medium";
|
|
350
|
+
} else if (downloads !== void 0) {
|
|
351
|
+
severity = "medium";
|
|
352
|
+
confidence = "medium";
|
|
353
|
+
} else {
|
|
354
|
+
severity = "low";
|
|
355
|
+
confidence = "low";
|
|
356
|
+
}
|
|
357
|
+
}
|
|
358
|
+
if (CONFIDENT_TRANSFORMS.has(near.transform) && confidence !== "high") {
|
|
359
|
+
confidence = bump(confidence);
|
|
360
|
+
}
|
|
361
|
+
return [
|
|
362
|
+
{
|
|
363
|
+
ruleId: this.id,
|
|
364
|
+
severity,
|
|
365
|
+
confidence,
|
|
366
|
+
packageName: pkg2.name,
|
|
367
|
+
...pkg2.version === void 0 ? {} : { packageVersion: pkg2.version },
|
|
368
|
+
title: "Name closely resembles a popular package",
|
|
369
|
+
detail: `This name differs from the popular package "${near.target}" by a single ${near.transform}. Attackers register look-alikes to catch typos and hallucinated names. Confirm you meant this package and not "${near.target}".`,
|
|
370
|
+
evidence: `resembles "${near.target}" (popularity rank ${near.rank + 1}) via ${near.transform}`,
|
|
371
|
+
...pkg2.evidencePath === void 0 ? {} : { location: pkg2.evidencePath }
|
|
372
|
+
}
|
|
373
|
+
];
|
|
374
|
+
}
|
|
375
|
+
};
|
|
376
|
+
}
|
|
377
|
+
var typosquat = createTyposquatDetector();
|
|
378
|
+
|
|
379
|
+
// src/core/rules/hallucination-name.ts
|
|
380
|
+
var HALLUCINATION_POPULAR_FLOOR = 15e3;
|
|
381
|
+
var HALLUCINATION_LOW_DOWNLOADS = 100;
|
|
382
|
+
var HALLUCINATION_YOUNG_DAYS = 30;
|
|
383
|
+
function createHallucinationNameDetector(corpus = defaultCorpus) {
|
|
384
|
+
return {
|
|
385
|
+
id: "hallucination-name",
|
|
386
|
+
description: "Flags names that recombine the tokens of a popular package (slopsquat pattern).",
|
|
387
|
+
detect(pkg2) {
|
|
388
|
+
if (pkg2.source !== "registry") return [];
|
|
389
|
+
if (pkg2.name.startsWith("@")) return [];
|
|
390
|
+
if (corpus.has(pkg2.name)) return [];
|
|
391
|
+
if (pkg2.existsOnRegistry === void 0) return [];
|
|
392
|
+
const match = corpus.findRecombination(pkg2.name);
|
|
393
|
+
if (!match) return [];
|
|
394
|
+
const downloads = pkg2.weeklyDownloads;
|
|
395
|
+
const established = downloads !== void 0 && downloads >= HALLUCINATION_POPULAR_FLOOR;
|
|
396
|
+
if (pkg2.existsOnRegistry === true && established) return [];
|
|
397
|
+
let severity;
|
|
398
|
+
let confidence;
|
|
399
|
+
if (pkg2.existsOnRegistry === false) {
|
|
400
|
+
severity = "high";
|
|
401
|
+
confidence = "high";
|
|
402
|
+
} else {
|
|
403
|
+
const young = pkg2.ageDays !== void 0 && pkg2.ageDays <= HALLUCINATION_YOUNG_DAYS;
|
|
404
|
+
const veryLow = downloads !== void 0 && downloads < HALLUCINATION_LOW_DOWNLOADS;
|
|
405
|
+
if (young || veryLow) {
|
|
406
|
+
severity = "high";
|
|
407
|
+
confidence = "medium";
|
|
408
|
+
} else if (downloads !== void 0) {
|
|
409
|
+
severity = "medium";
|
|
410
|
+
confidence = "medium";
|
|
411
|
+
} else {
|
|
412
|
+
severity = "low";
|
|
413
|
+
confidence = "low";
|
|
414
|
+
}
|
|
415
|
+
}
|
|
416
|
+
const how = match.kind === "affix-drop" ? `drops the convention prefix of "${match.victim}"` : `reorders the tokens of "${match.victim}"`;
|
|
417
|
+
return [
|
|
418
|
+
{
|
|
419
|
+
ruleId: this.id,
|
|
420
|
+
severity,
|
|
421
|
+
confidence,
|
|
422
|
+
packageName: pkg2.name,
|
|
423
|
+
...pkg2.version === void 0 ? {} : { packageVersion: pkg2.version },
|
|
424
|
+
title: "Name looks like a recombination of a popular package",
|
|
425
|
+
detail: `This name ${how}, a popular package, but is not itself that package. AI assistants hallucinate plausible names like this, and attackers register them. Confirm you did not mean "${match.victim}".`,
|
|
426
|
+
evidence: `token match to "${match.victim}" (popularity rank ${match.rank + 1}), ${match.kind}`,
|
|
427
|
+
...pkg2.evidencePath === void 0 ? {} : { location: pkg2.evidencePath }
|
|
428
|
+
}
|
|
429
|
+
];
|
|
430
|
+
}
|
|
431
|
+
};
|
|
432
|
+
}
|
|
433
|
+
var hallucinationName = createHallucinationNameDetector();
|
|
434
|
+
|
|
435
|
+
// src/core/rules/index.ts
|
|
436
|
+
var builtinDetectors = [
|
|
437
|
+
nonexistentPackage,
|
|
438
|
+
youngPackage,
|
|
439
|
+
installScripts,
|
|
440
|
+
unpublishedVersion,
|
|
441
|
+
typosquat,
|
|
442
|
+
hallucinationName
|
|
443
|
+
];
|
|
444
|
+
|
|
445
|
+
// src/output/terminal.ts
|
|
446
|
+
var SEVERITY_LABEL = {
|
|
447
|
+
critical: "CRIT",
|
|
448
|
+
high: "HIGH",
|
|
449
|
+
medium: "MED ",
|
|
450
|
+
low: "LOW ",
|
|
451
|
+
info: "INFO"
|
|
452
|
+
};
|
|
453
|
+
function renderTerminal(report) {
|
|
454
|
+
const lines = [];
|
|
455
|
+
const from = report.basis === "lockfile" ? " from package-lock.json" : "";
|
|
456
|
+
lines.push(`vetguard: scanned ${report.packagesScanned} package(s) in ${report.target}${from}`);
|
|
457
|
+
for (const warning of report.warnings ?? []) {
|
|
458
|
+
lines.push(`warning: ${warning}`);
|
|
459
|
+
}
|
|
460
|
+
if (report.findings.length === 0) {
|
|
461
|
+
lines.push(
|
|
462
|
+
report.verdict === "could-not-verify" ? "No findings, but some packages could not be verified (see below)." : "No findings."
|
|
463
|
+
);
|
|
464
|
+
}
|
|
465
|
+
for (const f of report.findings) {
|
|
466
|
+
const version = f.packageVersion ? `@${f.packageVersion}` : "";
|
|
467
|
+
lines.push(`[${SEVERITY_LABEL[f.severity]}] ${f.packageName}${version} (${f.ruleId})`);
|
|
468
|
+
lines.push(` ${f.title}`);
|
|
469
|
+
lines.push(` ${f.detail}`);
|
|
470
|
+
if (f.location) lines.push(` at ${f.location}`);
|
|
471
|
+
}
|
|
472
|
+
if (report.unverified.length > 0) {
|
|
473
|
+
lines.push(`Could not verify: ${report.unverified.join(", ")}`);
|
|
474
|
+
}
|
|
475
|
+
lines.push(`Verdict: ${report.verdict}`);
|
|
476
|
+
return lines.join("\n");
|
|
477
|
+
}
|
|
478
|
+
|
|
479
|
+
// src/output/json.ts
|
|
480
|
+
var JSON_SCHEMA_VERSION = 1;
|
|
481
|
+
function renderJson(report, toolVersion) {
|
|
482
|
+
return JSON.stringify(
|
|
483
|
+
{ tool: "vetguard", version: toolVersion, schemaVersion: JSON_SCHEMA_VERSION, ...report },
|
|
484
|
+
null,
|
|
485
|
+
2
|
|
486
|
+
);
|
|
487
|
+
}
|
|
488
|
+
|
|
489
|
+
// src/output/sarif.ts
|
|
490
|
+
var INFO_URI = "https://github.com/tallyguard/vetguard";
|
|
491
|
+
var LEVEL = {
|
|
492
|
+
critical: "error",
|
|
493
|
+
high: "error",
|
|
494
|
+
medium: "warning",
|
|
495
|
+
low: "note",
|
|
496
|
+
info: "note"
|
|
497
|
+
};
|
|
498
|
+
function artifactUri(report) {
|
|
499
|
+
return report.basis === "lockfile" ? "package-lock.json" : "package.json";
|
|
500
|
+
}
|
|
501
|
+
function renderSarif(report, toolVersion, detectors = builtinDetectors) {
|
|
502
|
+
const uri = artifactUri(report);
|
|
503
|
+
const rules = detectors.map((d) => ({
|
|
504
|
+
id: d.id,
|
|
505
|
+
name: d.id,
|
|
506
|
+
shortDescription: { text: d.description },
|
|
507
|
+
helpUri: INFO_URI
|
|
508
|
+
}));
|
|
509
|
+
const results = report.findings.map((f) => ({
|
|
510
|
+
ruleId: f.ruleId,
|
|
511
|
+
level: LEVEL[f.severity],
|
|
512
|
+
message: {
|
|
513
|
+
text: `${f.packageName}${f.packageVersion ? `@${f.packageVersion}` : ""}: ${f.title}. ${f.detail}`
|
|
514
|
+
},
|
|
515
|
+
locations: [{ physicalLocation: { artifactLocation: { uri } } }],
|
|
516
|
+
properties: {
|
|
517
|
+
severity: f.severity,
|
|
518
|
+
confidence: f.confidence,
|
|
519
|
+
packageName: f.packageName,
|
|
520
|
+
...f.packageVersion === void 0 ? {} : { packageVersion: f.packageVersion },
|
|
521
|
+
...f.evidence === void 0 ? {} : { evidence: f.evidence }
|
|
522
|
+
}
|
|
523
|
+
}));
|
|
524
|
+
const doc = {
|
|
525
|
+
$schema: "https://json.schemastore.org/sarif-2.1.0.json",
|
|
526
|
+
version: "2.1.0",
|
|
527
|
+
runs: [
|
|
528
|
+
{
|
|
529
|
+
tool: {
|
|
530
|
+
driver: {
|
|
531
|
+
name: "vetguard",
|
|
532
|
+
version: toolVersion,
|
|
533
|
+
informationUri: INFO_URI,
|
|
534
|
+
rules
|
|
535
|
+
}
|
|
536
|
+
},
|
|
537
|
+
results
|
|
538
|
+
}
|
|
539
|
+
]
|
|
540
|
+
};
|
|
541
|
+
return JSON.stringify(doc, null, 2);
|
|
542
|
+
}
|
|
543
|
+
|
|
544
|
+
// src/output/exit-code.ts
|
|
545
|
+
function resolveExitCode(report, failOn) {
|
|
546
|
+
if (report.findings.length === 0) return 0;
|
|
547
|
+
if (failOn === void 0) return 1;
|
|
548
|
+
const threshold = SEVERITY_ORDER[failOn];
|
|
549
|
+
return report.findings.some((f) => SEVERITY_ORDER[f.severity] >= threshold) ? 1 : 0;
|
|
550
|
+
}
|
|
551
|
+
|
|
552
|
+
// src/ecosystems/npm/manifest.ts
|
|
553
|
+
import { readFile } from "fs/promises";
|
|
554
|
+
import path from "path";
|
|
555
|
+
function classifySource(spec) {
|
|
556
|
+
if (spec.startsWith("npm:")) return "alias";
|
|
557
|
+
if (spec.startsWith("file:")) return "file";
|
|
558
|
+
if (spec.startsWith("link:")) return "link";
|
|
559
|
+
if (spec.startsWith("workspace:")) return "workspace";
|
|
560
|
+
if (spec.startsWith("git+") || spec.startsWith("git:") || spec.startsWith("github:") || /^[\w-]+\/[\w.-]+$/.test(spec)) {
|
|
561
|
+
return "git";
|
|
562
|
+
}
|
|
563
|
+
if (spec.startsWith("http://") || spec.startsWith("https://")) return "unknown";
|
|
564
|
+
return "registry";
|
|
565
|
+
}
|
|
566
|
+
async function readManifestFacts(dir) {
|
|
567
|
+
const manifestPath = path.join(dir, "package.json");
|
|
568
|
+
let raw;
|
|
569
|
+
try {
|
|
570
|
+
raw = JSON.parse(await readFile(manifestPath, "utf8"));
|
|
571
|
+
} catch (err) {
|
|
572
|
+
throw new Error(
|
|
573
|
+
`Could not read ${manifestPath}: ${err instanceof Error ? err.message : String(err)}`
|
|
574
|
+
);
|
|
575
|
+
}
|
|
576
|
+
const groups = [
|
|
577
|
+
[raw.dependencies, "prod"],
|
|
578
|
+
[raw.devDependencies, "dev"],
|
|
579
|
+
[raw.peerDependencies, "peer"],
|
|
580
|
+
[raw.optionalDependencies, "optional"]
|
|
581
|
+
];
|
|
582
|
+
const facts = [];
|
|
583
|
+
for (const [deps, kind] of groups) {
|
|
584
|
+
if (!deps) continue;
|
|
585
|
+
for (const [name, spec] of Object.entries(deps)) {
|
|
586
|
+
facts.push({
|
|
587
|
+
name,
|
|
588
|
+
requestedRange: spec,
|
|
589
|
+
kind,
|
|
590
|
+
source: classifySource(spec),
|
|
591
|
+
evidencePath: manifestPath
|
|
592
|
+
});
|
|
593
|
+
}
|
|
594
|
+
}
|
|
595
|
+
return facts;
|
|
596
|
+
}
|
|
597
|
+
|
|
598
|
+
// src/ecosystems/npm/lockfile.ts
|
|
599
|
+
import { readFile as readFile2, access } from "fs/promises";
|
|
600
|
+
import path2 from "path";
|
|
601
|
+
var REGISTRY_HOST = "registry.npmjs.org";
|
|
602
|
+
var OTHER_LOCKFILES = ["yarn.lock", "pnpm-lock.yaml", "bun.lockb"];
|
|
603
|
+
async function detectOtherLockfiles(dir) {
|
|
604
|
+
const present = [];
|
|
605
|
+
for (const file of OTHER_LOCKFILES) {
|
|
606
|
+
try {
|
|
607
|
+
await access(path2.join(dir, file));
|
|
608
|
+
present.push(file);
|
|
609
|
+
} catch {
|
|
610
|
+
continue;
|
|
611
|
+
}
|
|
612
|
+
}
|
|
613
|
+
return present;
|
|
614
|
+
}
|
|
615
|
+
function nameFromLockPath(lockPath) {
|
|
616
|
+
const marker = "node_modules/";
|
|
617
|
+
const idx = lockPath.lastIndexOf(marker);
|
|
618
|
+
if (idx === -1) return void 0;
|
|
619
|
+
const name = lockPath.slice(idx + marker.length);
|
|
620
|
+
return name.length > 0 ? name : void 0;
|
|
621
|
+
}
|
|
622
|
+
function sourceFromEntry(entry) {
|
|
623
|
+
if (entry.link) return "link";
|
|
624
|
+
const resolved = entry.resolved;
|
|
625
|
+
if (!resolved) return "unknown";
|
|
626
|
+
if (resolved.startsWith("git+") || resolved.startsWith("git:")) return "git";
|
|
627
|
+
if (resolved.startsWith("file:")) return "file";
|
|
628
|
+
if (resolved.includes(REGISTRY_HOST)) return "registry";
|
|
629
|
+
return "unknown";
|
|
630
|
+
}
|
|
631
|
+
function kindFromEntry(entry) {
|
|
632
|
+
if (entry.dev) return "dev";
|
|
633
|
+
if (entry.optional) return "optional";
|
|
634
|
+
return "prod";
|
|
635
|
+
}
|
|
636
|
+
async function readLockfile(dir) {
|
|
637
|
+
const lockPath = path2.join(dir, "package-lock.json");
|
|
638
|
+
let text;
|
|
639
|
+
try {
|
|
640
|
+
text = await readFile2(lockPath, "utf8");
|
|
641
|
+
} catch {
|
|
642
|
+
return { status: "absent" };
|
|
643
|
+
}
|
|
644
|
+
let doc;
|
|
645
|
+
try {
|
|
646
|
+
doc = JSON.parse(text);
|
|
647
|
+
} catch (err) {
|
|
648
|
+
return {
|
|
649
|
+
status: "unsupported",
|
|
650
|
+
reason: `package-lock.json is not valid JSON: ${err instanceof Error ? err.message : String(err)}`
|
|
651
|
+
};
|
|
652
|
+
}
|
|
653
|
+
const version = doc.lockfileVersion ?? 0;
|
|
654
|
+
if (!doc.packages || version < 2) {
|
|
655
|
+
return {
|
|
656
|
+
status: "unsupported",
|
|
657
|
+
reason: `package-lock lockfileVersion ${version} is not supported (need v2 or v3)`
|
|
658
|
+
};
|
|
659
|
+
}
|
|
660
|
+
const seen = /* @__PURE__ */ new Set();
|
|
661
|
+
const facts = [];
|
|
662
|
+
for (const [lockPathKey, entry] of Object.entries(doc.packages)) {
|
|
663
|
+
const name = nameFromLockPath(lockPathKey);
|
|
664
|
+
if (!name || !entry.version) continue;
|
|
665
|
+
const dedupeKey = `${name}@${entry.version}`;
|
|
666
|
+
if (seen.has(dedupeKey)) continue;
|
|
667
|
+
seen.add(dedupeKey);
|
|
668
|
+
facts.push({
|
|
669
|
+
name,
|
|
670
|
+
version: entry.version,
|
|
671
|
+
kind: kindFromEntry(entry),
|
|
672
|
+
source: sourceFromEntry(entry),
|
|
673
|
+
hasInstallScript: entry.hasInstallScript === true,
|
|
674
|
+
...entry.resolved === void 0 ? {} : { resolvedUrl: entry.resolved },
|
|
675
|
+
...entry.integrity === void 0 ? {} : { integrity: entry.integrity },
|
|
676
|
+
evidencePath: `${lockPath} (${lockPathKey})`
|
|
677
|
+
});
|
|
678
|
+
}
|
|
679
|
+
return { status: "ok", facts, lockfileVersion: version };
|
|
680
|
+
}
|
|
681
|
+
|
|
682
|
+
// src/ecosystems/npm/registry.ts
|
|
683
|
+
var DEFAULT_REGISTRY = "https://registry.npmjs.org";
|
|
684
|
+
var INSTALL_HOOKS = ["preinstall", "install", "postinstall"];
|
|
685
|
+
function encodePackageName(name) {
|
|
686
|
+
return name.replace(/\//g, "%2F");
|
|
687
|
+
}
|
|
688
|
+
function repositoryUrlOf(v) {
|
|
689
|
+
if (!v?.repository) return void 0;
|
|
690
|
+
return typeof v.repository === "string" ? v.repository : v.repository.url;
|
|
691
|
+
}
|
|
692
|
+
function hasInstallHook(v) {
|
|
693
|
+
const scripts = v?.scripts;
|
|
694
|
+
if (!scripts) return false;
|
|
695
|
+
return INSTALL_HOOKS.some((hook) => typeof scripts[hook] === "string");
|
|
696
|
+
}
|
|
697
|
+
function parsePackument(name, raw, version) {
|
|
698
|
+
const time = raw.time ?? {};
|
|
699
|
+
const versions = raw.versions ?? {};
|
|
700
|
+
const versionKeys = Object.keys(versions);
|
|
701
|
+
const latestVersion = raw["dist-tags"]?.latest;
|
|
702
|
+
const inspected = version ?? latestVersion;
|
|
703
|
+
const inspectedManifest = inspected ? versions[inspected] : void 0;
|
|
704
|
+
const repositoryUrl = repositoryUrlOf(inspectedManifest);
|
|
705
|
+
return {
|
|
706
|
+
name,
|
|
707
|
+
...time.created === void 0 ? {} : { firstPublishAt: time.created },
|
|
708
|
+
...time.modified === void 0 ? {} : { latestPublishAt: time.modified },
|
|
709
|
+
...latestVersion === void 0 ? {} : { latestVersion },
|
|
710
|
+
versionCount: versionKeys.length,
|
|
711
|
+
...version === void 0 ? {} : { requestedVersionPublished: version in versions },
|
|
712
|
+
hasInstallScript: hasInstallHook(inspectedManifest),
|
|
713
|
+
...repositoryUrl === void 0 ? {} : { repositoryUrl }
|
|
714
|
+
};
|
|
715
|
+
}
|
|
716
|
+
function createRegistryClient(options = {}) {
|
|
717
|
+
const fetchImpl = options.fetchImpl ?? fetch;
|
|
718
|
+
const registryUrl = (options.registryUrl ?? DEFAULT_REGISTRY).replace(/\/$/, "");
|
|
719
|
+
const timeoutMs = options.timeoutMs ?? 1e4;
|
|
720
|
+
const cache = /* @__PURE__ */ new Map();
|
|
721
|
+
async function fetchPackument(name, version) {
|
|
722
|
+
if (options.offline) {
|
|
723
|
+
return { status: "unverified", reason: "offline" };
|
|
724
|
+
}
|
|
725
|
+
const url = `${registryUrl}/${encodePackageName(name)}`;
|
|
726
|
+
const controller = new AbortController();
|
|
727
|
+
const timer = setTimeout(() => controller.abort(), timeoutMs);
|
|
728
|
+
try {
|
|
729
|
+
const res = await fetchImpl(url, {
|
|
730
|
+
signal: controller.signal,
|
|
731
|
+
headers: { accept: "application/json" }
|
|
732
|
+
});
|
|
733
|
+
if (res.status === 404) return { status: "not-found" };
|
|
734
|
+
if (!res.ok) {
|
|
735
|
+
return { status: "unverified", reason: `registry responded ${res.status}` };
|
|
736
|
+
}
|
|
737
|
+
const raw = await res.json();
|
|
738
|
+
return { status: "found", packument: parsePackument(name, raw, version) };
|
|
739
|
+
} catch (err) {
|
|
740
|
+
const reason = err instanceof Error ? err.message : String(err);
|
|
741
|
+
return { status: "unverified", reason };
|
|
742
|
+
} finally {
|
|
743
|
+
clearTimeout(timer);
|
|
744
|
+
}
|
|
745
|
+
}
|
|
746
|
+
return {
|
|
747
|
+
getPackument(name, version) {
|
|
748
|
+
const key = version ? `${name}@${version}` : name;
|
|
749
|
+
const existing = cache.get(key);
|
|
750
|
+
if (existing) return existing;
|
|
751
|
+
const pending = fetchPackument(name, version);
|
|
752
|
+
cache.set(key, pending);
|
|
753
|
+
return pending;
|
|
754
|
+
}
|
|
755
|
+
};
|
|
756
|
+
}
|
|
757
|
+
|
|
758
|
+
// src/ecosystems/npm/downloads.ts
|
|
759
|
+
var DEFAULT_API = "https://api.npmjs.org";
|
|
760
|
+
function createDownloadsClient(options = {}) {
|
|
761
|
+
const fetchImpl = options.fetchImpl ?? fetch;
|
|
762
|
+
const apiUrl = (options.apiUrl ?? DEFAULT_API).replace(/\/$/, "");
|
|
763
|
+
const timeoutMs = options.timeoutMs ?? 1e4;
|
|
764
|
+
const cache = /* @__PURE__ */ new Map();
|
|
765
|
+
async function fetchDownloads(name) {
|
|
766
|
+
if (options.offline) return void 0;
|
|
767
|
+
if (name.startsWith("@")) return void 0;
|
|
768
|
+
const controller = new AbortController();
|
|
769
|
+
const timer = setTimeout(() => controller.abort(), timeoutMs);
|
|
770
|
+
try {
|
|
771
|
+
const res = await fetchImpl(`${apiUrl}/downloads/point/last-week/${name}`, {
|
|
772
|
+
signal: controller.signal,
|
|
773
|
+
headers: { accept: "application/json" }
|
|
774
|
+
});
|
|
775
|
+
if (!res.ok) return void 0;
|
|
776
|
+
const body = await res.json();
|
|
777
|
+
return typeof body.downloads === "number" ? body.downloads : void 0;
|
|
778
|
+
} catch {
|
|
779
|
+
return void 0;
|
|
780
|
+
} finally {
|
|
781
|
+
clearTimeout(timer);
|
|
782
|
+
}
|
|
783
|
+
}
|
|
784
|
+
return {
|
|
785
|
+
getWeeklyDownloads(name) {
|
|
786
|
+
const existing = cache.get(name);
|
|
787
|
+
if (existing) return existing;
|
|
788
|
+
const pending = fetchDownloads(name);
|
|
789
|
+
cache.set(name, pending);
|
|
790
|
+
return pending;
|
|
791
|
+
}
|
|
792
|
+
};
|
|
793
|
+
}
|
|
794
|
+
|
|
795
|
+
// src/util/concurrency.ts
|
|
796
|
+
async function mapWithConcurrency(items, limit, fn) {
|
|
797
|
+
const results = new Array(items.length);
|
|
798
|
+
const effectiveLimit = Math.max(1, Math.min(limit, items.length));
|
|
799
|
+
let next = 0;
|
|
800
|
+
async function worker() {
|
|
801
|
+
while (next < items.length) {
|
|
802
|
+
const index = next++;
|
|
803
|
+
results[index] = await fn(items[index], index);
|
|
804
|
+
}
|
|
805
|
+
}
|
|
806
|
+
await Promise.all(Array.from({ length: effectiveLimit }, () => worker()));
|
|
807
|
+
return results;
|
|
808
|
+
}
|
|
809
|
+
|
|
810
|
+
// src/ecosystems/npm/enrich.ts
|
|
811
|
+
function ageDaysFrom(firstPublishAt, now) {
|
|
812
|
+
if (!firstPublishAt) return void 0;
|
|
813
|
+
const published = Date.parse(firstPublishAt);
|
|
814
|
+
if (Number.isNaN(published)) return void 0;
|
|
815
|
+
const ms = now.getTime() - published;
|
|
816
|
+
return ms < 0 ? 0 : Math.floor(ms / 864e5);
|
|
817
|
+
}
|
|
818
|
+
async function enrichWithRegistry(input, client, options = {}) {
|
|
819
|
+
const concurrency = options.concurrency ?? 8;
|
|
820
|
+
const now = options.now ? options.now() : /* @__PURE__ */ new Date();
|
|
821
|
+
const unverified = [];
|
|
822
|
+
const facts = await mapWithConcurrency(input, concurrency, async (fact) => {
|
|
823
|
+
if (fact.source !== "registry") return fact;
|
|
824
|
+
const [lookup, weeklyDownloads] = await Promise.all([
|
|
825
|
+
client.getPackument(fact.name, fact.version),
|
|
826
|
+
options.downloads?.getWeeklyDownloads(fact.name)
|
|
827
|
+
]);
|
|
828
|
+
if (lookup.status === "not-found") {
|
|
829
|
+
return { ...fact, existsOnRegistry: false };
|
|
830
|
+
}
|
|
831
|
+
if (lookup.status === "unverified") {
|
|
832
|
+
unverified.push(fact.name);
|
|
833
|
+
return fact;
|
|
834
|
+
}
|
|
835
|
+
const p = lookup.packument;
|
|
836
|
+
const ageDays = ageDaysFrom(p.firstPublishAt, now);
|
|
837
|
+
return {
|
|
838
|
+
...fact,
|
|
839
|
+
existsOnRegistry: true,
|
|
840
|
+
...p.firstPublishAt === void 0 ? {} : { firstPublishAt: p.firstPublishAt },
|
|
841
|
+
...p.latestPublishAt === void 0 ? {} : { latestPublishAt: p.latestPublishAt },
|
|
842
|
+
...ageDays === void 0 ? {} : { ageDays },
|
|
843
|
+
versionCount: p.versionCount,
|
|
844
|
+
...p.requestedVersionPublished === void 0 ? {} : { versionPublished: p.requestedVersionPublished },
|
|
845
|
+
// A lockfile reports the install-script status of the installed version;
|
|
846
|
+
// the registry only reports the latest, so a lockfile fact wins.
|
|
847
|
+
hasInstallScript: fact.hasInstallScript ?? p.hasInstallScript,
|
|
848
|
+
...p.repositoryUrl === void 0 ? {} : { repositoryUrl: p.repositoryUrl },
|
|
849
|
+
...weeklyDownloads === void 0 ? {} : { weeklyDownloads }
|
|
850
|
+
};
|
|
851
|
+
});
|
|
852
|
+
return { facts, unverified };
|
|
853
|
+
}
|
|
854
|
+
|
|
855
|
+
// src/ecosystems/npm/spec.ts
|
|
856
|
+
function parsePackageSpec(input) {
|
|
857
|
+
const trimmed = input.trim();
|
|
858
|
+
const at = trimmed.indexOf("@", 1);
|
|
859
|
+
if (at === -1) return { name: trimmed };
|
|
860
|
+
return { name: trimmed.slice(0, at), version: trimmed.slice(at + 1) };
|
|
861
|
+
}
|
|
862
|
+
|
|
863
|
+
// src/scan.ts
|
|
864
|
+
function registryFor(options) {
|
|
865
|
+
return options.client ?? createRegistryClient({ offline: options.offline ?? false });
|
|
866
|
+
}
|
|
867
|
+
function downloadsFor(options) {
|
|
868
|
+
return options.downloads ?? createDownloadsClient({ offline: options.offline ?? false });
|
|
869
|
+
}
|
|
870
|
+
function timestamp(options) {
|
|
871
|
+
return (options.now ? options.now() : /* @__PURE__ */ new Date()).toISOString();
|
|
872
|
+
}
|
|
873
|
+
function enrichOptions(options) {
|
|
874
|
+
return {
|
|
875
|
+
downloads: downloadsFor(options),
|
|
876
|
+
...options.now === void 0 ? {} : { now: options.now }
|
|
877
|
+
};
|
|
878
|
+
}
|
|
879
|
+
async function scanProject(dir, options = {}) {
|
|
880
|
+
const lockfile = await readLockfile(dir);
|
|
881
|
+
const warnings = [];
|
|
882
|
+
let inputFacts;
|
|
883
|
+
let basis;
|
|
884
|
+
if (lockfile.status === "ok") {
|
|
885
|
+
inputFacts = lockfile.facts;
|
|
886
|
+
basis = "lockfile";
|
|
887
|
+
} else {
|
|
888
|
+
if (lockfile.status === "unsupported") {
|
|
889
|
+
warnings.push(`${lockfile.reason}; scanned package.json instead`);
|
|
890
|
+
}
|
|
891
|
+
for (const other of await detectOtherLockfiles(dir)) {
|
|
892
|
+
warnings.push(`found ${other}, which is not supported yet; scanned package.json instead`);
|
|
893
|
+
}
|
|
894
|
+
inputFacts = await readManifestFacts(dir);
|
|
895
|
+
basis = "manifest";
|
|
896
|
+
}
|
|
897
|
+
const { facts, unverified } = await enrichWithRegistry(
|
|
898
|
+
inputFacts,
|
|
899
|
+
registryFor(options),
|
|
900
|
+
enrichOptions(options)
|
|
901
|
+
);
|
|
902
|
+
const report = runDetectors(facts, options.detectors ?? builtinDetectors, {
|
|
903
|
+
target: dir,
|
|
904
|
+
ecosystem: "npm",
|
|
905
|
+
unverified,
|
|
906
|
+
generatedAt: timestamp(options)
|
|
907
|
+
});
|
|
908
|
+
return { ...report, basis, ...warnings.length > 0 ? { warnings } : {} };
|
|
909
|
+
}
|
|
910
|
+
async function checkPackage(specInput, options = {}) {
|
|
911
|
+
const spec = parsePackageSpec(specInput);
|
|
912
|
+
const base = {
|
|
913
|
+
name: spec.name,
|
|
914
|
+
...spec.version === void 0 ? {} : { version: spec.version },
|
|
915
|
+
kind: "prod",
|
|
916
|
+
source: "registry"
|
|
917
|
+
};
|
|
918
|
+
const { facts, unverified } = await enrichWithRegistry(
|
|
919
|
+
[base],
|
|
920
|
+
registryFor(options),
|
|
921
|
+
enrichOptions(options)
|
|
922
|
+
);
|
|
923
|
+
return runDetectors(facts, options.detectors ?? builtinDetectors, {
|
|
924
|
+
target: specInput,
|
|
925
|
+
ecosystem: "npm",
|
|
926
|
+
unverified,
|
|
927
|
+
generatedAt: timestamp(options)
|
|
928
|
+
});
|
|
929
|
+
}
|
|
930
|
+
|
|
931
|
+
// src/index.ts
|
|
932
|
+
import { readFileSync } from "fs";
|
|
933
|
+
var pkg = JSON.parse(readFileSync(new URL("../package.json", import.meta.url), "utf8"));
|
|
934
|
+
var VERSION = pkg.version;
|
|
935
|
+
|
|
936
|
+
export {
|
|
937
|
+
SEVERITY_ORDER,
|
|
938
|
+
runDetectors,
|
|
939
|
+
builtinDetectors,
|
|
940
|
+
classifySource,
|
|
941
|
+
readManifestFacts,
|
|
942
|
+
detectOtherLockfiles,
|
|
943
|
+
nameFromLockPath,
|
|
944
|
+
readLockfile,
|
|
945
|
+
enrichWithRegistry,
|
|
946
|
+
encodePackageName,
|
|
947
|
+
createRegistryClient,
|
|
948
|
+
createDownloadsClient,
|
|
949
|
+
parsePackageSpec,
|
|
950
|
+
scanProject,
|
|
951
|
+
checkPackage,
|
|
952
|
+
renderTerminal,
|
|
953
|
+
JSON_SCHEMA_VERSION,
|
|
954
|
+
renderJson,
|
|
955
|
+
renderSarif,
|
|
956
|
+
resolveExitCode,
|
|
957
|
+
VERSION
|
|
958
|
+
};
|