@mojaloop/sdk-scheme-adapter 24.14.0-snapshot.1 → 24.15.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/CHANGELOG.md +24 -0
- package/README.md +17 -0
- package/modules/api-svc/src/InboundServer/handlers.js +1 -1
- package/modules/api-svc/src/config.js +4 -0
- package/modules/api-svc/src/lib/model/OutboundTransfersModel.js +2 -1
- package/modules/api-svc/src/lib/utils.js +27 -3
- package/modules/api-svc/test/unit/lib/utils.test.js +71 -1
- package/package.json +1 -1
- package/{sbom-v24.13.0.csv → sbom-v24.14.0.csv} +37 -37
package/CHANGELOG.md
CHANGED
|
@@ -1,4 +1,28 @@
|
|
|
1
1
|
# Changelog: [mojaloop/sdk-scheme-adapter](https://github.com/mojaloop/sdk-scheme-adapter)
|
|
2
|
+
## [24.15.0](https://github.com/mojaloop/sdk-scheme-adapter/compare/v24.14.0...v24.15.0) (2025-10-08)
|
|
3
|
+
|
|
4
|
+
|
|
5
|
+
### Features
|
|
6
|
+
|
|
7
|
+
* added trace_flags param ([#620](https://github.com/mojaloop/sdk-scheme-adapter/issues/620)) ([f19d92f](https://github.com/mojaloop/sdk-scheme-adapter/commit/f19d92f9b56b7a0f90120c3dc519218927bec0e2))
|
|
8
|
+
|
|
9
|
+
|
|
10
|
+
### Chore
|
|
11
|
+
|
|
12
|
+
* **sbom:** update sbom [skip ci] ([7f5f7a5](https://github.com/mojaloop/sdk-scheme-adapter/commit/7f5f7a568085edcf04a5d9ca6103b1e949ba52cf))
|
|
13
|
+
|
|
14
|
+
## [24.14.0](https://github.com/mojaloop/sdk-scheme-adapter/compare/v24.13.0...v24.14.0) (2025-10-08)
|
|
15
|
+
|
|
16
|
+
|
|
17
|
+
### Features
|
|
18
|
+
|
|
19
|
+
* **csi-1864:** improve certificate syncing ([#617](https://github.com/mojaloop/sdk-scheme-adapter/issues/617)) ([58040c9](https://github.com/mojaloop/sdk-scheme-adapter/commit/58040c9a6166a3079782f5f02b0fa6869c4581cc)), closes [#618](https://github.com/mojaloop/sdk-scheme-adapter/issues/618)
|
|
20
|
+
|
|
21
|
+
|
|
22
|
+
### Chore
|
|
23
|
+
|
|
24
|
+
* **sbom:** update sbom [skip ci] ([baeee8d](https://github.com/mojaloop/sdk-scheme-adapter/commit/baeee8d44e5267381b79845adc5b15e74e7e2aba))
|
|
25
|
+
|
|
2
26
|
## [24.13.0](https://github.com/mojaloop/sdk-scheme-adapter/compare/v24.12.0...v24.13.0) (2025-10-06)
|
|
3
27
|
|
|
4
28
|
|
package/README.md
CHANGED
|
@@ -159,6 +159,23 @@ _Note that these instructions are for Linux based systems. For Mac and/or Window
|
|
|
159
159
|
|
|
160
160
|
You can now examine the code of the Mock DFSP backend to understand how it implements the scheme-adapter simplified inbound API.
|
|
161
161
|
|
|
162
|
+
|
|
163
|
+
## Observability Configuration
|
|
164
|
+
|
|
165
|
+
### TRACE_FLAGS
|
|
166
|
+
|
|
167
|
+
Controls the trace flags value in the W3C Trace Context `traceparent` header generated by the SDK.
|
|
168
|
+
|
|
169
|
+
- **Environment Variable**: `TRACE_FLAGS`
|
|
170
|
+
- **Format**: Two-character lowercase hexadecimal string (00-ff)
|
|
171
|
+
- **Default**: `01` (sampled flag set)
|
|
172
|
+
- **Example**: `TRACE_FLAGS=00` or `TRACE_FLAGS=01`
|
|
173
|
+
|
|
174
|
+
The trace flags field indicates trace sampling options according to the [W3C Trace Context specification](https://www.w3.org/TR/trace-context/):
|
|
175
|
+
- `00`: No flags set (not sampled)
|
|
176
|
+
- `01`: Sampled flag set (trace should be sampled)
|
|
177
|
+
- Custom values can be used for specific observability requirements
|
|
178
|
+
|
|
162
179
|
## Testing
|
|
163
180
|
|
|
164
181
|
### Unit Tests
|
|
@@ -51,7 +51,7 @@ const extractBodyHeadersSourceFspId = ctx => ({
|
|
|
51
51
|
});
|
|
52
52
|
|
|
53
53
|
const extractTraceHeaders = ctx => {
|
|
54
|
-
const { traceparent = generateTraceparent(), tracestate } = ctx.request.headers;
|
|
54
|
+
const { traceparent = generateTraceparent(undefined, ctx.state.conf.traceFlags), tracestate } = ctx.request.headers;
|
|
55
55
|
|
|
56
56
|
const traceHeaders = {
|
|
57
57
|
traceparent,
|
|
@@ -282,4 +282,8 @@ module.exports = {
|
|
|
282
282
|
backoffFactor: env.get('GET_TRANSFER_REQUEST_RETRY_BACKOFF_FACTOR').default('2').asIntPositive(),
|
|
283
283
|
},
|
|
284
284
|
patchNotificationGraceTimeMs: env.get('PATCH_NOTIFICATION_GRACE_TIME_MS').default('15000').asIntPositive(),
|
|
285
|
+
|
|
286
|
+
// W3C Trace Context specification - trace flags for traceparent header
|
|
287
|
+
// Must be a two-character lowercase hex string (00-ff)
|
|
288
|
+
traceFlags: env.get('TRACE_FLAGS').default('01').asString(),
|
|
285
289
|
};
|
|
@@ -76,6 +76,7 @@ class OutboundTransfersModel {
|
|
|
76
76
|
this._sendFinalNotificationIfRequested = config.sendFinalNotificationIfRequested;
|
|
77
77
|
this._apiType = config.apiType;
|
|
78
78
|
this._supportedCurrencies = config.supportedCurrencies;
|
|
79
|
+
this._traceFlags = config.traceFlags;
|
|
79
80
|
|
|
80
81
|
if (this._autoAcceptParty && this._multiplePartiesResponse) {
|
|
81
82
|
throw new Error('Conflicting config options provided: autoAcceptParty and multiplePartiesResponse');
|
|
@@ -1512,7 +1513,7 @@ class OutboundTransfersModel {
|
|
|
1512
1513
|
|
|
1513
1514
|
#createOtelHeaders() {
|
|
1514
1515
|
return Object.freeze({
|
|
1515
|
-
traceparent: generateTraceparent(this.data.traceId),
|
|
1516
|
+
traceparent: generateTraceparent(this.data.traceId, this._traceFlags),
|
|
1516
1517
|
});
|
|
1517
1518
|
}
|
|
1518
1519
|
}
|
|
@@ -63,14 +63,38 @@ const transformHeadersIsoToFspiop = (isoHeaders) => {
|
|
|
63
63
|
return fspiopHeaders;
|
|
64
64
|
};
|
|
65
65
|
|
|
66
|
-
|
|
66
|
+
/**
|
|
67
|
+
* Validates trace flags according to W3C Trace Context specification
|
|
68
|
+
* @param {string} flags - The trace flags to validate
|
|
69
|
+
* @returns {boolean} - True if valid, false otherwise
|
|
70
|
+
*/
|
|
71
|
+
const isValidTraceFlags = (flags) => {
|
|
72
|
+
// Must be exactly 2 characters
|
|
73
|
+
if (typeof flags !== 'string' || flags.length !== 2) {
|
|
74
|
+
return false;
|
|
75
|
+
}
|
|
76
|
+
// Must be valid hex characters (0-9, a-f, A-F)
|
|
77
|
+
return /^[0-9a-fA-F]{2}$/.test(flags);
|
|
78
|
+
};
|
|
79
|
+
|
|
80
|
+
/**
|
|
81
|
+
* Generates a W3C Trace Context compliant traceparent header
|
|
82
|
+
* @param {string} [traceId] - Optional 32-character hex trace ID
|
|
83
|
+
* @param {string} [traceFlags='01'] - Optional 2-character hex trace flags (defaults to '01' - sampled)
|
|
84
|
+
* @returns {string} - The traceparent header value in format: version-traceId-spanId-flags
|
|
85
|
+
* @throws {Error} - If traceFlags is invalid according to W3C specification
|
|
86
|
+
*/
|
|
87
|
+
const generateTraceparent = (traceId = randomBytes(16).toString('hex'), traceFlags = '01') => {
|
|
88
|
+
if (!isValidTraceFlags(traceFlags)) {
|
|
89
|
+
throw new Error(`Invalid trace flags: '${traceFlags}'. Must be a two-character hex string (00-ff).`);
|
|
90
|
+
}
|
|
67
91
|
const spanId = randomBytes(8).toString('hex');
|
|
68
|
-
|
|
69
|
-
return `00-${traceId}-${spanId}-${flags}`;
|
|
92
|
+
return `00-${traceId}-${spanId}-${traceFlags.toLowerCase()}`;
|
|
70
93
|
};
|
|
71
94
|
|
|
72
95
|
module.exports = {
|
|
73
96
|
createAuthClient,
|
|
74
97
|
generateTraceparent,
|
|
98
|
+
isValidTraceFlags,
|
|
75
99
|
transformHeadersIsoToFspiop
|
|
76
100
|
};
|
|
@@ -24,7 +24,7 @@
|
|
|
24
24
|
|
|
25
25
|
--------------
|
|
26
26
|
******/
|
|
27
|
-
const { transformHeadersIsoToFspiop } = require('~/lib/utils');
|
|
27
|
+
const { transformHeadersIsoToFspiop, generateTraceparent, isValidTraceFlags } = require('~/lib/utils');
|
|
28
28
|
|
|
29
29
|
describe('utils', () => {
|
|
30
30
|
describe('transformHeadersIsoToFspiop', () => {
|
|
@@ -42,4 +42,74 @@ describe('utils', () => {
|
|
|
42
42
|
expect(transformHeadersIsoToFspiop(isoHeaders)).toEqual(fspiopHeaders);
|
|
43
43
|
});
|
|
44
44
|
});
|
|
45
|
+
|
|
46
|
+
describe('isValidTraceFlags', () => {
|
|
47
|
+
it('should validate correct hex strings', () => {
|
|
48
|
+
expect(isValidTraceFlags('00')).toBe(true);
|
|
49
|
+
expect(isValidTraceFlags('01')).toBe(true);
|
|
50
|
+
});
|
|
51
|
+
|
|
52
|
+
it('should reject invalid strings', () => {
|
|
53
|
+
expect(isValidTraceFlags('0')).toBe(false); // Too short
|
|
54
|
+
expect(isValidTraceFlags('000')).toBe(false); // Too long
|
|
55
|
+
expect(isValidTraceFlags('zz')).toBe(false); // Invalid hex
|
|
56
|
+
expect(isValidTraceFlags('')).toBe(false); // Empty string
|
|
57
|
+
});
|
|
58
|
+
|
|
59
|
+
it('should reject non-string inputs', () => {
|
|
60
|
+
expect(isValidTraceFlags(null)).toBe(false);
|
|
61
|
+
expect(isValidTraceFlags(undefined)).toBe(false);
|
|
62
|
+
expect(isValidTraceFlags(1)).toBe(false);
|
|
63
|
+
expect(isValidTraceFlags({})).toBe(false);
|
|
64
|
+
});
|
|
65
|
+
});
|
|
66
|
+
|
|
67
|
+
describe('generateTraceparent', () => {
|
|
68
|
+
describe('default behavior', () => {
|
|
69
|
+
it('should generate valid traceparent with default flags (01)', () => {
|
|
70
|
+
const traceparent = generateTraceparent();
|
|
71
|
+
const parts = traceparent.split('-');
|
|
72
|
+
|
|
73
|
+
expect(parts).toHaveLength(4);
|
|
74
|
+
expect(parts[0]).toBe('00'); // version
|
|
75
|
+
expect(parts[1]).toHaveLength(32); // traceId (16 bytes = 32 hex chars)
|
|
76
|
+
expect(parts[2]).toHaveLength(16); // spanId (8 bytes = 16 hex chars)
|
|
77
|
+
expect(parts[3]).toBe('01'); // default flags
|
|
78
|
+
|
|
79
|
+
// Validate hex format
|
|
80
|
+
expect(/^[0-9a-f]{32}$/.test(parts[1])).toBe(true);
|
|
81
|
+
expect(/^[0-9a-f]{16}$/.test(parts[2])).toBe(true);
|
|
82
|
+
});
|
|
83
|
+
|
|
84
|
+
it('should use provided traceId', () => {
|
|
85
|
+
const traceId = '1234567890abcdef1234567890abcdef';
|
|
86
|
+
const traceparent = generateTraceparent(traceId);
|
|
87
|
+
const parts = traceparent.split('-');
|
|
88
|
+
|
|
89
|
+
expect(parts[1]).toBe(traceId);
|
|
90
|
+
});
|
|
91
|
+
});
|
|
92
|
+
|
|
93
|
+
describe('custom trace flags', () => {
|
|
94
|
+
it('should use custom trace flags when provided', () => {
|
|
95
|
+
const traceparent = generateTraceparent(undefined, '00');
|
|
96
|
+
expect(traceparent.split('-')[3]).toBe('00');
|
|
97
|
+
});
|
|
98
|
+
|
|
99
|
+
it('should accept uppercase hex and convert to lowercase', () => {
|
|
100
|
+
const traceparent = generateTraceparent(undefined, 'FF');
|
|
101
|
+
expect(traceparent.split('-')[3]).toBe('ff');
|
|
102
|
+
});
|
|
103
|
+
});
|
|
104
|
+
|
|
105
|
+
describe('validation', () => {
|
|
106
|
+
it('should throw error for invalid trace flags', () => {
|
|
107
|
+
expect(() => generateTraceparent(undefined, '0')).toThrow();
|
|
108
|
+
expect(() => generateTraceparent(undefined, '000')).toThrow();
|
|
109
|
+
expect(() => generateTraceparent(undefined, 'zz')).toThrow();
|
|
110
|
+
});
|
|
111
|
+
|
|
112
|
+
});
|
|
113
|
+
|
|
114
|
+
});
|
|
45
115
|
});
|
package/package.json
CHANGED
|
@@ -2,12 +2,12 @@ type,bom_ref,license-id,group,author,name,version,purl,path,description,vcs-url,
|
|
|
2
2
|
application,,,,,yarn,4.10.3,,,,,,,,,,,,,,,,,
|
|
3
3
|
library,,Apache-2.0,@cyclonedx,Jan Kowalleck,yarn-plugin-cyclonedx,3.0.3,,,Create CycloneDX Software Bill of Materials (SBOM) from yarn projects.,git+https://github.com/CycloneDX/cyclonedx-node-yarn.git,"as detected from PackageJson property ""repository.url""",https://github.com/CycloneDX/cyclonedx-node-yarn#readme,"as detected from PackageJson property ""homepage""",https://github.com/CycloneDX/cyclonedx-node-yarn/issues,"as detected from PackageJson property ""bugs.url""",,,,,,,,
|
|
4
4
|
library,,Apache-2.0,@cyclonedx,,cyclonedx-library,8.3.0,,,,,,https://github.com/CycloneDX/cyclonedx-javascript-library#readme,"as detected from PackageJson property ""homepage""",,,,,,,,,,
|
|
5
|
-
application,@mojaloop/sdk-scheme-adapter@workspace:.,Apache-2.0,@mojaloop,,sdk-scheme-adapter,24.
|
|
5
|
+
application,@mojaloop/sdk-scheme-adapter@workspace:.,Apache-2.0,@mojaloop,,sdk-scheme-adapter,24.14.0,pkg:npm/%40mojaloop/sdk-scheme-adapter@24.14.0,,mojaloop sdk-scheme-adapter,,,https://github.com/mojaloop/sdk-scheme-adapter,"as detected from PackageJson property ""homepage""",https://github.com/mojaloop/sdk-scheme-adapter/issues#readme,"as detected from PackageJson property ""bugs.url""",,,,,,active,Active in npm registry,2025-10-08T09:08:11.048Z
|
|
6
6
|
library,@types/jest@30.0.0,MIT,@types,,jest,30.0.0,pkg:npm/%40types/jest@30.0.0?vcs_url=git%2Bhttps%3A%2F%2Fgithub.com%2FDefinitelyTyped%2FDefinitelyTyped.git#types/jest,,TypeScript definitions for jest,git+https://github.com/DefinitelyTyped/DefinitelyTyped.git#types/jest,"as detected from PackageJson property ""repository.url"" and ""repository.directory""",https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/jest,"as detected from PackageJson property ""homepage""",https://github.com/DefinitelyTyped/DefinitelyTyped/issues,"as detected from PackageJson property ""bugs.url""",,,,,,active,Active in npm registry,2025-08-03T07:02:46.002Z
|
|
7
7
|
library,@types/node-cache@4.2.5,MIT,@types,,node-cache,4.2.5,pkg:npm/%40types/node-cache@4.2.5?vcs_url=git%2Bhttps%3A%2F%2Fgithub.com%2Fmpneuried%2Fnodecache.git,,Stub TypeScript definitions entry for node-cache~ which provides its own types definitions,git+https://github.com/mpneuried/nodecache.git,"as detected from PackageJson property ""repository.url""",https://github.com/mpneuried/nodecache#readme,"as detected from PackageJson property ""homepage""",https://github.com/mpneuried/nodecache/issues,"as detected from PackageJson property ""bugs.url""",,,,,,deprecated,"This is a stub types definition. node-cache provides its own type definitions, so you do not need this installed.",2022-06-13T01:13:56.807Z
|
|
8
8
|
library,@types/node@24.7.0,MIT,@types,,node,24.7.0,pkg:npm/%40types/node@24.7.0?vcs_url=git%2Bhttps%3A%2F%2Fgithub.com%2FDefinitelyTyped%2FDefinitelyTyped.git#types/node,,TypeScript definitions for node,git+https://github.com/DefinitelyTyped/DefinitelyTyped.git#types/node,"as detected from PackageJson property ""repository.url"" and ""repository.directory""",https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/node,"as detected from PackageJson property ""homepage""",https://github.com/DefinitelyTyped/DefinitelyTyped/issues,"as detected from PackageJson property ""bugs.url""",,,,,,active,Active in npm registry,2025-10-06T07:33:46.739Z
|
|
9
|
-
library,@typescript-eslint/eslint-plugin@8.
|
|
10
|
-
library,@typescript-eslint/parser@8.
|
|
9
|
+
library,@typescript-eslint/eslint-plugin@8.46.0,MIT,@typescript-eslint,,eslint-plugin,8.46.0,pkg:npm/%40typescript-eslint/eslint-plugin@8.46.0?vcs_url=git%2Bhttps%3A%2F%2Fgithub.com%2Ftypescript-eslint%2Ftypescript-eslint.git#packages/eslint-plugin,,TypeScript plugin for ESLint,git+https://github.com/typescript-eslint/typescript-eslint.git#packages/eslint-plugin,"as detected from PackageJson property ""repository.url"" and ""repository.directory""",https://typescript-eslint.io/packages/eslint-plugin,"as detected from PackageJson property ""homepage""",https://github.com/typescript-eslint/typescript-eslint/issues,"as detected from PackageJson property ""bugs.url""",,,,,,active,Active in npm registry,2025-10-07T03:17:24.201Z
|
|
10
|
+
library,@typescript-eslint/parser@8.46.0,MIT,@typescript-eslint,,parser,8.46.0,pkg:npm/%40typescript-eslint/parser@8.46.0?vcs_url=git%2Bhttps%3A%2F%2Fgithub.com%2Ftypescript-eslint%2Ftypescript-eslint.git#packages/parser,,An ESLint custom parser which leverages TypeScript ESTree,git+https://github.com/typescript-eslint/typescript-eslint.git#packages/parser,"as detected from PackageJson property ""repository.url"" and ""repository.directory""",https://typescript-eslint.io/packages/parser,"as detected from PackageJson property ""homepage""",https://github.com/typescript-eslint/typescript-eslint/issues,"as detected from PackageJson property ""bugs.url""",,,,,,active,Active in npm registry,2025-10-07T03:17:07.958Z
|
|
11
11
|
library,audit-ci@7.1.0,Apache-2.0,,,audit-ci,7.1.0,pkg:npm/audit-ci@7.1.0?vcs_url=git%2Bssh%3A%2F%2Fgit%40github.com%2FIBM%2Faudit-ci.git,,Audits NPM~ Yarn~ and PNPM projects in CI environments,git+ssh://git@github.com/IBM/audit-ci.git,"as detected from PackageJson property ""repository.url""",https://github.com/IBM/audit-ci,"as detected from PackageJson property ""homepage""",https://github.com/IBM/audit-ci/issues,"as detected from PackageJson property ""bugs.url""",,,,,,active,Active in npm registry,2024-07-03T18:02:15.522Z
|
|
12
12
|
library,eslint-config-airbnb-typescript@18.0.0,MIT,,Matt Turnbull,eslint-config-airbnb-typescript,18.0.0,pkg:npm/eslint-config-airbnb-typescript@18.0.0?vcs_url=git%2Bhttps%3A%2F%2Fgithub.com%2Fiamturns%2Feslint-config-airbnb-typescript.git,,Airbnb's ESLint config with TypeScript support,git+https://github.com/iamturns/eslint-config-airbnb-typescript.git,"as detected from PackageJson property ""repository.url""",https://github.com/iamturns/eslint-config-airbnb-typescript,"as detected from PackageJson property ""homepage""",https://github.com/iamturns/eslint-config-airbnb-typescript/issues,"as detected from PackageJson property ""bugs.url""",,,,,matt@iamturns.com,active,Active in npm registry,2024-03-02T01:16:55.212Z
|
|
13
13
|
library,eslint-plugin-import@2.32.0,MIT,,Ben Mosher,eslint-plugin-import,2.32.0,pkg:npm/eslint-plugin-import@2.32.0?vcs_url=git%2Bhttps%3A%2F%2Fgithub.com%2Fimport-js%2Feslint-plugin-import.git,,Import with sanity.,git+https://github.com/import-js/eslint-plugin-import.git,"as detected from PackageJson property ""repository.url""",https://github.com/import-js/eslint-plugin-import,"as detected from PackageJson property ""homepage""",https://github.com/import-js/eslint-plugin-import/issues,"as detected from PackageJson property ""bugs.url""",,,,,me@benmosher.com,active,Active in npm registry,2025-06-20T21:59:10.022Z
|
|
@@ -17,7 +17,7 @@ library,jest@29.7.0,MIT,,,jest,29.7.0,pkg:npm/jest@29.7.0?vcs_url=git%2Bhttps%3A
|
|
|
17
17
|
library,knex@3.1.0,MIT,,Tim Griesser,knex,3.1.0,pkg:npm/knex@3.1.0?vcs_url=git%3A%2F%2Fgithub.com%2Fknex%2Fknex.git,,A batteries-included SQL query & schema builder for PostgresSQL~ MySQL~ CockroachDB~ MSSQL and SQLite3,git://github.com/knex/knex.git,"as detected from PackageJson property ""repository.url""",https://knex.github.io/documentation/,"as detected from PackageJson property ""homepage""",https://github.com/knex/knex/issues,"as detected from PackageJson property ""bugs.url""",,,,,,active,Active in npm registry,2024-12-13T19:06:07.256Z
|
|
18
18
|
library,nodemon@3.1.10,MIT,,Remy Sharp,nodemon,3.1.10,pkg:npm/nodemon@3.1.10?vcs_url=git%2Bhttps%3A%2F%2Fgithub.com%2Fremy%2Fnodemon.git,,Simple monitor script for use during development of a Node.js app.,git+https://github.com/remy/nodemon.git,"as detected from PackageJson property ""repository.url""",https://nodemon.io,"as detected from PackageJson property ""homepage""",https://github.com/remy/nodemon/issues,"as detected from PackageJson property ""bugs.url""",,,,,,active,Active in npm registry,2025-09-30T00:55:41.075Z
|
|
19
19
|
library,npm-check-updates@16.7.10,Apache-2.0,,Tomas Junnonen,npm-check-updates,16.7.10,pkg:npm/npm-check-updates@16.7.10?vcs_url=git%2Bhttps%3A%2F%2Fgithub.com%2Fraineorshine%2Fnpm-check-updates.git,,Find newer versions of dependencies than what your package.json allows,git+https://github.com/raineorshine/npm-check-updates.git,"as detected from PackageJson property ""repository.url""",https://github.com/raineorshine/npm-check-updates,"as detected from PackageJson property ""homepage""",https://github.com/raineorshine/npm-check-updates/issues,"as detected from PackageJson property ""bugs.url""",,,,,tomas1@gmail.com,active,Active in npm registry,2025-09-29T00:58:18.214Z
|
|
20
|
-
library,nx@16.5.0,MIT,,Victor Savkin,nx,16.5.0,pkg:npm/nx@16.5.0?vcs_url=git%2Bhttps%3A%2F%2Fgithub.com%2Fnrwl%2Fnx.git#packages/nx,,The core Nx plugin contains the core functionality of Nx like the project graph~ nx commands and task orchestration.,git+https://github.com/nrwl/nx.git#packages/nx,"as detected from PackageJson property ""repository.url"" and ""repository.directory""",https://nx.dev,"as detected from PackageJson property ""homepage""",https://github.com/nrwl/nx/issues,"as detected from PackageJson property ""bugs.url""",,,,,,active,Active in npm registry,2025-10-
|
|
20
|
+
library,nx@16.5.0,MIT,,Victor Savkin,nx,16.5.0,pkg:npm/nx@16.5.0?vcs_url=git%2Bhttps%3A%2F%2Fgithub.com%2Fnrwl%2Fnx.git#packages/nx,,The core Nx plugin contains the core functionality of Nx like the project graph~ nx commands and task orchestration.,git+https://github.com/nrwl/nx.git#packages/nx,"as detected from PackageJson property ""repository.url"" and ""repository.directory""",https://nx.dev,"as detected from PackageJson property ""homepage""",https://github.com/nrwl/nx/issues,"as detected from PackageJson property ""bugs.url""",,,,,,active,Active in npm registry,2025-10-07T21:08:24.530Z
|
|
21
21
|
library,replace@1.2.2,MIT,,Alessandro Maclaine,replace,1.2.2,pkg:npm/replace@1.2.2?vcs_url=git%2Bhttps%3A%2F%2Fgithub.com%2FALMaclaine%2Freplace.git,,Command line search and replace utility,git+https://github.com/ALMaclaine/replace.git,"as detected from PackageJson property ""repository.url""",https://github.com/ALMaclaine/replace#readme,"as detected from PackageJson property ""homepage""",https://github.com/ALMaclaine/replace/issues,"as detected from PackageJson property ""bugs.url""",,,,,almaclaine@gmail.com,active,Active in npm registry,2023-02-10T19:41:18.075Z
|
|
22
22
|
library,standard-version@9.5.0,ISC,,Ben Coe,standard-version,9.5.0,pkg:npm/standard-version@9.5.0?vcs_url=git%2Bhttps%3A%2F%2Fgithub.com%2Fconventional-changelog%2Fstandard-version.git,,replacement for `npm version` with automatic CHANGELOG generation,git+https://github.com/conventional-changelog/standard-version.git,"as detected from PackageJson property ""repository.url""",https://github.com/conventional-changelog/standard-version#readme,"as detected from PackageJson property ""homepage""",https://github.com/conventional-changelog/standard-version/issues,"as detected from PackageJson property ""bugs.url""",,,,,ben@npmjs.com,active,Active in npm registry,2023-04-01T00:02:16.994Z
|
|
23
23
|
library,ts-jest@29.4.4,MIT,,Kulshekhar Kabra,ts-jest,29.4.4,pkg:npm/ts-jest@29.4.4?vcs_url=git%2Bhttps%3A%2F%2Fgithub.com%2Fkulshekhar%2Fts-jest.git,,A Jest transformer with source map support that lets you use Jest to test projects written in TypeScript,git+https://github.com/kulshekhar/ts-jest.git,"as detected from PackageJson property ""repository.url""",https://kulshekhar.github.io/ts-jest,"as detected from PackageJson property ""homepage""",https://github.com/kulshekhar/ts-jest/issues,"as detected from PackageJson property ""bugs.url""",,,,,kulshekhar@users.noreply.github.com,active,Active in npm registry,2025-09-19T14:11:09.032Z
|
|
@@ -36,7 +36,7 @@ library,fast-glob@3.3.3,MIT,,Denis Malinochkin,fast-glob,3.3.3,pkg:npm/fast-glob
|
|
|
36
36
|
library,fs-extra@11.3.2,MIT,,JP Richardson,fs-extra,11.3.2,pkg:npm/fs-extra@11.3.2?vcs_url=git%2Bhttps%3A%2F%2Fgithub.com%2Fjprichardson%2Fnode-fs-extra.git,,fs-extra contains methods that aren't included in the vanilla Node.js fs package. Such as recursive mkdir~ copy~ and remove.,git+https://github.com/jprichardson/node-fs-extra.git,"as detected from PackageJson property ""repository.url""",https://github.com/jprichardson/node-fs-extra,"as detected from PackageJson property ""homepage""",https://github.com/jprichardson/node-fs-extra/issues,"as detected from PackageJson property ""bugs.url""",,,,,jprichardson@gmail.com,active,Active in npm registry,2025-09-15T18:05:36.928Z
|
|
37
37
|
library,js-yaml@4.1.0,MIT,,Vladimir Zapparov,js-yaml,4.1.0,pkg:npm/js-yaml@4.1.0?vcs_url=git%2Bhttps%3A%2F%2Fgithub.com%2Fnodeca%2Fjs-yaml.git,,YAML 1.2 parser and serializer,git+https://github.com/nodeca/js-yaml.git,"as detected from PackageJson property ""repository.url""",https://github.com/nodeca/js-yaml#readme,"as detected from PackageJson property ""homepage""",https://github.com/nodeca/js-yaml/issues,"as detected from PackageJson property ""bugs.url""",,,,,dervus.grim@gmail.com,active,Active in npm registry,2023-06-09T21:33:18.974Z
|
|
38
38
|
library,lodash-es@4.17.21,MIT,,John-David Dalton,lodash-es,4.17.21,pkg:npm/lodash-es@4.17.21?vcs_url=git%2Bhttps%3A%2F%2Fgithub.com%2Flodash%2Flodash.git,,Lodash exported as ES modules.,git+https://github.com/lodash/lodash.git,"as detected from PackageJson property ""repository.url""",https://lodash.com/custom-builds,"as detected from PackageJson property ""homepage""",https://github.com/lodash/lodash-cli/issues,"as detected from PackageJson property ""bugs.url""",,,,,john.david.dalton@gmail.com,active,Active in npm registry,2025-07-07T05:38:02.445Z
|
|
39
|
-
library,semver@7.7.2,ISC,,GitHub Inc.,semver,7.7.2,pkg:npm/semver@7.7.2?vcs_url=git%2Bhttps%3A%2F%2Fgithub.com%2Fnpm%2Fnode-semver.git,,The semantic version parser used by npm.,git+https://github.com/npm/node-semver.git,"as detected from PackageJson property ""repository.url""",https://github.com/npm/node-semver#readme,"as detected from PackageJson property ""homepage""",https://github.com/npm/node-semver/issues,"as detected from PackageJson property ""bugs.url""",,,,,,active,Active in npm registry,2025-
|
|
39
|
+
library,semver@7.7.2,ISC,,GitHub Inc.,semver,7.7.2,pkg:npm/semver@7.7.2?vcs_url=git%2Bhttps%3A%2F%2Fgithub.com%2Fnpm%2Fnode-semver.git,,The semantic version parser used by npm.,git+https://github.com/npm/node-semver.git,"as detected from PackageJson property ""repository.url""",https://github.com/npm/node-semver#readme,"as detected from PackageJson property ""homepage""",https://github.com/npm/node-semver/issues,"as detected from PackageJson property ""bugs.url""",,,,,,active,Active in npm registry,2025-10-07T18:00:52.105Z
|
|
40
40
|
library,synp@1.9.14,MIT,,Aram Drevekenin,synp,1.9.14,pkg:npm/synp@1.9.14?vcs_url=git%2Bhttps%3A%2F%2Fgithub.com%2Fimsnif%2Fsynp.git,,Convert yarn.lock to package-lock.json and vice versa,git+https://github.com/imsnif/synp.git,"as detected from PackageJson property ""repository.url""",https://github.com/imsnif/synp#readme,"as detected from PackageJson property ""homepage""",https://github.com/imsnif/synp/issues,"as detected from PackageJson property ""bugs.url""",,,,,grimsniffer@gmail.com,active,Active in npm registry,2024-11-29T17:09:00.320Z
|
|
41
41
|
library,colors@1.4.0,MIT,,Marak Squires,colors,1.4.0,pkg:npm/colors@1.4.0?vcs_url=git%2Bssh%3A%2F%2Fgit%40github.com%2FMarak%2Fcolors.js.git,,get colors in your node.js console,git+ssh://git@github.com/Marak/colors.js.git,"as detected from PackageJson property ""repository.url""",https://github.com/Marak/colors.js,"as detected from PackageJson property ""homepage""",https://github.com/Marak/colors.js/issues,"as detected from PackageJson property ""bugs.url""",,,,,,active,Active in npm registry,2025-09-09T12:52:41.008Z
|
|
42
42
|
library,commander@7.2.0,MIT,,TJ Holowaychuk,commander,7.2.0,pkg:npm/commander@7.2.0?vcs_url=git%2Bhttps%3A%2F%2Fgithub.com%2Ftj%2Fcommander.js.git,,the complete solution for node.js command-line programs,git+https://github.com/tj/commander.js.git,"as detected from PackageJson property ""repository.url""",https://github.com/tj/commander.js#readme,"as detected from PackageJson property ""homepage""",https://github.com/tj/commander.js/issues,"as detected from PackageJson property ""bugs.url""",,,,,tj@vision-media.ca,active,Active in npm registry,2025-09-12T07:27:06.932Z
|
|
@@ -126,7 +126,7 @@ library,ansi-styles@4.3.0,MIT,,Sindre Sorhus,ansi-styles,4.3.0,pkg:npm/ansi-styl
|
|
|
126
126
|
library,color-convert@2.0.1,MIT,,Heather Arthur,color-convert,2.0.1,pkg:npm/color-convert@2.0.1?vcs_url=git%2Bhttps%3A%2F%2Fgithub.com%2FQix-%2Fcolor-convert.git,,Plain color conversion functions,git+https://github.com/Qix-/color-convert.git,"as detected from PackageJson property ""repository.url""",https://github.com/Qix-/color-convert#readme,"as detected from PackageJson property ""homepage""",https://github.com/Qix-/color-convert/issues,"as detected from PackageJson property ""bugs.url""",,,,,fayearthur@gmail.com,active,Active in npm registry,2025-09-13T16:37:40.407Z
|
|
127
127
|
library,color-name@1.1.4,MIT,,DY,color-name,1.1.4,pkg:npm/color-name@1.1.4?vcs_url=git%2Bssh%3A%2F%2Fgit%40github.com%2Fcolorjs%2Fcolor-name.git,,A list of color names and its values,git+ssh://git@github.com/colorjs/color-name.git,"as detected from PackageJson property ""repository.url""",https://github.com/colorjs/color-name,"as detected from PackageJson property ""homepage""",https://github.com/colorjs/color-name/issues,"as detected from PackageJson property ""bugs.url""",,,,,dfcreative@gmail.com,active,Active in npm registry,2025-09-13T17:23:59.803Z
|
|
128
128
|
library,meow@8.1.2,MIT,,Sindre Sorhus,meow,8.1.2,pkg:npm/meow@8.1.2?vcs_url=git%2Bhttps%3A%2F%2Fgithub.com%2Fsindresorhus%2Fmeow.git,,CLI app helper,git+https://github.com/sindresorhus/meow.git,"as detected from PackageJson property ""repository.url""",https://github.com/sindresorhus/meow#readme,"as detected from PackageJson property ""homepage""",https://github.com/sindresorhus/meow/issues,"as detected from PackageJson property ""bugs.url""",,,,,sindresorhus@gmail.com,active,Active in npm registry,2025-09-15T11:23:42.347Z
|
|
129
|
-
library,semver@6.3.1,ISC,,GitHub Inc.,semver,6.3.1,pkg:npm/semver@6.3.1?vcs_url=git%2Bhttps%3A%2F%2Fgithub.com%2Fnpm%2Fnode-semver.git,,The semantic version parser used by npm.,git+https://github.com/npm/node-semver.git,"as detected from PackageJson property ""repository.url""",https://github.com/npm/node-semver#readme,"as detected from PackageJson property ""homepage""",https://github.com/npm/node-semver/issues,"as detected from PackageJson property ""bugs.url""",,,,,,active,Active in npm registry,2025-
|
|
129
|
+
library,semver@6.3.1,ISC,,GitHub Inc.,semver,6.3.1,pkg:npm/semver@6.3.1?vcs_url=git%2Bhttps%3A%2F%2Fgithub.com%2Fnpm%2Fnode-semver.git,,The semantic version parser used by npm.,git+https://github.com/npm/node-semver.git,"as detected from PackageJson property ""repository.url""",https://github.com/npm/node-semver#readme,"as detected from PackageJson property ""homepage""",https://github.com/npm/node-semver/issues,"as detected from PackageJson property ""bugs.url""",,,,,,active,Active in npm registry,2025-10-07T18:00:52.105Z
|
|
130
130
|
library,@types/minimist@1.2.5,MIT,@types,,minimist,1.2.5,pkg:npm/%40types/minimist@1.2.5?vcs_url=git%2Bhttps%3A%2F%2Fgithub.com%2FDefinitelyTyped%2FDefinitelyTyped.git#types/minimist,,TypeScript definitions for minimist,git+https://github.com/DefinitelyTyped/DefinitelyTyped.git#types/minimist,"as detected from PackageJson property ""repository.url"" and ""repository.directory""",https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/minimist,"as detected from PackageJson property ""homepage""",https://github.com/DefinitelyTyped/DefinitelyTyped/issues,"as detected from PackageJson property ""bugs.url""",,,,,,active,Active in npm registry,2025-08-03T07:18:38.345Z
|
|
131
131
|
library,camelcase-keys@6.2.2,MIT,,Sindre Sorhus,camelcase-keys,6.2.2,pkg:npm/camelcase-keys@6.2.2?vcs_url=git%2Bhttps%3A%2F%2Fgithub.com%2Fsindresorhus%2Fcamelcase-keys.git,,Convert object keys to camel case,git+https://github.com/sindresorhus/camelcase-keys.git,"as detected from PackageJson property ""repository.url""",https://github.com/sindresorhus/camelcase-keys#readme,"as detected from PackageJson property ""homepage""",https://github.com/sindresorhus/camelcase-keys/issues,"as detected from PackageJson property ""bugs.url""",,,,,sindresorhus@gmail.com,active,Active in npm registry,2025-09-09T22:14:34.722Z
|
|
132
132
|
library,decamelize-keys@1.1.1,MIT,,Sindre Sorhus,decamelize-keys,1.1.1,pkg:npm/decamelize-keys@1.1.1?vcs_url=git%2Bhttps%3A%2F%2Fgithub.com%2Fsindresorhus%2Fdecamelize-keys.git,,Convert object keys from camelCase to lowercase with a custom separator,git+https://github.com/sindresorhus/decamelize-keys.git,"as detected from PackageJson property ""repository.url""",https://github.com/sindresorhus/decamelize-keys#readme,"as detected from PackageJson property ""homepage""",https://github.com/sindresorhus/decamelize-keys/issues,"as detected from PackageJson property ""bugs.url""",,,,,sindresorhus@gmail.com,active,Active in npm registry,2023-06-17T00:08:53.952Z
|
|
@@ -155,9 +155,9 @@ library,is-arrayish@0.2.1,MIT,,Qix,is-arrayish,0.2.1,pkg:npm/is-arrayish@0.2.1?v
|
|
|
155
155
|
library,@babel/helper-validator-identifier@7.27.1,MIT,@babel,The Babel Team,helper-validator-identifier,7.27.1,pkg:npm/%40babel/helper-validator-identifier@7.27.1?vcs_url=git%2Bhttps%3A%2F%2Fgithub.com%2Fbabel%2Fbabel.git#packages/babel-helper-validator-identifier,,Validate identifier/keywords name,git+https://github.com/babel/babel.git#packages/babel-helper-validator-identifier,"as detected from PackageJson property ""repository.url"" and ""repository.directory""",https://github.com/babel/babel#readme,"as detected from PackageJson property ""homepage""",https://github.com/babel/babel/issues,"as detected from PackageJson property ""bugs.url""",,,,,,active,Active in npm registry,2025-09-05T15:05:38.724Z
|
|
156
156
|
library,js-tokens@4.0.0,MIT,,Simon Lydell,js-tokens,4.0.0,pkg:npm/js-tokens@4.0.0?vcs_url=git%2Bhttps%3A%2F%2Fgithub.com%2Flydell%2Fjs-tokens.git,,A regex that tokenizes JavaScript.,git+https://github.com/lydell/js-tokens.git,"as detected from PackageJson property ""repository.url""",https://github.com/lydell/js-tokens#readme,"as detected from PackageJson property ""homepage""",https://github.com/lydell/js-tokens/issues,"as detected from PackageJson property ""bugs.url""",,,,,,active,Active in npm registry,2024-11-22T17:21:10.707Z
|
|
157
157
|
library,picocolors@1.1.1,ISC,,Alexey Raspopov,picocolors,1.1.1,pkg:npm/picocolors@1.1.1?vcs_url=git%2Bhttps%3A%2F%2Fgithub.com%2Falexeyraspopov%2Fpicocolors.git,,The tiniest and the fastest library for terminal output formatting with ANSI colors,git+https://github.com/alexeyraspopov/picocolors.git,"as detected from PackageJson property ""repository.url""",https://github.com/alexeyraspopov/picocolors#readme,"as detected from PackageJson property ""homepage""",https://github.com/alexeyraspopov/picocolors/issues,"as detected from PackageJson property ""bugs.url""",,,,,,active,Active in npm registry,2024-10-16T18:20:04.161Z
|
|
158
|
-
library,hosted-git-info@2.8.9,ISC,,Rebecca Turner,hosted-git-info,2.8.9,pkg:npm/hosted-git-info@2.8.9?vcs_url=git%2Bhttps%3A%2F%2Fgithub.com%2Fnpm%2Fhosted-git-info.git,,Provides metadata and conversions from repository urls for Github~ Bitbucket and Gitlab,git+https://github.com/npm/hosted-git-info.git,"as detected from PackageJson property ""repository.url""",https://github.com/npm/hosted-git-info,"as detected from PackageJson property ""homepage""",https://github.com/npm/hosted-git-info/issues,"as detected from PackageJson property ""bugs.url""",,,,,me@re-becca.org,active,Active in npm registry,2025-
|
|
158
|
+
library,hosted-git-info@2.8.9,ISC,,Rebecca Turner,hosted-git-info,2.8.9,pkg:npm/hosted-git-info@2.8.9?vcs_url=git%2Bhttps%3A%2F%2Fgithub.com%2Fnpm%2Fhosted-git-info.git,,Provides metadata and conversions from repository urls for Github~ Bitbucket and Gitlab,git+https://github.com/npm/hosted-git-info.git,"as detected from PackageJson property ""repository.url""",https://github.com/npm/hosted-git-info,"as detected from PackageJson property ""homepage""",https://github.com/npm/hosted-git-info/issues,"as detected from PackageJson property ""bugs.url""",,,,,me@re-becca.org,active,Active in npm registry,2025-10-07T21:29:45.153Z
|
|
159
159
|
library,resolve@patch:resolve@npm%3A1.22.10#optional!builtin<compat/resolve>::version=1.22.10&hash=c3c19d,MIT,,James Halliday,resolve,1.22.10,pkg:npm/resolve@1.22.10?vcs_url=git%3A%2F%2Fgithub.com%2Fbrowserify%2Fresolve.git,,resolve like require.resolve() on behalf of files asynchronously and synchronously,git://github.com/browserify/resolve.git,"as detected from PackageJson property ""repository.url""",https://github.com/browserify/resolve#readme,"as detected from PackageJson property ""homepage""",https://github.com/browserify/resolve/issues,"as detected from PackageJson property ""bugs.url""",,,,,,,,
|
|
160
|
-
library,semver@5.7.2,ISC,,GitHub Inc.,semver,5.7.2,pkg:npm/semver@5.7.2?vcs_url=git%2Bhttps%3A%2F%2Fgithub.com%2Fnpm%2Fnode-semver.git,,The semantic version parser used by npm.,git+https://github.com/npm/node-semver.git,"as detected from PackageJson property ""repository.url""",https://github.com/npm/node-semver#readme,"as detected from PackageJson property ""homepage""",https://github.com/npm/node-semver/issues,"as detected from PackageJson property ""bugs.url""",,,,,,active,Active in npm registry,2025-
|
|
160
|
+
library,semver@5.7.2,ISC,,GitHub Inc.,semver,5.7.2,pkg:npm/semver@5.7.2?vcs_url=git%2Bhttps%3A%2F%2Fgithub.com%2Fnpm%2Fnode-semver.git,,The semantic version parser used by npm.,git+https://github.com/npm/node-semver.git,"as detected from PackageJson property ""repository.url""",https://github.com/npm/node-semver#readme,"as detected from PackageJson property ""homepage""",https://github.com/npm/node-semver/issues,"as detected from PackageJson property ""bugs.url""",,,,,,active,Active in npm registry,2025-10-07T18:00:52.105Z
|
|
161
161
|
library,validate-npm-package-license@3.0.4,Apache-2.0,,Kyle E. Mitchell,validate-npm-package-license,3.0.4,pkg:npm/validate-npm-package-license@3.0.4?vcs_url=git%2Bhttps%3A%2F%2Fgithub.com%2Fkemitchell%2Fvalidate-npm-package-license.js.git,,Give me a string and I'll tell you if it's a valid npm package license string,git+https://github.com/kemitchell/validate-npm-package-license.js.git,"as detected from PackageJson property ""repository.url""",https://github.com/kemitchell/validate-npm-package-license.js#readme,"as detected from PackageJson property ""homepage""",https://github.com/kemitchell/validate-npm-package-license.js/issues,"as detected from PackageJson property ""bugs.url""",,,,,kyle@kemitchell.com,active,Active in npm registry,2022-06-28T08:28:46.613Z
|
|
162
162
|
library,spdx-correct@3.2.0,Apache-2.0,,,spdx-correct,3.2.0,pkg:npm/spdx-correct@3.2.0?vcs_url=git%2Bhttps%3A%2F%2Fgithub.com%2Fjslicense%2Fspdx-correct.js.git,,correct invalid SPDX expressions,git+https://github.com/jslicense/spdx-correct.js.git,"as detected from PackageJson property ""repository.url""",https://github.com/jslicense/spdx-correct.js#readme,"as detected from PackageJson property ""homepage""",https://github.com/jslicense/spdx-correct.js/issues,"as detected from PackageJson property ""bugs.url""",,,,,,active,Active in npm registry,2023-03-07T01:53:18.477Z
|
|
163
163
|
library,spdx-expression-parse@3.0.1,MIT,,Kyle E. Mitchell,spdx-expression-parse,3.0.1,pkg:npm/spdx-expression-parse@3.0.1?vcs_url=git%2Bhttps%3A%2F%2Fgithub.com%2Fjslicense%2Fspdx-expression-parse.js.git,,parse SPDX license expressions,git+https://github.com/jslicense/spdx-expression-parse.js.git,"as detected from PackageJson property ""repository.url""",https://github.com/jslicense/spdx-expression-parse.js#readme,"as detected from PackageJson property ""homepage""",https://github.com/jslicense/spdx-expression-parse.js/issues,"as detected from PackageJson property ""bugs.url""",,,,,kyle@kemitchell.com,active,Active in npm registry,2023-11-21T19:39:43.702Z
|
|
@@ -173,7 +173,7 @@ library,path-exists@4.0.0,MIT,,Sindre Sorhus,path-exists,4.0.0,pkg:npm/path-exis
|
|
|
173
173
|
library,p-locate@4.1.0,MIT,,Sindre Sorhus,p-locate,4.1.0,pkg:npm/p-locate@4.1.0?vcs_url=git%2Bhttps%3A%2F%2Fgithub.com%2Fsindresorhus%2Fp-locate.git,,Get the first fulfilled promise that satisfies the provided testing function,git+https://github.com/sindresorhus/p-locate.git,"as detected from PackageJson property ""repository.url""",https://github.com/sindresorhus/p-locate#readme,"as detected from PackageJson property ""homepage""",https://github.com/sindresorhus/p-locate/issues,"as detected from PackageJson property ""bugs.url""",,,,,sindresorhus@gmail.com,active,Active in npm registry,2023-06-22T16:33:30.238Z
|
|
174
174
|
library,p-limit@2.3.0,MIT,,Sindre Sorhus,p-limit,2.3.0,pkg:npm/p-limit@2.3.0?vcs_url=git%2Bhttps%3A%2F%2Fgithub.com%2Fsindresorhus%2Fp-limit.git,,Run multiple promise-returning & async functions with limited concurrency,git+https://github.com/sindresorhus/p-limit.git,"as detected from PackageJson property ""repository.url""",https://github.com/sindresorhus/p-limit#readme,"as detected from PackageJson property ""homepage""",https://github.com/sindresorhus/p-limit/issues,"as detected from PackageJson property ""bugs.url""",,,,,sindresorhus@gmail.com,active,Active in npm registry,2025-08-28T10:41:53.903Z
|
|
175
175
|
library,p-try@2.2.0,MIT,,Sindre Sorhus,p-try,2.2.0,pkg:npm/p-try@2.2.0?vcs_url=git%2Bhttps%3A%2F%2Fgithub.com%2Fsindresorhus%2Fp-try.git,,`Start a promise chain,git+https://github.com/sindresorhus/p-try.git,"as detected from PackageJson property ""repository.url""",https://github.com/sindresorhus/p-try#readme,"as detected from PackageJson property ""homepage""",https://github.com/sindresorhus/p-try/issues,"as detected from PackageJson property ""bugs.url""",,,,,sindresorhus@gmail.com,active,Active in npm registry,2022-06-23T05:53:30.738Z
|
|
176
|
-
library,hosted-git-info@4.1.0,ISC,,Rebecca Turner,hosted-git-info,4.1.0,pkg:npm/hosted-git-info@4.1.0?vcs_url=git%2Bhttps%3A%2F%2Fgithub.com%2Fnpm%2Fhosted-git-info.git,,Provides metadata and conversions from repository urls for GitHub~ Bitbucket and GitLab,git+https://github.com/npm/hosted-git-info.git,"as detected from PackageJson property ""repository.url""",https://github.com/npm/hosted-git-info,"as detected from PackageJson property ""homepage""",https://github.com/npm/hosted-git-info/issues,"as detected from PackageJson property ""bugs.url""",,,,,me@re-becca.org,active,Active in npm registry,2025-
|
|
176
|
+
library,hosted-git-info@4.1.0,ISC,,Rebecca Turner,hosted-git-info,4.1.0,pkg:npm/hosted-git-info@4.1.0?vcs_url=git%2Bhttps%3A%2F%2Fgithub.com%2Fnpm%2Fhosted-git-info.git,,Provides metadata and conversions from repository urls for GitHub~ Bitbucket and GitLab,git+https://github.com/npm/hosted-git-info.git,"as detected from PackageJson property ""repository.url""",https://github.com/npm/hosted-git-info,"as detected from PackageJson property ""homepage""",https://github.com/npm/hosted-git-info/issues,"as detected from PackageJson property ""bugs.url""",,,,,me@re-becca.org,active,Active in npm registry,2025-10-07T21:29:45.153Z
|
|
177
177
|
library,lru-cache@6.0.0,ISC,,Isaac Z. Schlueter,lru-cache,6.0.0,pkg:npm/lru-cache@6.0.0?vcs_url=git%3A%2F%2Fgithub.com%2Fisaacs%2Fnode-lru-cache.git,,A cache object that deletes the least-recently-used items.,git://github.com/isaacs/node-lru-cache.git,"as detected from PackageJson property ""repository.url""",https://github.com/isaacs/node-lru-cache#readme,"as detected from PackageJson property ""homepage""",https://github.com/isaacs/node-lru-cache/issues,"as detected from PackageJson property ""bugs.url""",,,,,i@izs.me,active,Active in npm registry,2025-09-23T17:02:13.772Z
|
|
178
178
|
library,yallist@4.0.0,ISC,,Isaac Z. Schlueter,yallist,4.0.0,pkg:npm/yallist@4.0.0?vcs_url=git%2Bhttps%3A%2F%2Fgithub.com%2Fisaacs%2Fyallist.git,,Yet Another Linked List,git+https://github.com/isaacs/yallist.git,"as detected from PackageJson property ""repository.url""",https://github.com/isaacs/yallist#readme,"as detected from PackageJson property ""homepage""",https://github.com/isaacs/yallist/issues,"as detected from PackageJson property ""bugs.url""",,,,,i@izs.me,active,Active in npm registry,2024-04-09T19:21:45.008Z
|
|
179
179
|
library,arrify@1.0.1,MIT,,Sindre Sorhus,arrify,1.0.1,pkg:npm/arrify@1.0.1?vcs_url=git%2Bhttps%3A%2F%2Fgithub.com%2Fsindresorhus%2Farrify.git,,Convert a value to an array,git+https://github.com/sindresorhus/arrify.git,"as detected from PackageJson property ""repository.url""",https://github.com/sindresorhus/arrify#readme,"as detected from PackageJson property ""homepage""",https://github.com/sindresorhus/arrify/issues,"as detected from PackageJson property ""bugs.url""",,,,,sindresorhus@gmail.com,active,Active in npm registry,2023-06-09T21:37:58.190Z
|
|
@@ -280,16 +280,16 @@ library,which-module@2.0.1,ISC,,nexdrew,which-module,2.0.1,pkg:npm/which-module@
|
|
|
280
280
|
library,y18n@4.0.3,ISC,,Ben Coe,y18n,4.0.3,pkg:npm/y18n@4.0.3?vcs_url=git%2Bssh%3A%2F%2Fgit%40github.com%2Fyargs%2Fy18n.git,,the bare-bones internationalization library used by yargs,git+ssh://git@github.com/yargs/y18n.git,"as detected from PackageJson property ""repository.url""",https://github.com/yargs/y18n,"as detected from PackageJson property ""homepage""",https://github.com/yargs/y18n/issues,"as detected from PackageJson property ""bugs.url""",,,,,ben@npmjs.com,active,Active in npm registry,2023-07-10T23:16:26.635Z
|
|
281
281
|
library,wrap-ansi@6.2.0,MIT,,Sindre Sorhus,wrap-ansi,6.2.0,pkg:npm/wrap-ansi@6.2.0?vcs_url=git%2Bhttps%3A%2F%2Fgithub.com%2Fchalk%2Fwrap-ansi.git,,Wordwrap a string with ANSI escape codes,git+https://github.com/chalk/wrap-ansi.git,"as detected from PackageJson property ""repository.url""",https://github.com/chalk/wrap-ansi#readme,"as detected from PackageJson property ""homepage""",https://github.com/chalk/wrap-ansi/issues,"as detected from PackageJson property ""bugs.url""",,,,,sindresorhus@gmail.com,active,Active in npm registry,2025-09-08T17:19:29.139Z
|
|
282
282
|
library,@nrwl/tao@16.5.0,MIT,@nrwl,Victor Savkin,tao,16.5.0,pkg:npm/%40nrwl/tao@16.5.0?vcs_url=git%2Bhttps%3A%2F%2Fgithub.com%2Fnrwl%2Fnx.git#packages/tao,,CLI for generating code and running commands,git+https://github.com/nrwl/nx.git#packages/tao,"as detected from PackageJson property ""repository.url"" and ""repository.directory""",https://nx.dev,"as detected from PackageJson property ""homepage""",https://github.com/nrwl/nx/issues,"as detected from PackageJson property ""bugs.url""",,,,,,active,Active in npm registry,2025-08-27T15:04:26.129Z
|
|
283
|
-
library,@nx/nx-darwin-arm64@16.5.0,,@nx,,nx-darwin-arm64,16.5.0,pkg:npm/%40nx/nx-darwin-arm64@16.5.0?vcs_url=git%2Bhttps%3A%2F%2Fgithub.com%2Fnrwl%2Fnx.git#packages/nx/native-packages/darwin-arm64,,,git+https://github.com/nrwl/nx.git#packages/nx/native-packages/darwin-arm64,"as detected from PackageJson property ""repository.url"" and ""repository.directory""",https://github.com/nrwl/nx#readme,"as detected from PackageJson property ""homepage""",https://github.com/nrwl/nx/issues,"as detected from PackageJson property ""bugs.url""",,,,,,active,Active in npm registry,2025-10-
|
|
284
|
-
library,@nx/nx-darwin-x64@16.5.0,,@nx,,nx-darwin-x64,16.5.0,pkg:npm/%40nx/nx-darwin-x64@16.5.0?vcs_url=git%2Bhttps%3A%2F%2Fgithub.com%2Fnrwl%2Fnx.git#packages/nx/native-packages/darwin-x64,,,git+https://github.com/nrwl/nx.git#packages/nx/native-packages/darwin-x64,"as detected from PackageJson property ""repository.url"" and ""repository.directory""",https://github.com/nrwl/nx#readme,"as detected from PackageJson property ""homepage""",https://github.com/nrwl/nx/issues,"as detected from PackageJson property ""bugs.url""",,,,,,active,Active in npm registry,2025-10-
|
|
285
|
-
library,@nx/nx-freebsd-x64@16.5.0,,@nx,,nx-freebsd-x64,16.5.0,pkg:npm/%40nx/nx-freebsd-x64@16.5.0?vcs_url=git%2Bhttps%3A%2F%2Fgithub.com%2Fnrwl%2Fnx.git#packages/nx/native-packages/freebsd-x64,,,git+https://github.com/nrwl/nx.git#packages/nx/native-packages/freebsd-x64,"as detected from PackageJson property ""repository.url"" and ""repository.directory""",https://github.com/nrwl/nx#readme,"as detected from PackageJson property ""homepage""",https://github.com/nrwl/nx/issues,"as detected from PackageJson property ""bugs.url""",,,,,,active,Active in npm registry,2025-10-
|
|
286
|
-
library,@nx/nx-linux-arm-gnueabihf@16.5.0,,@nx,,nx-linux-arm-gnueabihf,16.5.0,pkg:npm/%40nx/nx-linux-arm-gnueabihf@16.5.0?vcs_url=git%2Bhttps%3A%2F%2Fgithub.com%2Fnrwl%2Fnx.git#packages/nx/native-packages/linux-arm-gnueabihf,,,git+https://github.com/nrwl/nx.git#packages/nx/native-packages/linux-arm-gnueabihf,"as detected from PackageJson property ""repository.url"" and ""repository.directory""",https://github.com/nrwl/nx#readme,"as detected from PackageJson property ""homepage""",https://github.com/nrwl/nx/issues,"as detected from PackageJson property ""bugs.url""",,,,,,active,Active in npm registry,2025-10-
|
|
287
|
-
library,@nx/nx-linux-arm64-gnu@16.5.0,,@nx,,nx-linux-arm64-gnu,16.5.0,pkg:npm/%40nx/nx-linux-arm64-gnu@16.5.0?vcs_url=git%2Bhttps%3A%2F%2Fgithub.com%2Fnrwl%2Fnx.git#packages/nx/native-packages/linux-arm64-gnu,,,git+https://github.com/nrwl/nx.git#packages/nx/native-packages/linux-arm64-gnu,"as detected from PackageJson property ""repository.url"" and ""repository.directory""",https://github.com/nrwl/nx#readme,"as detected from PackageJson property ""homepage""",https://github.com/nrwl/nx/issues,"as detected from PackageJson property ""bugs.url""",,,,,,active,Active in npm registry,2025-10-
|
|
288
|
-
library,@nx/nx-linux-arm64-musl@16.5.0,,@nx,,nx-linux-arm64-musl,16.5.0,pkg:npm/%40nx/nx-linux-arm64-musl@16.5.0?vcs_url=git%2Bhttps%3A%2F%2Fgithub.com%2Fnrwl%2Fnx.git#packages/nx/native-packages/linux-arm64-musl,,,git+https://github.com/nrwl/nx.git#packages/nx/native-packages/linux-arm64-musl,"as detected from PackageJson property ""repository.url"" and ""repository.directory""",https://github.com/nrwl/nx#readme,"as detected from PackageJson property ""homepage""",https://github.com/nrwl/nx/issues,"as detected from PackageJson property ""bugs.url""",,,,,,active,Active in npm registry,2025-10-
|
|
289
|
-
library,@nx/nx-linux-x64-gnu@16.5.0,,@nx,,nx-linux-x64-gnu,16.5.0,pkg:npm/%40nx/nx-linux-x64-gnu@16.5.0?vcs_url=git%2Bhttps%3A%2F%2Fgithub.com%2Fnrwl%2Fnx.git#packages/nx/native-packages/linux-x64-gnu,,,git+https://github.com/nrwl/nx.git#packages/nx/native-packages/linux-x64-gnu,"as detected from PackageJson property ""repository.url"" and ""repository.directory""",https://github.com/nrwl/nx#readme,"as detected from PackageJson property ""homepage""",https://github.com/nrwl/nx/issues,"as detected from PackageJson property ""bugs.url""",,,,,,active,Active in npm registry,2025-10-
|
|
290
|
-
library,@nx/nx-linux-x64-musl@16.5.0,,@nx,,nx-linux-x64-musl,16.5.0,pkg:npm/%40nx/nx-linux-x64-musl@16.5.0?vcs_url=git%2Bhttps%3A%2F%2Fgithub.com%2Fnrwl%2Fnx.git#packages/nx/native-packages/linux-x64-musl,,,git+https://github.com/nrwl/nx.git#packages/nx/native-packages/linux-x64-musl,"as detected from PackageJson property ""repository.url"" and ""repository.directory""",https://github.com/nrwl/nx#readme,"as detected from PackageJson property ""homepage""",https://github.com/nrwl/nx/issues,"as detected from PackageJson property ""bugs.url""",,,,,,active,Active in npm registry,2025-10-
|
|
291
|
-
library,@nx/nx-win32-arm64-msvc@16.5.0,,@nx,,nx-win32-arm64-msvc,16.5.0,pkg:npm/%40nx/nx-win32-arm64-msvc@16.5.0?vcs_url=git%2Bhttps%3A%2F%2Fgithub.com%2Fnrwl%2Fnx.git#packages/nx/native-packages/win32-arm64-msvc,,,git+https://github.com/nrwl/nx.git#packages/nx/native-packages/win32-arm64-msvc,"as detected from PackageJson property ""repository.url"" and ""repository.directory""",https://github.com/nrwl/nx#readme,"as detected from PackageJson property ""homepage""",https://github.com/nrwl/nx/issues,"as detected from PackageJson property ""bugs.url""",,,,,,active,Active in npm registry,2025-10-
|
|
292
|
-
library,@nx/nx-win32-x64-msvc@16.5.0,,@nx,,nx-win32-x64-msvc,16.5.0,pkg:npm/%40nx/nx-win32-x64-msvc@16.5.0?vcs_url=git%2Bhttps%3A%2F%2Fgithub.com%2Fnrwl%2Fnx.git#packages/nx/native-packages/win32-x64-msvc,,,git+https://github.com/nrwl/nx.git#packages/nx/native-packages/win32-x64-msvc,"as detected from PackageJson property ""repository.url"" and ""repository.directory""",https://github.com/nrwl/nx#readme,"as detected from PackageJson property ""homepage""",https://github.com/nrwl/nx/issues,"as detected from PackageJson property ""bugs.url""",,,,,,active,Active in npm registry,2025-10-
|
|
283
|
+
library,@nx/nx-darwin-arm64@16.5.0,,@nx,,nx-darwin-arm64,16.5.0,pkg:npm/%40nx/nx-darwin-arm64@16.5.0?vcs_url=git%2Bhttps%3A%2F%2Fgithub.com%2Fnrwl%2Fnx.git#packages/nx/native-packages/darwin-arm64,,,git+https://github.com/nrwl/nx.git#packages/nx/native-packages/darwin-arm64,"as detected from PackageJson property ""repository.url"" and ""repository.directory""",https://github.com/nrwl/nx#readme,"as detected from PackageJson property ""homepage""",https://github.com/nrwl/nx/issues,"as detected from PackageJson property ""bugs.url""",,,,,,active,Active in npm registry,2025-10-07T21:08:08.405Z
|
|
284
|
+
library,@nx/nx-darwin-x64@16.5.0,,@nx,,nx-darwin-x64,16.5.0,pkg:npm/%40nx/nx-darwin-x64@16.5.0?vcs_url=git%2Bhttps%3A%2F%2Fgithub.com%2Fnrwl%2Fnx.git#packages/nx/native-packages/darwin-x64,,,git+https://github.com/nrwl/nx.git#packages/nx/native-packages/darwin-x64,"as detected from PackageJson property ""repository.url"" and ""repository.directory""",https://github.com/nrwl/nx#readme,"as detected from PackageJson property ""homepage""",https://github.com/nrwl/nx/issues,"as detected from PackageJson property ""bugs.url""",,,,,,active,Active in npm registry,2025-10-07T21:08:09.084Z
|
|
285
|
+
library,@nx/nx-freebsd-x64@16.5.0,,@nx,,nx-freebsd-x64,16.5.0,pkg:npm/%40nx/nx-freebsd-x64@16.5.0?vcs_url=git%2Bhttps%3A%2F%2Fgithub.com%2Fnrwl%2Fnx.git#packages/nx/native-packages/freebsd-x64,,,git+https://github.com/nrwl/nx.git#packages/nx/native-packages/freebsd-x64,"as detected from PackageJson property ""repository.url"" and ""repository.directory""",https://github.com/nrwl/nx#readme,"as detected from PackageJson property ""homepage""",https://github.com/nrwl/nx/issues,"as detected from PackageJson property ""bugs.url""",,,,,,active,Active in npm registry,2025-10-07T21:08:16.267Z
|
|
286
|
+
library,@nx/nx-linux-arm-gnueabihf@16.5.0,,@nx,,nx-linux-arm-gnueabihf,16.5.0,pkg:npm/%40nx/nx-linux-arm-gnueabihf@16.5.0?vcs_url=git%2Bhttps%3A%2F%2Fgithub.com%2Fnrwl%2Fnx.git#packages/nx/native-packages/linux-arm-gnueabihf,,,git+https://github.com/nrwl/nx.git#packages/nx/native-packages/linux-arm-gnueabihf,"as detected from PackageJson property ""repository.url"" and ""repository.directory""",https://github.com/nrwl/nx#readme,"as detected from PackageJson property ""homepage""",https://github.com/nrwl/nx/issues,"as detected from PackageJson property ""bugs.url""",,,,,,active,Active in npm registry,2025-10-07T21:08:09.398Z
|
|
287
|
+
library,@nx/nx-linux-arm64-gnu@16.5.0,,@nx,,nx-linux-arm64-gnu,16.5.0,pkg:npm/%40nx/nx-linux-arm64-gnu@16.5.0?vcs_url=git%2Bhttps%3A%2F%2Fgithub.com%2Fnrwl%2Fnx.git#packages/nx/native-packages/linux-arm64-gnu,,,git+https://github.com/nrwl/nx.git#packages/nx/native-packages/linux-arm64-gnu,"as detected from PackageJson property ""repository.url"" and ""repository.directory""",https://github.com/nrwl/nx#readme,"as detected from PackageJson property ""homepage""",https://github.com/nrwl/nx/issues,"as detected from PackageJson property ""bugs.url""",,,,,,active,Active in npm registry,2025-10-07T21:08:08.973Z
|
|
288
|
+
library,@nx/nx-linux-arm64-musl@16.5.0,,@nx,,nx-linux-arm64-musl,16.5.0,pkg:npm/%40nx/nx-linux-arm64-musl@16.5.0?vcs_url=git%2Bhttps%3A%2F%2Fgithub.com%2Fnrwl%2Fnx.git#packages/nx/native-packages/linux-arm64-musl,,,git+https://github.com/nrwl/nx.git#packages/nx/native-packages/linux-arm64-musl,"as detected from PackageJson property ""repository.url"" and ""repository.directory""",https://github.com/nrwl/nx#readme,"as detected from PackageJson property ""homepage""",https://github.com/nrwl/nx/issues,"as detected from PackageJson property ""bugs.url""",,,,,,active,Active in npm registry,2025-10-07T21:08:09.357Z
|
|
289
|
+
library,@nx/nx-linux-x64-gnu@16.5.0,,@nx,,nx-linux-x64-gnu,16.5.0,pkg:npm/%40nx/nx-linux-x64-gnu@16.5.0?vcs_url=git%2Bhttps%3A%2F%2Fgithub.com%2Fnrwl%2Fnx.git#packages/nx/native-packages/linux-x64-gnu,,,git+https://github.com/nrwl/nx.git#packages/nx/native-packages/linux-x64-gnu,"as detected from PackageJson property ""repository.url"" and ""repository.directory""",https://github.com/nrwl/nx#readme,"as detected from PackageJson property ""homepage""",https://github.com/nrwl/nx/issues,"as detected from PackageJson property ""bugs.url""",,,,,,active,Active in npm registry,2025-10-07T21:08:15.583Z
|
|
290
|
+
library,@nx/nx-linux-x64-musl@16.5.0,,@nx,,nx-linux-x64-musl,16.5.0,pkg:npm/%40nx/nx-linux-x64-musl@16.5.0?vcs_url=git%2Bhttps%3A%2F%2Fgithub.com%2Fnrwl%2Fnx.git#packages/nx/native-packages/linux-x64-musl,,,git+https://github.com/nrwl/nx.git#packages/nx/native-packages/linux-x64-musl,"as detected from PackageJson property ""repository.url"" and ""repository.directory""",https://github.com/nrwl/nx#readme,"as detected from PackageJson property ""homepage""",https://github.com/nrwl/nx/issues,"as detected from PackageJson property ""bugs.url""",,,,,,active,Active in npm registry,2025-10-07T21:08:08.911Z
|
|
291
|
+
library,@nx/nx-win32-arm64-msvc@16.5.0,,@nx,,nx-win32-arm64-msvc,16.5.0,pkg:npm/%40nx/nx-win32-arm64-msvc@16.5.0?vcs_url=git%2Bhttps%3A%2F%2Fgithub.com%2Fnrwl%2Fnx.git#packages/nx/native-packages/win32-arm64-msvc,,,git+https://github.com/nrwl/nx.git#packages/nx/native-packages/win32-arm64-msvc,"as detected from PackageJson property ""repository.url"" and ""repository.directory""",https://github.com/nrwl/nx#readme,"as detected from PackageJson property ""homepage""",https://github.com/nrwl/nx/issues,"as detected from PackageJson property ""bugs.url""",,,,,,active,Active in npm registry,2025-10-07T21:08:08.948Z
|
|
292
|
+
library,@nx/nx-win32-x64-msvc@16.5.0,,@nx,,nx-win32-x64-msvc,16.5.0,pkg:npm/%40nx/nx-win32-x64-msvc@16.5.0?vcs_url=git%2Bhttps%3A%2F%2Fgithub.com%2Fnrwl%2Fnx.git#packages/nx/native-packages/win32-x64-msvc,,,git+https://github.com/nrwl/nx.git#packages/nx/native-packages/win32-x64-msvc,"as detected from PackageJson property ""repository.url"" and ""repository.directory""",https://github.com/nrwl/nx#readme,"as detected from PackageJson property ""homepage""",https://github.com/nrwl/nx/issues,"as detected from PackageJson property ""bugs.url""",,,,,,active,Active in npm registry,2025-10-07T21:08:09.221Z
|
|
293
293
|
library,@parcel/watcher@2.0.4,MIT,@parcel,,watcher,2.0.4,pkg:npm/%40parcel/watcher@2.0.4?vcs_url=git%2Bhttps%3A%2F%2Fgithub.com%2Fparcel-bundler%2Fwatcher.git,,A native C++ Node module for querying and subscribing to filesystem events. Used by Parcel 2.,git+https://github.com/parcel-bundler/watcher.git,"as detected from PackageJson property ""repository.url""",https://github.com/parcel-bundler/watcher#readme,"as detected from PackageJson property ""homepage""",https://github.com/parcel-bundler/watcher/issues,"as detected from PackageJson property ""bugs.url""",,,,,,active,Active in npm registry,2025-01-26T03:11:57.712Z
|
|
294
294
|
library,@yarnpkg/parsers@3.0.0-rc.46,BSD-2-Clause,@yarnpkg,,parsers,3.0.0-rc.46,pkg:npm/%40yarnpkg/parsers@3.0.0-rc.46?vcs_url=git%2Bssh%3A%2F%2Fgit%40github.com%2Fyarnpkg%2Fberry.git#packages/yarnpkg-parsers,,,git+ssh://git@github.com/yarnpkg/berry.git#packages/yarnpkg-parsers,"as detected from PackageJson property ""repository.url"" and ""repository.directory""",https://github.com/yarnpkg/berry#readme,"as detected from PackageJson property ""homepage""",https://github.com/yarnpkg/berry/issues,"as detected from PackageJson property ""bugs.url""",,,,,,active,Active in npm registry,2025-03-01T15:26:51.526Z
|
|
295
295
|
library,@zkochan/js-yaml@0.0.6,MIT,@zkochan,Vladimir Zapparov,js-yaml,0.0.6,pkg:npm/%40zkochan/js-yaml@0.0.6?vcs_url=git%2Bhttps%3A%2F%2Fgithub.com%2Fnodeca%2Fjs-yaml.git,,YAML 1.2 parser and serializer,git+https://github.com/nodeca/js-yaml.git,"as detected from PackageJson property ""repository.url""",https://github.com/nodeca/js-yaml#readme,"as detected from PackageJson property ""homepage""",https://github.com/nodeca/js-yaml/issues,"as detected from PackageJson property ""bugs.url""",,,,,dervus.grim@gmail.com,active,Active in npm registry,2025-08-19T20:05:02.502Z
|
|
@@ -307,7 +307,7 @@ library,jsonc-parser@3.2.0,MIT,,Microsoft Corporation,jsonc-parser,3.2.0,pkg:npm
|
|
|
307
307
|
library,lines-and-columns@2.0.4,MIT,,Brian Donovan,lines-and-columns,2.0.4,pkg:npm/lines-and-columns@2.0.4?vcs_url=git%2Bhttps%3A%2F%2Fgithub.com%2Feventualbuddha%2Flines-and-columns.git,,Maps lines and columns to character offsets and back.,git+https://github.com/eventualbuddha/lines-and-columns.git,"as detected from PackageJson property ""repository.url""",https://github.com/eventualbuddha/lines-and-columns#readme,"as detected from PackageJson property ""homepage""",https://github.com/eventualbuddha/lines-and-columns/issues,"as detected from PackageJson property ""bugs.url""",,,,,brian@donovans.cc,active,Active in npm registry,2023-11-07T01:41:53.488Z
|
|
308
308
|
library,npm-run-path@4.0.1,MIT,,Sindre Sorhus,npm-run-path,4.0.1,pkg:npm/npm-run-path@4.0.1?vcs_url=git%2Bhttps%3A%2F%2Fgithub.com%2Fsindresorhus%2Fnpm-run-path.git,,Get your PATH prepended with locally installed binaries,git+https://github.com/sindresorhus/npm-run-path.git,"as detected from PackageJson property ""repository.url""",https://github.com/sindresorhus/npm-run-path#readme,"as detected from PackageJson property ""homepage""",https://github.com/sindresorhus/npm-run-path/issues,"as detected from PackageJson property ""bugs.url""",,,,,sindresorhus@gmail.com,active,Active in npm registry,2024-08-26T08:40:09.963Z
|
|
309
309
|
library,open@8.4.2,MIT,,Sindre Sorhus,open,8.4.2,pkg:npm/open@8.4.2?vcs_url=git%2Bhttps%3A%2F%2Fgithub.com%2Fsindresorhus%2Fopen.git,,Open stuff like URLs~ files~ executables. Cross-platform.,git+https://github.com/sindresorhus/open.git,"as detected from PackageJson property ""repository.url""",https://github.com/sindresorhus/open#readme,"as detected from PackageJson property ""homepage""",https://github.com/sindresorhus/open/issues,"as detected from PackageJson property ""bugs.url""",,,,,sindresorhus@gmail.com,active,Active in npm registry,2025-07-14T13:46:43.085Z
|
|
310
|
-
library,semver@7.5.3,ISC,,GitHub Inc.,semver,7.5.3,pkg:npm/semver@7.5.3?vcs_url=git%2Bhttps%3A%2F%2Fgithub.com%2Fnpm%2Fnode-semver.git,,The semantic version parser used by npm.,git+https://github.com/npm/node-semver.git,"as detected from PackageJson property ""repository.url""",https://github.com/npm/node-semver#readme,"as detected from PackageJson property ""homepage""",https://github.com/npm/node-semver/issues,"as detected from PackageJson property ""bugs.url""",,,,,,active,Active in npm registry,2025-
|
|
310
|
+
library,semver@7.5.3,ISC,,GitHub Inc.,semver,7.5.3,pkg:npm/semver@7.5.3?vcs_url=git%2Bhttps%3A%2F%2Fgithub.com%2Fnpm%2Fnode-semver.git,,The semantic version parser used by npm.,git+https://github.com/npm/node-semver.git,"as detected from PackageJson property ""repository.url""",https://github.com/npm/node-semver#readme,"as detected from PackageJson property ""homepage""",https://github.com/npm/node-semver/issues,"as detected from PackageJson property ""bugs.url""",,,,,,active,Active in npm registry,2025-10-07T18:00:52.105Z
|
|
311
311
|
library,strong-log-transformer@2.1.0,Apache-2.0,,Ryan Graham,strong-log-transformer,2.1.0,pkg:npm/strong-log-transformer@2.1.0?vcs_url=git%3A%2F%2Fgithub.com%2Fstrongloop%2Fstrong-log-transformer.git,,Stream transformer that prefixes lines with timestamps and other things.,git://github.com/strongloop/strong-log-transformer.git,"as detected from PackageJson property ""repository.url""",https://github.com/strongloop/strong-log-transformer,"as detected from PackageJson property ""homepage""",https://github.com/strongloop/strong-log-transformer/issues,"as detected from PackageJson property ""bugs.url""",,,,,ryan@strongloop.com,active,Active in npm registry,2023-08-16T14:07:02.920Z
|
|
312
312
|
library,tar-stream@2.2.0,MIT,,Mathias Buus,tar-stream,2.2.0,pkg:npm/tar-stream@2.2.0?vcs_url=git%2Bhttps%3A%2F%2Fgithub.com%2Fmafintosh%2Ftar-stream.git,,tar-stream is a streaming tar parser and generator and nothing else. It is streams2 and operates purely using streams which means you can easily extract/parse tarballs without ever hitting the file system.,git+https://github.com/mafintosh/tar-stream.git,"as detected from PackageJson property ""repository.url""",https://github.com/mafintosh/tar-stream,"as detected from PackageJson property ""homepage""",https://github.com/mafintosh/tar-stream/issues,"as detected from PackageJson property ""bugs.url""",,,,,mathiasbuus@gmail.com,active,Active in npm registry,2024-01-19T20:14:20.295Z
|
|
313
313
|
library,tmp@0.2.5,MIT,,KARASZI István,tmp,0.2.5,pkg:npm/tmp@0.2.5?vcs_url=git%2Bhttps%3A%2F%2Fgithub.com%2Fraszi%2Fnode-tmp.git,,Temporary file and directory creator,git+https://github.com/raszi/node-tmp.git,"as detected from PackageJson property ""repository.url""",http://github.com/raszi/node-tmp,"as detected from PackageJson property ""homepage""",http://github.com/raszi/node-tmp/issues,"as detected from PackageJson property ""bugs.url""",,,,,github@spam.raszi.hu,active,Active in npm registry,2025-08-08T21:22:09.101Z
|
|
@@ -451,7 +451,7 @@ library,fast-memoize@2.5.2,MIT,,Caio Gondim,fast-memoize,2.5.2,pkg:npm/fast-memo
|
|
|
451
451
|
library,fp-and-or@0.1.4,ISC,,Raine Revere,fp-and-or,0.1.4,pkg:npm/fp-and-or@0.1.4?vcs_url=git%2Bhttps%3A%2F%2Fgithub.com%2Fraineorshine%2Ffp-and-or.git,,Simple `and` and `or` functional programming predicates,git+https://github.com/raineorshine/fp-and-or.git,"as detected from PackageJson property ""repository.url""",https://github.com/raineorshine/fp-and-or#readme,"as detected from PackageJson property ""homepage""",https://github.com/raineorshine/fp-and-or/issues,"as detected from PackageJson property ""bugs.url""",,,,,raineorshine@gmail.com,active,Active in npm registry,2023-11-05T03:22:29.701Z
|
|
452
452
|
library,get-stdin@8.0.0,MIT,,Sindre Sorhus,get-stdin,8.0.0,pkg:npm/get-stdin@8.0.0?vcs_url=git%2Bhttps%3A%2F%2Fgithub.com%2Fsindresorhus%2Fget-stdin.git,,Get stdin as a string or buffer,git+https://github.com/sindresorhus/get-stdin.git,"as detected from PackageJson property ""repository.url""",https://github.com/sindresorhus/get-stdin#readme,"as detected from PackageJson property ""homepage""",https://github.com/sindresorhus/get-stdin/issues,"as detected from PackageJson property ""bugs.url""",,,,,sindresorhus@gmail.com,active,Active in npm registry,2023-06-09T21:55:08.329Z
|
|
453
453
|
library,globby@11.1.0,MIT,,Sindre Sorhus,globby,11.1.0,pkg:npm/globby@11.1.0?vcs_url=git%2Bhttps%3A%2F%2Fgithub.com%2Fsindresorhus%2Fglobby.git,,User-friendly glob matching,git+https://github.com/sindresorhus/globby.git,"as detected from PackageJson property ""repository.url""",https://github.com/sindresorhus/globby#readme,"as detected from PackageJson property ""homepage""",https://github.com/sindresorhus/globby/issues,"as detected from PackageJson property ""bugs.url""",,,,,sindresorhus@gmail.com,active,Active in npm registry,2025-09-29T03:22:09.937Z
|
|
454
|
-
library,hosted-git-info@5.2.1,ISC,,GitHub Inc.,hosted-git-info,5.2.1,pkg:npm/hosted-git-info@5.2.1?vcs_url=git%2Bhttps%3A%2F%2Fgithub.com%2Fnpm%2Fhosted-git-info.git,,Provides metadata and conversions from repository urls for GitHub~ Bitbucket and GitLab,git+https://github.com/npm/hosted-git-info.git,"as detected from PackageJson property ""repository.url""",https://github.com/npm/hosted-git-info,"as detected from PackageJson property ""homepage""",https://github.com/npm/hosted-git-info/issues,"as detected from PackageJson property ""bugs.url""",,,,,,active,Active in npm registry,2025-
|
|
454
|
+
library,hosted-git-info@5.2.1,ISC,,GitHub Inc.,hosted-git-info,5.2.1,pkg:npm/hosted-git-info@5.2.1?vcs_url=git%2Bhttps%3A%2F%2Fgithub.com%2Fnpm%2Fhosted-git-info.git,,Provides metadata and conversions from repository urls for GitHub~ Bitbucket and GitLab,git+https://github.com/npm/hosted-git-info.git,"as detected from PackageJson property ""repository.url""",https://github.com/npm/hosted-git-info,"as detected from PackageJson property ""homepage""",https://github.com/npm/hosted-git-info/issues,"as detected from PackageJson property ""bugs.url""",,,,,,active,Active in npm registry,2025-10-07T21:29:45.153Z
|
|
455
455
|
library,ini@3.0.1,ISC,,GitHub Inc.,ini,3.0.1,pkg:npm/ini@3.0.1?vcs_url=git%2Bhttps%3A%2F%2Fgithub.com%2Fnpm%2Fini.git,,An ini encoder/decoder for node,git+https://github.com/npm/ini.git,"as detected from PackageJson property ""repository.url""",https://github.com/npm/ini#readme,"as detected from PackageJson property ""homepage""",https://github.com/npm/ini/issues,"as detected from PackageJson property ""bugs.url""",,,,,,active,Active in npm registry,2025-05-14T20:03:39.468Z
|
|
456
456
|
library,json-parse-helpfulerror@1.0.3,MIT,,Sam Mikes,json-parse-helpfulerror,1.0.3,pkg:npm/json-parse-helpfulerror@1.0.3?vcs_url=git%2Bhttps%3A%2F%2Fgithub.com%2Fsmikes%2Fjson-parse-helpfulerror.git,,A drop-in replacement for JSON.parse that uses `jju` to give helpful errors,git+https://github.com/smikes/json-parse-helpfulerror.git,"as detected from PackageJson property ""repository.url""",https://github.com/smikes/json-parse-helpfulerror,"as detected from PackageJson property ""homepage""",https://github.com/smikes/json-parse-helpfulerror/issues,"as detected from PackageJson property ""bugs.url""",,,,,smikes@cubane.com,active,Active in npm registry,2022-06-19T06:20:26.001Z
|
|
457
457
|
library,jsonlines@0.1.1,MIT,,Linus Unnebäck,jsonlines,0.1.1,pkg:npm/jsonlines@0.1.1?vcs_url=git%2Bssh%3A%2F%2Fgit%40github.com%2FLinusU%2Fnode-jsonlines.git,,,git+ssh://git@github.com/LinusU/node-jsonlines.git,"as detected from PackageJson property ""repository.url""",https://github.com/LinusU/node-jsonlines#readme,"as detected from PackageJson property ""homepage""",https://github.com/LinusU/node-jsonlines/issues,"as detected from PackageJson property ""bugs.url""",,,,,linus@folkdatorn.se,active,Active in npm registry,2022-06-19T06:39:34.637Z
|
|
@@ -500,7 +500,7 @@ library,graceful-fs@4.2.10,ISC,,,graceful-fs,4.2.10,pkg:npm/graceful-fs@4.2.10?v
|
|
|
500
500
|
library,@sindresorhus/is@5.6.0,MIT,@sindresorhus,Sindre Sorhus,is,5.6.0,pkg:npm/%40sindresorhus/is@5.6.0?vcs_url=git%2Bhttps%3A%2F%2Fgithub.com%2Fsindresorhus%2Fis.git,,Type check values,git+https://github.com/sindresorhus/is.git,"as detected from PackageJson property ""repository.url""",https://github.com/sindresorhus/is#readme,"as detected from PackageJson property ""homepage""",https://github.com/sindresorhus/is/issues,"as detected from PackageJson property ""bugs.url""",,,,,sindresorhus@gmail.com,active,Active in npm registry,2025-09-13T19:21:49.582Z
|
|
501
501
|
library,@szmarczak/http-timer@5.0.1,MIT,@szmarczak,Szymon Marczak,http-timer,5.0.1,pkg:npm/%40szmarczak/http-timer@5.0.1?vcs_url=git%2Bhttps%3A%2F%2Fgithub.com%2Fszmarczak%2Fhttp-timer.git,,Timings for HTTP requests,git+https://github.com/szmarczak/http-timer.git,"as detected from PackageJson property ""repository.url""",https://github.com/szmarczak/http-timer#readme,"as detected from PackageJson property ""homepage""",https://github.com/szmarczak/http-timer/issues,"as detected from PackageJson property ""bugs.url""",,,,,,active,Active in npm registry,2022-04-07T03:49:45.986Z
|
|
502
502
|
library,cacheable-lookup@7.0.0,MIT,,Szymon Marczak,cacheable-lookup,7.0.0,pkg:npm/cacheable-lookup@7.0.0?vcs_url=git%2Bhttps%3A%2F%2Fgithub.com%2Fszmarczak%2Fcacheable-lookup.git,,A cacheable dns.lookup(…) that respects TTL,git+https://github.com/szmarczak/cacheable-lookup.git,"as detected from PackageJson property ""repository.url""",https://github.com/szmarczak/cacheable-lookup#readme,"as detected from PackageJson property ""homepage""",https://github.com/szmarczak/cacheable-lookup/issues,"as detected from PackageJson property ""bugs.url""",,,,,,active,Active in npm registry,2022-09-27T07:11:14.853Z
|
|
503
|
-
library,cacheable-request@10.2.14,MIT,,Jared Wray,cacheable-request,10.2.14,pkg:npm/cacheable-request@10.2.14?vcs_url=git%2Bhttps%3A%2F%2Fgithub.com%2Fjaredwray%2Fcacheable.git,,Wrap native HTTP requests with RFC compliant cache support,git+https://github.com/jaredwray/cacheable.git,"as detected from PackageJson property ""repository.url""",https://github.com/jaredwray/cacheable#readme,"as detected from PackageJson property ""homepage""",https://github.com/jaredwray/cacheable/issues,"as detected from PackageJson property ""bugs.url""",,,,,me@jaredwray.com,active,Active in npm registry,2025-10-
|
|
503
|
+
library,cacheable-request@10.2.14,MIT,,Jared Wray,cacheable-request,10.2.14,pkg:npm/cacheable-request@10.2.14?vcs_url=git%2Bhttps%3A%2F%2Fgithub.com%2Fjaredwray%2Fcacheable.git,,Wrap native HTTP requests with RFC compliant cache support,git+https://github.com/jaredwray/cacheable.git,"as detected from PackageJson property ""repository.url""",https://github.com/jaredwray/cacheable#readme,"as detected from PackageJson property ""homepage""",https://github.com/jaredwray/cacheable/issues,"as detected from PackageJson property ""bugs.url""",,,,,me@jaredwray.com,active,Active in npm registry,2025-10-06T16:52:37.519Z
|
|
504
504
|
library,decompress-response@6.0.0,MIT,,Sindre Sorhus,decompress-response,6.0.0,pkg:npm/decompress-response@6.0.0?vcs_url=git%2Bhttps%3A%2F%2Fgithub.com%2Fsindresorhus%2Fdecompress-response.git,,Decompress a HTTP response if needed,git+https://github.com/sindresorhus/decompress-response.git,"as detected from PackageJson property ""repository.url""",https://github.com/sindresorhus/decompress-response#readme,"as detected from PackageJson property ""homepage""",https://github.com/sindresorhus/decompress-response/issues,"as detected from PackageJson property ""bugs.url""",,,,,sindresorhus@gmail.com,active,Active in npm registry,2024-05-28T21:43:09.415Z
|
|
505
505
|
library,form-data-encoder@2.1.4,MIT,,Nick K.,form-data-encoder,2.1.4,pkg:npm/form-data-encoder@2.1.4?vcs_url=git%2Bhttps%3A%2F%2Fgithub.com%2Foctet-stream%2Fform-data-encoder.git,,Encode FormData content into the multipart/form-data format,git+https://github.com/octet-stream/form-data-encoder.git,"as detected from PackageJson property ""repository.url""",https://github.com/octet-stream/form-data-encoder#readme,"as detected from PackageJson property ""homepage""",https://github.com/octet-stream/form-data-encoder/issues,"as detected from PackageJson property ""bugs.url""",,,,,,active,Active in npm registry,2025-06-04T22:18:24.506Z
|
|
506
506
|
library,get-stream@6.0.1,MIT,,Sindre Sorhus,get-stream,6.0.1,pkg:npm/get-stream@6.0.1?vcs_url=git%2Bhttps%3A%2F%2Fgithub.com%2Fsindresorhus%2Fget-stream.git,,Get a stream as a string~ buffer~ or array,git+https://github.com/sindresorhus/get-stream.git,"as detected from PackageJson property ""repository.url""",https://github.com/sindresorhus/get-stream#readme,"as detected from PackageJson property ""homepage""",https://github.com/sindresorhus/get-stream/issues,"as detected from PackageJson property ""bugs.url""",,,,,sindresorhus@gmail.com,active,Active in npm registry,2024-03-16T18:05:50.719Z
|
|
@@ -544,7 +544,7 @@ library,@npmcli/installed-package-contents@2.1.0,ISC,@npmcli,GitHub Inc.,install
|
|
|
544
544
|
library,@npmcli/promise-spawn@6.0.2,ISC,@npmcli,GitHub Inc.,promise-spawn,6.0.2,pkg:npm/%40npmcli/promise-spawn@6.0.2?vcs_url=git%2Bhttps%3A%2F%2Fgithub.com%2Fnpm%2Fpromise-spawn.git,,spawn processes the way the npm cli likes to do,git+https://github.com/npm/promise-spawn.git,"as detected from PackageJson property ""repository.url""",https://github.com/npm/promise-spawn#readme,"as detected from PackageJson property ""homepage""",https://github.com/npm/promise-spawn/issues,"as detected from PackageJson property ""bugs.url""",,,,,,active,Active in npm registry,2025-08-28T20:36:07.281Z
|
|
545
545
|
library,@npmcli/run-script@6.0.2,ISC,@npmcli,GitHub Inc.,run-script,6.0.2,pkg:npm/%40npmcli/run-script@6.0.2?vcs_url=git%2Bhttps%3A%2F%2Fgithub.com%2Fnpm%2Frun-script.git,,Run a lifecycle script for a package (descendant of npm-lifecycle),git+https://github.com/npm/run-script.git,"as detected from PackageJson property ""repository.url""",https://github.com/npm/run-script#readme,"as detected from PackageJson property ""homepage""",https://github.com/npm/run-script/issues,"as detected from PackageJson property ""bugs.url""",,,,,,active,Active in npm registry,2025-09-02T18:10:04.944Z
|
|
546
546
|
library,cacache@17.1.4,ISC,,GitHub Inc.,cacache,17.1.4,pkg:npm/cacache@17.1.4?vcs_url=git%2Bhttps%3A%2F%2Fgithub.com%2Fnpm%2Fcacache.git,,Fast~ fault-tolerant~ cross-platform~ disk-based~ data-agnostic~ content-addressable cache.,git+https://github.com/npm/cacache.git,"as detected from PackageJson property ""repository.url""",https://github.com/npm/cacache#readme,"as detected from PackageJson property ""homepage""",https://github.com/npm/cacache/issues,"as detected from PackageJson property ""bugs.url""",,,,,,active,Active in npm registry,2025-08-18T17:45:30.644Z
|
|
547
|
-
library,npm-package-arg@10.1.0,ISC,,GitHub Inc.,npm-package-arg,10.1.0,pkg:npm/npm-package-arg@10.1.0?vcs_url=git%2Bhttps%3A%2F%2Fgithub.com%2Fnpm%2Fnpm-package-arg.git,,Parse the things that can be arguments to `npm install`,git+https://github.com/npm/npm-package-arg.git,"as detected from PackageJson property ""repository.url""",https://github.com/npm/npm-package-arg,"as detected from PackageJson property ""homepage""",https://github.com/npm/npm-package-arg/issues,"as detected from PackageJson property ""bugs.url""",,,,,,active,Active in npm registry,2025-
|
|
547
|
+
library,npm-package-arg@10.1.0,ISC,,GitHub Inc.,npm-package-arg,10.1.0,pkg:npm/npm-package-arg@10.1.0?vcs_url=git%2Bhttps%3A%2F%2Fgithub.com%2Fnpm%2Fnpm-package-arg.git,,Parse the things that can be arguments to `npm install`,git+https://github.com/npm/npm-package-arg.git,"as detected from PackageJson property ""repository.url""",https://github.com/npm/npm-package-arg,"as detected from PackageJson property ""homepage""",https://github.com/npm/npm-package-arg/issues,"as detected from PackageJson property ""bugs.url""",,,,,,active,Active in npm registry,2025-10-06T16:31:12.357Z
|
|
548
548
|
library,npm-packlist@7.0.4,ISC,,GitHub Inc.,npm-packlist,7.0.4,pkg:npm/npm-packlist@7.0.4?vcs_url=git%2Bhttps%3A%2F%2Fgithub.com%2Fnpm%2Fnpm-packlist.git,,Get a list of the files to add from a folder into an npm package,git+https://github.com/npm/npm-packlist.git,"as detected from PackageJson property ""repository.url""",https://github.com/npm/npm-packlist#readme,"as detected from PackageJson property ""homepage""",https://github.com/npm/npm-packlist/issues,"as detected from PackageJson property ""bugs.url""",,,,,,active,Active in npm registry,2025-09-22T15:39:32.588Z
|
|
549
549
|
library,npm-pick-manifest@8.0.2,ISC,,GitHub Inc.,npm-pick-manifest,8.0.2,pkg:npm/npm-pick-manifest@8.0.2?vcs_url=git%2Bhttps%3A%2F%2Fgithub.com%2Fnpm%2Fnpm-pick-manifest.git,,Resolves a matching manifest from a package metadata document according to standard npm semver resolution rules.,git+https://github.com/npm/npm-pick-manifest.git,"as detected from PackageJson property ""repository.url""",https://github.com/npm/npm-pick-manifest#readme,"as detected from PackageJson property ""homepage""",https://github.com/npm/npm-pick-manifest/issues,"as detected from PackageJson property ""bugs.url""",,,,,,active,Active in npm registry,2025-09-17T18:41:41.796Z
|
|
550
550
|
library,npm-registry-fetch@14.0.5,ISC,,GitHub Inc.,npm-registry-fetch,14.0.5,pkg:npm/npm-registry-fetch@14.0.5?vcs_url=git%2Bhttps%3A%2F%2Fgithub.com%2Fnpm%2Fnpm-registry-fetch.git,,Fetch-based http client for use with npm registry APIs,git+https://github.com/npm/npm-registry-fetch.git,"as detected from PackageJson property ""repository.url""",https://github.com/npm/npm-registry-fetch#readme,"as detected from PackageJson property ""homepage""",https://github.com/npm/npm-registry-fetch/issues,"as detected from PackageJson property ""bugs.url""",,,,,,active,Active in npm registry,2025-07-24T19:28:23.599Z
|
|
@@ -575,7 +575,7 @@ library,@tufjs/canonical-json@1.0.0,MIT,@tufjs,bdehamer@github.com,canonical-jso
|
|
|
575
575
|
library,json-parse-even-better-errors@3.0.2,MIT,,GitHub Inc.,json-parse-even-better-errors,3.0.2,pkg:npm/json-parse-even-better-errors@3.0.2?vcs_url=git%2Bhttps%3A%2F%2Fgithub.com%2Fnpm%2Fjson-parse-even-better-errors.git,,JSON.parse with context information on error,git+https://github.com/npm/json-parse-even-better-errors.git,"as detected from PackageJson property ""repository.url""",https://github.com/npm/json-parse-even-better-errors#readme,"as detected from PackageJson property ""homepage""",https://github.com/npm/json-parse-even-better-errors/issues,"as detected from PackageJson property ""bugs.url""",,,,,,active,Active in npm registry,2025-05-14T20:03:41.796Z
|
|
576
576
|
library,normalize-package-data@5.0.0,BSD-2-Clause,,GitHub Inc.,normalize-package-data,5.0.0,pkg:npm/normalize-package-data@5.0.0?vcs_url=git%2Bhttps%3A%2F%2Fgithub.com%2Fnpm%2Fnormalize-package-data.git,,Normalizes data that can be found in package.json files.,git+https://github.com/npm/normalize-package-data.git,"as detected from PackageJson property ""repository.url""",https://github.com/npm/normalize-package-data#readme,"as detected from PackageJson property ""homepage""",https://github.com/npm/normalize-package-data/issues,"as detected from PackageJson property ""bugs.url""",,,,,,active,Active in npm registry,2025-07-24T16:40:01.790Z
|
|
577
577
|
library,npm-normalize-package-bin@3.0.1,ISC,,GitHub Inc.,npm-normalize-package-bin,3.0.1,pkg:npm/npm-normalize-package-bin@3.0.1?vcs_url=git%2Bhttps%3A%2F%2Fgithub.com%2Fnpm%2Fnpm-normalize-package-bin.git,,Turn any flavor of allowable package.json bin into a normalized object,git+https://github.com/npm/npm-normalize-package-bin.git,"as detected from PackageJson property ""repository.url""",https://github.com/npm/npm-normalize-package-bin#readme,"as detected from PackageJson property ""homepage""",https://github.com/npm/npm-normalize-package-bin/issues,"as detected from PackageJson property ""bugs.url""",,,,,,active,Active in npm registry,2025-05-14T20:04:08.005Z
|
|
578
|
-
library,hosted-git-info@6.1.3,ISC,,GitHub Inc.,hosted-git-info,6.1.3,pkg:npm/hosted-git-info@6.1.3?vcs_url=git%2Bhttps%3A%2F%2Fgithub.com%2Fnpm%2Fhosted-git-info.git,,Provides metadata and conversions from repository urls for GitHub~ Bitbucket and GitLab,git+https://github.com/npm/hosted-git-info.git,"as detected from PackageJson property ""repository.url""",https://github.com/npm/hosted-git-info,"as detected from PackageJson property ""homepage""",https://github.com/npm/hosted-git-info/issues,"as detected from PackageJson property ""bugs.url""",,,,,,active,Active in npm registry,2025-
|
|
578
|
+
library,hosted-git-info@6.1.3,ISC,,GitHub Inc.,hosted-git-info,6.1.3,pkg:npm/hosted-git-info@6.1.3?vcs_url=git%2Bhttps%3A%2F%2Fgithub.com%2Fnpm%2Fhosted-git-info.git,,Provides metadata and conversions from repository urls for GitHub~ Bitbucket and GitLab,git+https://github.com/npm/hosted-git-info.git,"as detected from PackageJson property ""repository.url""",https://github.com/npm/hosted-git-info,"as detected from PackageJson property ""homepage""",https://github.com/npm/hosted-git-info/issues,"as detected from PackageJson property ""bugs.url""",,,,,,active,Active in npm registry,2025-10-07T21:29:45.153Z
|
|
579
579
|
library,minipass-json-stream@1.0.2,MIT,,Isaac Z. Schlueter,minipass-json-stream,1.0.2,pkg:npm/minipass-json-stream@1.0.2?vcs_url=git%2Bhttps%3A%2F%2Fgithub.com%2Fisaacs%2Fminipass-json-stream.git,,Like JSONStream~ but using Minipass streams,git+https://github.com/isaacs/minipass-json-stream.git,"as detected from PackageJson property ""repository.url""",https://github.com/isaacs/minipass-json-stream#readme,"as detected from PackageJson property ""homepage""",https://github.com/isaacs/minipass-json-stream/issues,"as detected from PackageJson property ""bugs.url""",,,,,i@izs.me,active,Active in npm registry,2024-07-28T22:12:38.430Z
|
|
580
580
|
library,npm-install-checks@6.3.0,BSD-2-Clause,,GitHub Inc.,npm-install-checks,6.3.0,pkg:npm/npm-install-checks@6.3.0?vcs_url=git%2Bhttps%3A%2F%2Fgithub.com%2Fnpm%2Fnpm-install-checks.git,,Check the engines and platform fields in package.json,git+https://github.com/npm/npm-install-checks.git,"as detected from PackageJson property ""repository.url""",https://github.com/npm/npm-install-checks#readme,"as detected from PackageJson property ""homepage""",https://github.com/npm/npm-install-checks/issues,"as detected from PackageJson property ""bugs.url""",,,,,,active,Active in npm registry,2025-08-25T20:10:30.658Z
|
|
581
581
|
library,ignore-walk@6.0.5,ISC,,GitHub Inc.,ignore-walk,6.0.5,pkg:npm/ignore-walk@6.0.5?vcs_url=git%2Bhttps%3A%2F%2Fgithub.com%2Fnpm%2Fignore-walk.git,,Nested/recursive `.gitignore`/`.npmignore` parsing and filtering.,git+https://github.com/npm/ignore-walk.git,"as detected from PackageJson property ""repository.url""",https://github.com/npm/ignore-walk#readme,"as detected from PackageJson property ""homepage""",https://github.com/npm/ignore-walk/issues,"as detected from PackageJson property ""bugs.url""",,,,,,active,Active in npm registry,2025-07-24T15:37:24.680Z
|
|
@@ -663,7 +663,7 @@ library,leven@3.1.0,MIT,,Sindre Sorhus,leven,3.1.0,pkg:npm/leven@3.1.0?vcs_url=g
|
|
|
663
663
|
library,pretty-format@29.7.0,MIT,,James Kyle,pretty-format,29.7.0,pkg:npm/pretty-format@29.7.0?vcs_url=git%2Bhttps%3A%2F%2Fgithub.com%2Fjestjs%2Fjest.git#packages/pretty-format,,Stringify any JavaScript value.,git+https://github.com/jestjs/jest.git#packages/pretty-format,"as detected from PackageJson property ""repository.url"" and ""repository.directory""",https://github.com/jestjs/jest#readme,"as detected from PackageJson property ""homepage""",https://github.com/jestjs/jest/issues,"as detected from PackageJson property ""bugs.url""",,,,,me@thejameskyle.com,active,Active in npm registry,2025-09-28T07:32:42.818Z
|
|
664
664
|
library,@jest/schemas@29.6.3,MIT,@jest,,schemas,29.6.3,pkg:npm/%40jest/schemas@29.6.3?vcs_url=git%2Bhttps%3A%2F%2Fgithub.com%2Fjestjs%2Fjest.git#packages/jest-schemas,,,git+https://github.com/jestjs/jest.git#packages/jest-schemas,"as detected from PackageJson property ""repository.url"" and ""repository.directory""",https://github.com/jestjs/jest#readme,"as detected from PackageJson property ""homepage""",https://github.com/jestjs/jest/issues,"as detected from PackageJson property ""bugs.url""",,,,,,active,Active in npm registry,2025-07-22T02:28:24.848Z
|
|
665
665
|
library,ansi-styles@5.2.0,MIT,,Sindre Sorhus,ansi-styles,5.2.0,pkg:npm/ansi-styles@5.2.0?vcs_url=git%2Bhttps%3A%2F%2Fgithub.com%2Fchalk%2Fansi-styles.git,,ANSI escape codes for styling strings in the terminal,git+https://github.com/chalk/ansi-styles.git,"as detected from PackageJson property ""repository.url""",https://github.com/chalk/ansi-styles#readme,"as detected from PackageJson property ""homepage""",https://github.com/chalk/ansi-styles/issues,"as detected from PackageJson property ""bugs.url""",,,,,sindresorhus@gmail.com,active,Active in npm registry,2025-09-08T17:07:32.285Z
|
|
666
|
-
library,react-is@18.3.1,MIT,,,react-is,18.3.1,pkg:npm/react-is@18.3.1?vcs_url=git%2Bhttps%3A%2F%2Fgithub.com%2Ffacebook%2Freact.git#packages/react-is,,Brand checking of React Elements.,git+https://github.com/facebook/react.git#packages/react-is,"as detected from PackageJson property ""repository.url"" and ""repository.directory""",https://reactjs.org/,"as detected from PackageJson property ""homepage""",https://github.com/facebook/react/issues,"as detected from PackageJson property ""bugs.url""",,,,,,active,Active in npm registry,2025-10-
|
|
666
|
+
library,react-is@18.3.1,MIT,,,react-is,18.3.1,pkg:npm/react-is@18.3.1?vcs_url=git%2Bhttps%3A%2F%2Fgithub.com%2Ffacebook%2Freact.git#packages/react-is,,Brand checking of React Elements.,git+https://github.com/facebook/react.git#packages/react-is,"as detected from PackageJson property ""repository.url"" and ""repository.directory""",https://reactjs.org/,"as detected from PackageJson property ""homepage""",https://github.com/facebook/react/issues,"as detected from PackageJson property ""bugs.url""",,,,,,active,Active in npm registry,2025-10-07T16:21:21.086Z
|
|
667
667
|
library,@sinclair/typebox@0.27.8,MIT,@sinclair,sinclairzx81,typebox,0.27.8,pkg:npm/%40sinclair/typebox@0.27.8?vcs_url=git%2Bhttps%3A%2F%2Fgithub.com%2Fsinclairzx81%2Ftypebox.git,,JSONSchema Type Builder with Static Type Resolution for TypeScript,git+https://github.com/sinclairzx81/typebox.git,"as detected from PackageJson property ""repository.url""",https://github.com/sinclairzx81/typebox#readme,"as detected from PackageJson property ""homepage""",https://github.com/sinclairzx81/typebox/issues,"as detected from PackageJson property ""bugs.url""",,,,,,active,Active in npm registry,2025-08-29T19:15:48.096Z
|
|
668
668
|
library,@babel/core@7.28.4,MIT,@babel,The Babel Team,core,7.28.4,pkg:npm/%40babel/core@7.28.4?vcs_url=git%2Bhttps%3A%2F%2Fgithub.com%2Fbabel%2Fbabel.git#packages/babel-core,,Babel compiler core.,git+https://github.com/babel/babel.git#packages/babel-core,"as detected from PackageJson property ""repository.url"" and ""repository.directory""",https://babel.dev/docs/en/next/babel-core,"as detected from PackageJson property ""homepage""",https://github.com/babel/babel/issues?utf8=%E2%9C%93&q=is%3Aissue+label%3A%22pkg%3A%20core%22+is%3Aopen,"as detected from PackageJson property ""bugs.url""",,,,,,active,Active in npm registry,2025-09-05T15:06:38.546Z
|
|
669
669
|
library,@jest/test-sequencer@29.7.0,MIT,@jest,,test-sequencer,29.7.0,pkg:npm/%40jest/test-sequencer@29.7.0?vcs_url=git%2Bhttps%3A%2F%2Fgithub.com%2Fjestjs%2Fjest.git#packages/jest-test-sequencer,,,git+https://github.com/jestjs/jest.git#packages/jest-test-sequencer,"as detected from PackageJson property ""repository.url"" and ""repository.directory""",https://github.com/jestjs/jest#readme,"as detected from PackageJson property ""homepage""",https://github.com/jestjs/jest/issues,"as detected from PackageJson property ""bugs.url""",,,,,,active,Active in npm registry,2025-09-28T07:32:55.035Z
|
|
@@ -800,9 +800,9 @@ library,@babel/helper-validator-option@7.27.1,MIT,@babel,The Babel Team,helper-v
|
|
|
800
800
|
library,browserslist@4.26.3,MIT,,Andrey Sitnik,browserslist,4.26.3,pkg:npm/browserslist@4.26.3?vcs_url=git%2Bhttps%3A%2F%2Fgithub.com%2Fbrowserslist%2Fbrowserslist.git,,Share target browsers between different front-end tools~ like Autoprefixer~ Stylelint and babel-env-preset,git+https://github.com/browserslist/browserslist.git,"as detected from PackageJson property ""repository.url""",https://github.com/browserslist/browserslist#readme,"as detected from PackageJson property ""homepage""",https://github.com/browserslist/browserslist/issues,"as detected from PackageJson property ""bugs.url""",,,,,andrey@sitnik.ru,active,Active in npm registry,2025-10-01T15:43:39.623Z
|
|
801
801
|
library,lru-cache@5.1.1,ISC,,Isaac Z. Schlueter,lru-cache,5.1.1,pkg:npm/lru-cache@5.1.1?vcs_url=git%3A%2F%2Fgithub.com%2Fisaacs%2Fnode-lru-cache.git,,A cache object that deletes the least-recently-used items.,git://github.com/isaacs/node-lru-cache.git,"as detected from PackageJson property ""repository.url""",https://github.com/isaacs/node-lru-cache#readme,"as detected from PackageJson property ""homepage""",https://github.com/isaacs/node-lru-cache/issues,"as detected from PackageJson property ""bugs.url""",,,,,i@izs.me,active,Active in npm registry,2025-09-23T17:02:13.772Z
|
|
802
802
|
library,yallist@3.1.1,ISC,,Isaac Z. Schlueter,yallist,3.1.1,pkg:npm/yallist@3.1.1?vcs_url=git%2Bhttps%3A%2F%2Fgithub.com%2Fisaacs%2Fyallist.git,,Yet Another Linked List,git+https://github.com/isaacs/yallist.git,"as detected from PackageJson property ""repository.url""",https://github.com/isaacs/yallist#readme,"as detected from PackageJson property ""homepage""",https://github.com/isaacs/yallist/issues,"as detected from PackageJson property ""bugs.url""",,,,,i@izs.me,active,Active in npm registry,2024-04-09T19:21:45.008Z
|
|
803
|
-
library,baseline-browser-mapping@2.8.11,Apache-2.0,,,baseline-browser-mapping,2.8.11,pkg:npm/baseline-browser-mapping@2.8.11?vcs_url=git%2Bhttps%3A%2F%2Fgithub.com%2Fweb-platform-dx%2Fbaseline-browser-mapping.git,,A library for obtaining browser versions with their maximum supported Baseline feature set and Widely Available status.,git+https://github.com/web-platform-dx/baseline-browser-mapping.git,"as detected from PackageJson property ""repository.url""",https://github.com/web-platform-dx/baseline-browser-mapping#readme,"as detected from PackageJson property ""homepage""",https://github.com/web-platform-dx/baseline-browser-mapping/issues,"as detected from PackageJson property ""bugs.url""",,,,,,active,Active in npm registry,2025-10-
|
|
804
|
-
library,caniuse-lite@1.0.30001747,CC-BY-4.0,,Ben Briggs,caniuse-lite,1.0.30001747,pkg:npm/caniuse-lite@1.0.30001747?vcs_url=git%2Bhttps%3A%2F%2Fgithub.com%2Fbrowserslist%2Fcaniuse-lite.git,,A smaller version of caniuse-db~ with only the essentials!,git+https://github.com/browserslist/caniuse-lite.git,"as detected from PackageJson property ""repository.url""",https://github.com/browserslist/caniuse-lite#readme,"as detected from PackageJson property ""homepage""",https://github.com/browserslist/caniuse-lite/issues,"as detected from PackageJson property ""bugs.url""",,,,,beneb.info@gmail.com,active,Active in npm registry,2025-10-
|
|
805
|
-
library,electron-to-chromium@1.5.230,ISC,,Kilian Valkhof,electron-to-chromium,1.5.230,pkg:npm/electron-to-chromium@1.5.230?vcs_url=git%2Bhttps%3A%2F%2Fgithub.com%2Fkilian%2Felectron-to-chromium.git,,Provides a list of electron-to-chromium version mappings,git+https://github.com/kilian/electron-to-chromium.git,"as detected from PackageJson property ""repository.url""",https://github.com/kilian/electron-to-chromium#readme,"as detected from PackageJson property ""homepage""",https://github.com/kilian/electron-to-chromium/issues,"as detected from PackageJson property ""bugs.url""",,,,,,active,Active in npm registry,2025-10-
|
|
803
|
+
library,baseline-browser-mapping@2.8.11,Apache-2.0,,,baseline-browser-mapping,2.8.11,pkg:npm/baseline-browser-mapping@2.8.11?vcs_url=git%2Bhttps%3A%2F%2Fgithub.com%2Fweb-platform-dx%2Fbaseline-browser-mapping.git,,A library for obtaining browser versions with their maximum supported Baseline feature set and Widely Available status.,git+https://github.com/web-platform-dx/baseline-browser-mapping.git,"as detected from PackageJson property ""repository.url""",https://github.com/web-platform-dx/baseline-browser-mapping#readme,"as detected from PackageJson property ""homepage""",https://github.com/web-platform-dx/baseline-browser-mapping/issues,"as detected from PackageJson property ""bugs.url""",,,,,,active,Active in npm registry,2025-10-07T14:11:00.972Z
|
|
804
|
+
library,caniuse-lite@1.0.30001747,CC-BY-4.0,,Ben Briggs,caniuse-lite,1.0.30001747,pkg:npm/caniuse-lite@1.0.30001747?vcs_url=git%2Bhttps%3A%2F%2Fgithub.com%2Fbrowserslist%2Fcaniuse-lite.git,,A smaller version of caniuse-db~ with only the essentials!,git+https://github.com/browserslist/caniuse-lite.git,"as detected from PackageJson property ""repository.url""",https://github.com/browserslist/caniuse-lite#readme,"as detected from PackageJson property ""homepage""",https://github.com/browserslist/caniuse-lite/issues,"as detected from PackageJson property ""bugs.url""",,,,,beneb.info@gmail.com,active,Active in npm registry,2025-10-08T06:52:26.915Z
|
|
805
|
+
library,electron-to-chromium@1.5.230,ISC,,Kilian Valkhof,electron-to-chromium,1.5.230,pkg:npm/electron-to-chromium@1.5.230?vcs_url=git%2Bhttps%3A%2F%2Fgithub.com%2Fkilian%2Felectron-to-chromium.git,,Provides a list of electron-to-chromium version mappings,git+https://github.com/kilian/electron-to-chromium.git,"as detected from PackageJson property ""repository.url""",https://github.com/kilian/electron-to-chromium#readme,"as detected from PackageJson property ""homepage""",https://github.com/kilian/electron-to-chromium/issues,"as detected from PackageJson property ""bugs.url""",,,,,,active,Active in npm registry,2025-10-08T02:02:34.336Z
|
|
806
806
|
library,node-releases@2.0.21,MIT,,Sergey Rubanov,node-releases,2.0.21,pkg:npm/node-releases@2.0.21?vcs_url=git%2Bhttps%3A%2F%2Fgithub.com%2Fchicoxyzzy%2Fnode-releases.git,,Node.js releases data,git+https://github.com/chicoxyzzy/node-releases.git,"as detected from PackageJson property ""repository.url""",https://github.com/chicoxyzzy/node-releases#readme,"as detected from PackageJson property ""homepage""",https://github.com/chicoxyzzy/node-releases/issues,"as detected from PackageJson property ""bugs.url""",,,,,chi187@gmail.com,active,Active in npm registry,2025-10-03T22:52:07.777Z
|
|
807
807
|
library,update-browserslist-db@1.1.3,MIT,,Andrey Sitnik,update-browserslist-db,1.1.3,pkg:npm/update-browserslist-db@1.1.3?vcs_url=git%2Bhttps%3A%2F%2Fgithub.com%2Fbrowserslist%2Fupdate-db.git,,CLI tool to update caniuse-lite to refresh target browsers from Browserslist config,git+https://github.com/browserslist/update-db.git,"as detected from PackageJson property ""repository.url""",https://github.com/browserslist/update-db#readme,"as detected from PackageJson property ""homepage""",https://github.com/browserslist/update-db/issues,"as detected from PackageJson property ""bugs.url""",,,,,andrey@sitnik.ru,active,Active in npm registry,2025-02-26T17:32:43.209Z
|
|
808
808
|
library,prompts@2.4.2,MIT,,Terkel Gjervig,prompts,2.4.2,pkg:npm/prompts@2.4.2?vcs_url=git%2Bhttps%3A%2F%2Fgithub.com%2Fterkelg%2Fprompts.git,,Lightweight~ beautiful and user-friendly prompts,git+https://github.com/terkelg/prompts.git,"as detected from PackageJson property ""repository.url""",https://github.com/terkelg/prompts#readme,"as detected from PackageJson property ""homepage""",https://github.com/terkelg/prompts/issues,"as detected from PackageJson property ""bugs.url""",,,,,terkel@terkel.com,active,Active in npm registry,2023-10-21T01:41:35.063Z
|
|
@@ -850,7 +850,7 @@ library,espree@10.4.0,BSD-2-Clause,,Nicholas C. Zakas,espree,10.4.0,pkg:npm/espr
|
|
|
850
850
|
library,esquery@1.6.0,BSD-3-Clause,,Joel Feenstra,esquery,1.6.0,pkg:npm/esquery@1.6.0?vcs_url=git%2Bhttps%3A%2F%2Fgithub.com%2Festools%2Fesquery.git,,A query library for ECMAScript AST using a CSS selector like query language.,git+https://github.com/estools/esquery.git,"as detected from PackageJson property ""repository.url""",https://github.com/estools/esquery/,"as detected from PackageJson property ""homepage""",https://github.com/estools/esquery/issues,"as detected from PackageJson property ""bugs.url""",,,,,jrfeenst+esquery@gmail.com,active,Active in npm registry,2024-07-08T16:35:18.589Z
|
|
851
851
|
library,esutils@2.0.3,BSD-2-Clause,,,esutils,2.0.3,pkg:npm/esutils@2.0.3?vcs_url=git%2Bssh%3A%2F%2Fgit%40github.com%2Festools%2Fesutils.git,,utility box for ECMAScript language tools,git+ssh://git@github.com/estools/esutils.git,"as detected from PackageJson property ""repository.url""",https://github.com/estools/esutils,"as detected from PackageJson property ""homepage""",https://github.com/estools/esutils/issues,"as detected from PackageJson property ""bugs.url""",,,,,,active,Active in npm registry,2023-05-10T18:27:50.347Z
|
|
852
852
|
library,fast-deep-equal@3.1.3,MIT,,Evgeny Poberezkin,fast-deep-equal,3.1.3,pkg:npm/fast-deep-equal@3.1.3?vcs_url=git%2Bhttps%3A%2F%2Fgithub.com%2Fepoberezkin%2Ffast-deep-equal.git,,Fast deep equal,git+https://github.com/epoberezkin/fast-deep-equal.git,"as detected from PackageJson property ""repository.url""",https://github.com/epoberezkin/fast-deep-equal#readme,"as detected from PackageJson property ""homepage""",https://github.com/epoberezkin/fast-deep-equal/issues,"as detected from PackageJson property ""bugs.url""",,,,,,active,Active in npm registry,2023-06-22T16:31:52.032Z
|
|
853
|
-
library,file-entry-cache@8.0.0,MIT,,Jared Wray,file-entry-cache,8.0.0,pkg:npm/file-entry-cache@8.0.0?vcs_url=git%2Bhttps%3A%2F%2Fgithub.com%2Fjaredwray%2Ffile-entry-cache.git,,Super simple cache for file metadata~ useful for process that work o a given series of files and that only need to repeat the job on the changed ones since the previous run of the process,git+https://github.com/jaredwray/file-entry-cache.git,"as detected from PackageJson property ""repository.url""",https://github.com/jaredwray/file-entry-cache#readme,"as detected from PackageJson property ""homepage""",https://github.com/jaredwray/file-entry-cache/issues,"as detected from PackageJson property ""bugs.url""",,,,,,active,Active in npm registry,2025-10-
|
|
853
|
+
library,file-entry-cache@8.0.0,MIT,,Jared Wray,file-entry-cache,8.0.0,pkg:npm/file-entry-cache@8.0.0?vcs_url=git%2Bhttps%3A%2F%2Fgithub.com%2Fjaredwray%2Ffile-entry-cache.git,,Super simple cache for file metadata~ useful for process that work o a given series of files and that only need to repeat the job on the changed ones since the previous run of the process,git+https://github.com/jaredwray/file-entry-cache.git,"as detected from PackageJson property ""repository.url""",https://github.com/jaredwray/file-entry-cache#readme,"as detected from PackageJson property ""homepage""",https://github.com/jaredwray/file-entry-cache/issues,"as detected from PackageJson property ""bugs.url""",,,,,,active,Active in npm registry,2025-10-07T23:33:18.130Z
|
|
854
854
|
library,glob-parent@6.0.2,ISC,,Gulp Team,glob-parent,6.0.2,pkg:npm/glob-parent@6.0.2?vcs_url=git%2Bhttps%3A%2F%2Fgithub.com%2Fgulpjs%2Fglob-parent.git,,Extract the non-magic parent path from a glob string.,git+https://github.com/gulpjs/glob-parent.git,"as detected from PackageJson property ""repository.url""",https://github.com/gulpjs/glob-parent#readme,"as detected from PackageJson property ""homepage""",https://github.com/gulpjs/glob-parent/issues,"as detected from PackageJson property ""bugs.url""",,,,,team@gulpjs.com,active,Active in npm registry,2023-06-22T16:32:08.502Z
|
|
855
855
|
library,json-stable-stringify-without-jsonify@1.0.1,MIT,,James Halliday,json-stable-stringify-without-jsonify,1.0.1,pkg:npm/json-stable-stringify-without-jsonify@1.0.1?vcs_url=git%3A%2F%2Fgithub.com%2Fsamn%2Fjson-stable-stringify.git,,deterministic JSON.stringify() with custom sorting to get deterministic hashes from stringified results~ with no public domain dependencies,git://github.com/samn/json-stable-stringify.git,"as detected from PackageJson property ""repository.url""",https://github.com/samn/json-stable-stringify,"as detected from PackageJson property ""homepage""",https://github.com/samn/json-stable-stringify/issues,"as detected from PackageJson property ""bugs.url""",,,,,mail@substack.net,active,Active in npm registry,2023-06-22T16:32:42.071Z
|
|
856
856
|
library,lodash.merge@4.6.2,MIT,,John-David Dalton,lodash.merge,4.6.2,pkg:npm/lodash.merge@4.6.2?vcs_url=git%2Bhttps%3A%2F%2Fgithub.com%2Flodash%2Flodash.git,,The Lodash method `_.merge` exported as a module.,git+https://github.com/lodash/lodash.git,"as detected from PackageJson property ""repository.url""",https://lodash.com/,"as detected from PackageJson property ""homepage""",https://github.com/lodash/lodash/issues,"as detected from PackageJson property ""bugs.url""",,,,,john.david.dalton@gmail.com,active,Active in npm registry,2023-06-22T16:32:54.853Z
|
|
@@ -976,15 +976,15 @@ library,from@0.1.7,MIT,,Dominic Tarr,from,0.1.7,pkg:npm/from@0.1.7?vcs_url=git%3
|
|
|
976
976
|
library,map-stream@0.0.7,MIT,,Dominic Tarr,map-stream,0.0.7,pkg:npm/map-stream@0.0.7?vcs_url=git%3A%2F%2Fgithub.com%2Fdominictarr%2Fmap-stream.git,,construct pipes of streams of events,git://github.com/dominictarr/map-stream.git,"as detected from PackageJson property ""repository.url""",http://github.com/dominictarr/map-stream,"as detected from PackageJson property ""homepage""",https://github.com/dominictarr/map-stream/issues,"as detected from PackageJson property ""bugs.url""",,,,,dominic.tarr@gmail.com,active,Active in npm registry,2022-06-19T15:52:46.194Z
|
|
977
977
|
library,pause-stream@0.0.11,,,Dominic Tarr,pause-stream,0.0.11,pkg:npm/pause-stream@0.0.11?vcs_url=git%3A%2F%2Fgithub.com%2Fdominictarr%2Fpause-stream.git,,a ThroughStream that strictly buffers all readable events when paused.,git://github.com/dominictarr/pause-stream.git,"as detected from PackageJson property ""repository.url""",https://github.com/dominictarr/pause-stream#readme,"as detected from PackageJson property ""homepage""",https://github.com/dominictarr/pause-stream/issues,"as detected from PackageJson property ""bugs.url""",,,,,dominic.tarr@gmail.com,active,Active in npm registry,2022-11-08T10:38:57.078Z
|
|
978
978
|
library,stream-combiner@0.2.2,MIT,,'Dominic Tarr',stream-combiner,0.2.2,pkg:npm/stream-combiner@0.2.2?vcs_url=git%3A%2F%2Fgithub.com%2Fdominictarr%2Fstream-combiner.git,,,git://github.com/dominictarr/stream-combiner.git,"as detected from PackageJson property ""repository.url""",https://github.com/dominictarr/stream-combiner,"as detected from PackageJson property ""homepage""",https://github.com/dominictarr/stream-combiner/issues,"as detected from PackageJson property ""bugs.url""",,,,,dominic.tarr@gmail.com,active,Active in npm registry,2022-11-08T10:38:50.859Z
|
|
979
|
-
library,@typescript-eslint/scope-manager@8.
|
|
980
|
-
library,@typescript-eslint/types@8.
|
|
981
|
-
library,@typescript-eslint/typescript-estree@8.
|
|
982
|
-
library,@typescript-eslint/visitor-keys@8.
|
|
983
|
-
library,@typescript-eslint/project-service@8.
|
|
984
|
-
library,@typescript-eslint/tsconfig-utils@8.
|
|
979
|
+
library,@typescript-eslint/scope-manager@8.46.0,MIT,@typescript-eslint,,scope-manager,8.46.0,pkg:npm/%40typescript-eslint/scope-manager@8.46.0?vcs_url=git%2Bhttps%3A%2F%2Fgithub.com%2Ftypescript-eslint%2Ftypescript-eslint.git#packages/scope-manager,,TypeScript scope analyser for ESLint,git+https://github.com/typescript-eslint/typescript-eslint.git#packages/scope-manager,"as detected from PackageJson property ""repository.url"" and ""repository.directory""",https://typescript-eslint.io/packages/scope-manager,"as detected from PackageJson property ""homepage""",https://github.com/typescript-eslint/typescript-eslint/issues,"as detected from PackageJson property ""bugs.url""",,,,,,active,Active in npm registry,2025-10-07T03:17:02.100Z
|
|
980
|
+
library,@typescript-eslint/types@8.46.0,MIT,@typescript-eslint,,types,8.46.0,pkg:npm/%40typescript-eslint/types@8.46.0?vcs_url=git%2Bhttps%3A%2F%2Fgithub.com%2Ftypescript-eslint%2Ftypescript-eslint.git#packages/types,,Types for the TypeScript-ESTree AST spec,git+https://github.com/typescript-eslint/typescript-eslint.git#packages/types,"as detected from PackageJson property ""repository.url"" and ""repository.directory""",https://typescript-eslint.io,"as detected from PackageJson property ""homepage""",https://github.com/typescript-eslint/typescript-eslint/issues,"as detected from PackageJson property ""bugs.url""",,,,,,active,Active in npm registry,2025-10-07T03:16:42.973Z
|
|
981
|
+
library,@typescript-eslint/typescript-estree@8.46.0,MIT,@typescript-eslint,,typescript-estree,8.46.0,pkg:npm/%40typescript-eslint/typescript-estree@8.46.0?vcs_url=git%2Bhttps%3A%2F%2Fgithub.com%2Ftypescript-eslint%2Ftypescript-eslint.git#packages/typescript-estree,,A parser that converts TypeScript source code into an ESTree compatible form,git+https://github.com/typescript-eslint/typescript-eslint.git#packages/typescript-estree,"as detected from PackageJson property ""repository.url"" and ""repository.directory""",https://typescript-eslint.io/packages/typescript-estree,"as detected from PackageJson property ""homepage""",https://github.com/typescript-eslint/typescript-eslint/issues,"as detected from PackageJson property ""bugs.url""",,,,,,active,Active in npm registry,2025-10-07T03:16:55.279Z
|
|
982
|
+
library,@typescript-eslint/visitor-keys@8.46.0,MIT,@typescript-eslint,,visitor-keys,8.46.0,pkg:npm/%40typescript-eslint/visitor-keys@8.46.0?vcs_url=git%2Bhttps%3A%2F%2Fgithub.com%2Ftypescript-eslint%2Ftypescript-eslint.git#packages/visitor-keys,,Visitor keys used to help traverse the TypeScript-ESTree AST,git+https://github.com/typescript-eslint/typescript-eslint.git#packages/visitor-keys,"as detected from PackageJson property ""repository.url"" and ""repository.directory""",https://typescript-eslint.io,"as detected from PackageJson property ""homepage""",https://github.com/typescript-eslint/typescript-eslint/issues,"as detected from PackageJson property ""bugs.url""",,,,,,active,Active in npm registry,2025-10-07T03:16:48.730Z
|
|
983
|
+
library,@typescript-eslint/project-service@8.46.0,MIT,@typescript-eslint,,project-service,8.46.0,pkg:npm/%40typescript-eslint/project-service@8.46.0?vcs_url=git%2Bhttps%3A%2F%2Fgithub.com%2Ftypescript-eslint%2Ftypescript-eslint.git#packages/project-service,,Standalone TypeScript project service wrapper for linting.,git+https://github.com/typescript-eslint/typescript-eslint.git#packages/project-service,"as detected from PackageJson property ""repository.url"" and ""repository.directory""",https://typescript-eslint.io,"as detected from PackageJson property ""homepage""",https://github.com/typescript-eslint/typescript-eslint/issues,"as detected from PackageJson property ""bugs.url""",,,,,,active,Active in npm registry,2025-10-07T03:16:48.048Z
|
|
984
|
+
library,@typescript-eslint/tsconfig-utils@8.46.0,MIT,@typescript-eslint,,tsconfig-utils,8.46.0,pkg:npm/%40typescript-eslint/tsconfig-utils@8.46.0?vcs_url=git%2Bhttps%3A%2F%2Fgithub.com%2Ftypescript-eslint%2Ftypescript-eslint.git#packages/tsconfig-utils,,Utilities for collecting TSConfigs for linting scenarios.,git+https://github.com/typescript-eslint/typescript-eslint.git#packages/tsconfig-utils,"as detected from PackageJson property ""repository.url"" and ""repository.directory""",https://typescript-eslint.io,"as detected from PackageJson property ""homepage""",https://github.com/typescript-eslint/typescript-eslint/issues,"as detected from PackageJson property ""bugs.url""",,,,,,active,Active in npm registry,2025-10-07T03:16:42.684Z
|
|
985
985
|
library,ts-api-utils@2.1.0,MIT,,JoshuaKGoldberg,ts-api-utils,2.1.0,pkg:npm/ts-api-utils@2.1.0?vcs_url=git%2Bhttps%3A%2F%2Fgithub.com%2FJoshuaKGoldberg%2Fts-api-utils.git,,Utility functions for working with TypeScript's API. Successor to the wonderful tsutils. 🛠️️,git+https://github.com/JoshuaKGoldberg/ts-api-utils.git,"as detected from PackageJson property ""repository.url""",https://github.com/JoshuaKGoldberg/ts-api-utils#readme,"as detected from PackageJson property ""homepage""",https://github.com/JoshuaKGoldberg/ts-api-utils/issues,"as detected from PackageJson property ""bugs.url""",,,,,npm@joshuakgoldberg.com,active,Active in npm registry,2025-03-20T12:24:50.789Z
|
|
986
|
-
library,@typescript-eslint/type-utils@8.
|
|
987
|
-
library,@typescript-eslint/utils@8.
|
|
986
|
+
library,@typescript-eslint/type-utils@8.46.0,MIT,@typescript-eslint,,type-utils,8.46.0,pkg:npm/%40typescript-eslint/type-utils@8.46.0?vcs_url=git%2Bhttps%3A%2F%2Fgithub.com%2Ftypescript-eslint%2Ftypescript-eslint.git#packages/type-utils,,Type utilities for working with TypeScript + ESLint together,git+https://github.com/typescript-eslint/typescript-eslint.git#packages/type-utils,"as detected from PackageJson property ""repository.url"" and ""repository.directory""",https://typescript-eslint.io,"as detected from PackageJson property ""homepage""",https://github.com/typescript-eslint/typescript-eslint/issues,"as detected from PackageJson property ""bugs.url""",,,,,,active,Active in npm registry,2025-10-07T03:17:13.404Z
|
|
987
|
+
library,@typescript-eslint/utils@8.46.0,MIT,@typescript-eslint,,utils,8.46.0,pkg:npm/%40typescript-eslint/utils@8.46.0?vcs_url=git%2Bhttps%3A%2F%2Fgithub.com%2Ftypescript-eslint%2Ftypescript-eslint.git#packages/utils,,Utilities for working with TypeScript + ESLint together,git+https://github.com/typescript-eslint/typescript-eslint.git#packages/utils,"as detected from PackageJson property ""repository.url"" and ""repository.directory""",https://typescript-eslint.io/packages/utils,"as detected from PackageJson property ""homepage""",https://github.com/typescript-eslint/typescript-eslint/issues,"as detected from PackageJson property ""bugs.url""",,,,,,active,Active in npm registry,2025-10-07T03:17:08.154Z
|
|
988
988
|
library,graphemer@1.4.0,MIT,,Matt Davies,graphemer,1.4.0,pkg:npm/graphemer@1.4.0?vcs_url=git%2Bhttps%3A%2F%2Fgithub.com%2Fflmnt%2Fgraphemer.git,,A JavaScript library that breaks strings into their individual user-perceived characters (including emojis!),git+https://github.com/flmnt/graphemer.git,"as detected from PackageJson property ""repository.url""",https://github.com/flmnt/graphemer,"as detected from PackageJson property ""homepage""",https://github.com/flmnt/graphemer/issues,"as detected from PackageJson property ""bugs.url""",,,,,matt@filament.so,active,Active in npm registry,2023-06-22T16:32:15.232Z
|
|
989
989
|
library,ignore@7.0.5,MIT,,kael,ignore,7.0.5,pkg:npm/ignore@7.0.5?vcs_url=git%2Bssh%3A%2F%2Fgit%40github.com%2Fkaelzhang%2Fnode-ignore.git,,Ignore is a manager and filter for .gitignore rules~ the one used by eslint~ gitbook and many others.,git+ssh://git@github.com/kaelzhang/node-ignore.git,"as detected from PackageJson property ""repository.url""",https://github.com/kaelzhang/node-ignore#readme,"as detected from PackageJson property ""homepage""",https://github.com/kaelzhang/node-ignore/issues,"as detected from PackageJson property ""bugs.url""",,,,,,active,Active in npm registry,2025-05-31T02:18:53.593Z
|
|
990
990
|
library,undici-types@7.14.0,MIT,,,undici-types,7.14.0,pkg:npm/undici-types@7.14.0?vcs_url=git%2Bhttps%3A%2F%2Fgithub.com%2Fnodejs%2Fundici.git,,A stand-alone types package for Undici,git+https://github.com/nodejs/undici.git,"as detected from PackageJson property ""repository.url""",https://undici.nodejs.org,"as detected from PackageJson property ""homepage""",https://github.com/nodejs/undici/issues,"as detected from PackageJson property ""bugs.url""",,,,,,active,Active in npm registry,2025-09-09T17:07:28.064Z
|