@blamejs/core 0.12.64 → 0.12.65
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 +2 -0
- package/README.md +1 -0
- package/index.js +2 -0
- package/lib/base32.js +154 -0
- package/lib/totp.js +10 -31
- package/package.json +1 -1
- package/sbom.cdx.json +6 -6
package/CHANGELOG.md
CHANGED
|
@@ -8,6 +8,8 @@ upgrading across more than a few patches at a time.
|
|
|
8
8
|
|
|
9
9
|
## v0.12.x
|
|
10
10
|
|
|
11
|
+
- v0.12.65 (2026-05-26) — **`b.base32` — RFC 4648 Base32 encode / decode.** Encode and decode RFC 4648 Base32 — the case-insensitive alphabet behind TOTP / 2FA secrets, DNSSEC NSEC3 hashes, and human-transcribable identifiers. Both RFC 4648 variants are supported: the standard alphabet (the default) and the extended-hex alphabet. b.base32.encode pads to an 8-character boundary by default (pass padding: false for the bare form TOTP key URIs use); b.base32.decode is strict by default but accepts the real-world shapes humans produce — lower-case, embedded spaces and dashes, missing padding — under loose: true. Verified against the RFC 4648 §10 test vectors for both alphabets. The TOTP primitive now composes this codec instead of carrying its own Base32 implementation. **Added:** *`b.base32.encode` / `b.base32.decode`* — RFC 4648 Base32 codec. `encode(buf, opts)` takes a Buffer or Uint8Array and returns a Base32 string, padded to an 8-character boundary unless `padding: false`; `decode(str, opts)` returns a Buffer. The `variant` option selects the standard (`"rfc4648"`, default) or extended-hex (`"rfc4648-hex"`) alphabet. Decoding is strict by default — any character outside the alphabet throws `Base32Error` — and `loose: true` up-cases the input and ignores embedded spaces, dashes, and missing padding, which is how copied TOTP keys and hand-typed codes arrive. **Changed:** *TOTP composes `b.base32`* — `b.auth.totp` now encodes and decodes its secrets through `b.base32` rather than a private Base32 implementation. Behavior is unchanged — secrets are still emitted unpadded and parsed leniently (case-insensitive, ignoring spaces and dashes).
|
|
12
|
+
|
|
11
13
|
- v0.12.64 (2026-05-25) — **`b.jsonSchema` — JSON Schema 2020-12 validation.** Validate JSON against a JSON Schema 2020-12 document — the dialect OpenAPI 3.1 adopted and the most widely implemented schema language. b.jsonSchema.compile(schema) returns a reusable validator; b.jsonSchema.validate(schema, instance) compiles and runs in one call, returning { valid, errors } where each error names the failing instance location, keyword, and schema path. The full 2020-12 vocabulary is supported: every applicator (allOf / anyOf / oneOf / not / if-then-else, properties / patternProperties / additionalProperties / prefixItems / items / contains), the annotation-aware unevaluatedProperties / unevaluatedItems, every assertion keyword, and reference resolution ($ref / $anchor / $dynamicRef / $dynamicAnchor / $defs / $id base URIs). format is an annotation by default (opt in to assertion with assertFormat). External references resolve through an operator-supplied schema map — never a network fetch. Verified against the official JSON-Schema-Test-Suite (1292 of 1295 draft2020-12 cases; the remainder need the bundled dialect metaschema or $vocabulary selection, both opt-in). This is the standards-track counterpart to the fluent b.safeSchema builder and the portable b.jtd. **Added:** *`b.jsonSchema` — JSON Schema 2020-12* — `compile(schema, opts)` returns `{ validate, isValid }`; `validate(schema, instance, opts)` and `isValid(schema, instance, opts)` compile and run in one call. `validate` returns `{ valid, errors }`, each error a `{ instancePath, keyword, schemaPath, message }`. The full 2020-12 vocabulary is implemented — applicators, annotation-aware `unevaluatedProperties` / `unevaluatedItems`, every assertion keyword, and `$ref` / `$anchor` / `$dynamicRef` / `$dynamicAnchor` / `$defs` / `$id` resolution. `format` is an annotation by default (`assertFormat: true` to assert). External references resolve through `opts.schemas` (a URI→schema map), never a network fetch. Reach for it when the schema is an existing JSON Schema document (an API contract, OpenAPI component, or config schema); `b.safeSchema` remains the fluent in-process builder and `b.jtd` the portable codegen-friendly option. Validating a schema document against the dialect metaschema requires supplying that metaschema via `opts.schemas`, and `$vocabulary`-based keyword selection is not honored (every standard keyword always asserts).
|
|
12
14
|
|
|
13
15
|
- v0.12.63 (2026-05-25) — **`b.cloudEvents` gains the JSON event format, batch, and the HTTP binding.** b.cloudEvents grows beyond wrap / parse into a full CloudEvents 1.0.2 surface. b.cloudEvents.validate / isValid check an envelope against the spec without throwing (the non-throwing companion to parse). toJSON / fromJSON serialize and parse the JSON event format, and toJSONBatch / fromJSONBatch handle the JSON batch format; untrusted bodies parse through the framework's bounded, prototype-pollution-safe JSON reader. The new http.* binding speaks both content modes the spec defines — binary mode spreads context attributes across percent-encoded ce-* headers with the data in the body, structured mode carries the whole event as application/cloudevents+json — plus the batch mode, and http.decode auto-detects the incoming mode from Content-Type exactly as a conformant receiver does. Verified against the spec's normative example events. **Added:** *`b.cloudEvents` JSON event format, batch, and HTTP binding* — `validate` / `isValid` report spec violations without throwing (the non-throwing companion to `parse`). `toJSON` / `fromJSON` and `toJSONBatch` / `fromJSONBatch` serialize and parse the JSON event and batch formats over the existing envelope shape. `http.encodeBinary` / `http.encodeStructured` / `http.encodeBatch` render the three HTTP content modes — binary spreads attributes across percent-encoded `ce-*` headers, structured and batched carry the event(s) as `application/cloudevents+json` / `application/cloudevents-batch+json` — and `http.decode` parses a request back into an envelope (or array) by auto-detecting the mode from `Content-Type`. `b.jtd` or `b.safeSchema` still validate the event's `data` payload. **Fixed:** *`b.csp.build` accepts `fenced-frame-src` and `webrtc`* — The CSP3 `fenced-frame-src` directive — which the default security-headers policy emits to block `<fencedframe>` embeds — was missing from the builder's recognized-directive set, so the default policy could not round-trip through `b.csp.build` (it threw `csp/unknown-directive`). Both `fenced-frame-src` and the CSP3 `webrtc` directive are now recognized.
|
package/README.md
CHANGED
|
@@ -101,6 +101,7 @@ The framework bundles the surface a typical Node app reaches for. Every primitiv
|
|
|
101
101
|
- **Link header** — RFC 8288 Web Linking codec (`b.linkHeader.parse` / `serialize`): parse and build `Link: <uri>; rel="next"` relations, the standard REST pagination mechanism; quote-aware (a comma inside a quoted parameter never splits the list)
|
|
102
102
|
- **JSON Type Definition** — RFC 8927 validation (`b.jtd.validate` / `isValid`): portable, cross-implementation schema validation (all eight forms — type / enum / elements / properties / values / discriminator / ref / empty), returning instancePath / schemaPath errors; validated against the official 316-case suite. Interop companion to the fluent `b.safeSchema` builder
|
|
103
103
|
- **JSON Schema 2020-12** — the OpenAPI 3.1 dialect (`b.jsonSchema.compile` / `validate` / `isValid`): full vocabulary including every applicator, annotation-aware `unevaluatedProperties` / `unevaluatedItems`, and `$ref` / `$dynamicRef` / `$anchor` / `$id` resolution (external refs via an operator-supplied schema map, never a network fetch); `format` is an annotation unless `assertFormat` is set; returns located `{ valid, errors }`. Validated against the official JSON-Schema-Test-Suite. Standards-track counterpart to `b.safeSchema` and `b.jtd`
|
|
104
|
+
- **Base32** — RFC 4648 codec (`b.base32.encode` / `decode`): standard + extended-hex alphabets, padded or bare, strict or lenient decode (case-insensitive, ignoring spaces / dashes for copied TOTP keys); validated against the RFC 4648 §10 vectors. The codec behind `b.auth.totp` secrets
|
|
104
105
|
- **JSONPath** — full RFC 9535 query evaluator (`b.jsonPath.query` / `paths`): name / wildcard / index / slice / descendant selectors, `?filter` expressions, and the five standard functions, with compile-time well-typedness checks (validated against the official 703-case compliance suite); complements the JSONPath guards
|
|
105
106
|
- **JSON Pointer / Patch** — RFC 6901 `b.jsonPointer.get` (reference a value by `/foo/0/bar`) + RFC 6902 `b.jsonPatch.apply` (atomic add / remove / replace / move / copy / test for HTTP PATCH; the input document is never mutated, structural `test` comparison) + RFC 7396 `b.jsonMergePatch.merge` (the `merge-patch+json` partial-document format; both PATCH formats are prototype-pollution-safe)
|
|
106
107
|
- **Canonical JSON** — RFC 8785 JSON Canonicalization Scheme (`b.canonicalJson.stringifyJcs`): the deterministic, sorted-key byte form to hash or sign (custom credentials, receipts, deterministic request signing); UTF-16 key ordering + ECMAScript number formatting, with a lenient `stringify` variant for Buffers / Dates / BigInts
|
package/index.js
CHANGED
|
@@ -404,6 +404,7 @@ var jsonMergePatch = require("./lib/json-merge-patch");
|
|
|
404
404
|
var jsonPath = require("./lib/json-path");
|
|
405
405
|
var jtd = require("./lib/jtd");
|
|
406
406
|
var jsonSchema = require("./lib/json-schema");
|
|
407
|
+
var base32 = require("./lib/base32");
|
|
407
408
|
var standardWebhooks = require("./lib/standard-webhooks");
|
|
408
409
|
var lro = require("./lib/lro");
|
|
409
410
|
var jsonApi = require("./lib/jsonapi");
|
|
@@ -429,6 +430,7 @@ module.exports = {
|
|
|
429
430
|
jsonPath: jsonPath,
|
|
430
431
|
jtd: jtd,
|
|
431
432
|
jsonSchema: jsonSchema,
|
|
433
|
+
base32: base32,
|
|
432
434
|
standardWebhooks: standardWebhooks,
|
|
433
435
|
lro: lro,
|
|
434
436
|
jsonApi: jsonApi,
|
package/lib/base32.js
ADDED
|
@@ -0,0 +1,154 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
/**
|
|
3
|
+
* @module b.base32
|
|
4
|
+
* @nav Data
|
|
5
|
+
* @title Base32
|
|
6
|
+
*
|
|
7
|
+
* @intro
|
|
8
|
+
* Encode and decode <a href="https://www.rfc-editor.org/rfc/rfc4648">RFC
|
|
9
|
+
* 4648</a> Base32 — the case-insensitive, digit-light alphabet used for
|
|
10
|
+
* TOTP / 2FA secrets, DNSSEC NSEC3 hashes, and human-transcribable
|
|
11
|
+
* identifiers. Both RFC 4648 variants are supported: the standard
|
|
12
|
+
* alphabet (<code>variant: "rfc4648"</code>, default) and the
|
|
13
|
+
* extended-hex alphabet (<code>variant: "rfc4648-hex"</code>, which sorts
|
|
14
|
+
* in the same order as the underlying bytes).
|
|
15
|
+
*
|
|
16
|
+
* <code>encode</code> pads to an 8-character boundary with
|
|
17
|
+
* <code>=</code> by default (pass <code>padding: false</code> for the
|
|
18
|
+
* bare form TOTP key URIs use). <code>decode</code> is strict by default
|
|
19
|
+
* — it rejects any character outside the alphabet — but
|
|
20
|
+
* <code>loose: true</code> accepts the real-world shapes humans produce:
|
|
21
|
+
* lower-case input, embedded spaces and dashes, and missing padding.
|
|
22
|
+
*
|
|
23
|
+
* @card
|
|
24
|
+
* RFC 4648 Base32 encode / decode (standard + extended-hex alphabets,
|
|
25
|
+
* padded or bare, strict or lenient) — the codec behind TOTP secrets and
|
|
26
|
+
* transcribable identifiers.
|
|
27
|
+
*/
|
|
28
|
+
|
|
29
|
+
var { defineClass } = require("./framework-error");
|
|
30
|
+
|
|
31
|
+
var Base32Error = defineClass("Base32Error", { alwaysPermanent: true });
|
|
32
|
+
|
|
33
|
+
var ALPHABETS = {
|
|
34
|
+
"rfc4648": "ABCDEFGHIJKLMNOPQRSTUVWXYZ234567",
|
|
35
|
+
"rfc4648-hex": "0123456789ABCDEFGHIJKLMNOPQRSTUV",
|
|
36
|
+
};
|
|
37
|
+
// Reverse lookups per variant: char-code → 5-bit value.
|
|
38
|
+
var LOOKUPS = {};
|
|
39
|
+
Object.keys(ALPHABETS).forEach(function (v) {
|
|
40
|
+
var map = {};
|
|
41
|
+
for (var i = 0; i < ALPHABETS[v].length; i++) map[ALPHABETS[v].charAt(i)] = i;
|
|
42
|
+
LOOKUPS[v] = map;
|
|
43
|
+
});
|
|
44
|
+
|
|
45
|
+
var GROUP = 8; // allow:raw-byte-literal — Base32 emits 8 chars per 5 input bytes (RFC 4648 §6)
|
|
46
|
+
var BITS = 5; // 5 bits per Base32 symbol
|
|
47
|
+
|
|
48
|
+
function _alphabet(variant) {
|
|
49
|
+
var a = ALPHABETS[variant || "rfc4648"];
|
|
50
|
+
if (!a) throw new Base32Error("base32/bad-variant", "base32: variant must be 'rfc4648' or 'rfc4648-hex'");
|
|
51
|
+
return a;
|
|
52
|
+
}
|
|
53
|
+
|
|
54
|
+
/**
|
|
55
|
+
* @primitive b.base32.encode
|
|
56
|
+
* @signature b.base32.encode(input, opts?)
|
|
57
|
+
* @since 0.12.65
|
|
58
|
+
* @status stable
|
|
59
|
+
* @related b.base32.decode
|
|
60
|
+
*
|
|
61
|
+
* Encode a Buffer (or Uint8Array) to an RFC 4648 Base32 string. Output is
|
|
62
|
+
* padded to an 8-character boundary with <code>=</code> unless
|
|
63
|
+
* <code>padding: false</code>. The empty input encodes to the empty string.
|
|
64
|
+
*
|
|
65
|
+
* @opts
|
|
66
|
+
* variant: "rfc4648" | "rfc4648-hex", // default: "rfc4648"
|
|
67
|
+
* padding: boolean, // default: true
|
|
68
|
+
*
|
|
69
|
+
* @example
|
|
70
|
+
* b.base32.encode(Buffer.from("foobar"));
|
|
71
|
+
* // → "MFRGGZDFMZTWQ===="
|
|
72
|
+
*/
|
|
73
|
+
function encode(input, opts) {
|
|
74
|
+
opts = opts || {};
|
|
75
|
+
var buf;
|
|
76
|
+
if (Buffer.isBuffer(input)) buf = input;
|
|
77
|
+
else if (input instanceof Uint8Array) buf = Buffer.from(input);
|
|
78
|
+
else throw new Base32Error("base32/bad-input", "base32.encode: input must be a Buffer or Uint8Array");
|
|
79
|
+
var alphabet = _alphabet(opts.variant);
|
|
80
|
+
var pad = opts.padding !== false;
|
|
81
|
+
|
|
82
|
+
var out = "";
|
|
83
|
+
var value = 0, bits = 0;
|
|
84
|
+
for (var i = 0; i < buf.length; i++) {
|
|
85
|
+
value = (value << 8) | buf[i]; // allow:raw-byte-literal — shift in one input byte
|
|
86
|
+
bits += 8; // allow:raw-byte-literal — eight bits per input byte
|
|
87
|
+
while (bits >= BITS) {
|
|
88
|
+
out += alphabet.charAt((value >>> (bits - BITS)) & 31); // allow:raw-byte-literal — low 5 bits mask (2^5 - 1)
|
|
89
|
+
bits -= BITS;
|
|
90
|
+
}
|
|
91
|
+
}
|
|
92
|
+
if (bits > 0) out += alphabet.charAt((value << (BITS - bits)) & 31); // allow:raw-byte-literal — final partial group, low 5 bits
|
|
93
|
+
if (pad) while (out.length % GROUP !== 0) out += "=";
|
|
94
|
+
return out;
|
|
95
|
+
}
|
|
96
|
+
|
|
97
|
+
/**
|
|
98
|
+
* @primitive b.base32.decode
|
|
99
|
+
* @signature b.base32.decode(str, opts?)
|
|
100
|
+
* @since 0.12.65
|
|
101
|
+
* @status stable
|
|
102
|
+
* @related b.base32.encode
|
|
103
|
+
*
|
|
104
|
+
* Decode an RFC 4648 Base32 string to a Buffer. Strict by default: any
|
|
105
|
+
* character outside the variant's alphabet (other than trailing
|
|
106
|
+
* <code>=</code> padding) throws <code>Base32Error</code>. With
|
|
107
|
+
* <code>loose: true</code> the decoder up-cases the input and ignores
|
|
108
|
+
* embedded spaces and dashes (and missing padding) — the shapes TOTP keys
|
|
109
|
+
* and hand-typed codes take.
|
|
110
|
+
*
|
|
111
|
+
* @opts
|
|
112
|
+
* variant: "rfc4648" | "rfc4648-hex", // default: "rfc4648"
|
|
113
|
+
* loose: boolean, // default: false
|
|
114
|
+
*
|
|
115
|
+
* @example
|
|
116
|
+
* b.base32.decode("MFRGGZDFMZTWQ====").toString();
|
|
117
|
+
* // → "foobar"
|
|
118
|
+
*/
|
|
119
|
+
function decode(str, opts) {
|
|
120
|
+
opts = opts || {};
|
|
121
|
+
if (typeof str !== "string") throw new Base32Error("base32/bad-input", "base32.decode: input must be a string");
|
|
122
|
+
_alphabet(opts.variant);
|
|
123
|
+
var lookup = LOOKUPS[opts.variant || "rfc4648"];
|
|
124
|
+
var loose = opts.loose === true;
|
|
125
|
+
|
|
126
|
+
var bytes = [];
|
|
127
|
+
var value = 0, bits = 0;
|
|
128
|
+
var inPad = false; // once "=" padding starts, only more "=" may follow
|
|
129
|
+
for (var i = 0; i < str.length; i++) {
|
|
130
|
+
var ch = str.charAt(i);
|
|
131
|
+
if (ch === "=") { inPad = true; continue; } // trailing padding
|
|
132
|
+
if (loose && (ch === " " || ch === "-")) continue; // ignore separators
|
|
133
|
+
// A data character after padding is malformed in either mode — the "="
|
|
134
|
+
// run must be trailing (rejects "M=Y======" / "MZXW=6YTB").
|
|
135
|
+
if (inPad) throw new Base32Error("base32/bad-char", "base32.decode: data character '" + ch + "' after padding at index " + i);
|
|
136
|
+
if (loose) ch = ch.toUpperCase();
|
|
137
|
+
var idx = lookup[ch];
|
|
138
|
+
if (idx === undefined) throw new Base32Error("base32/bad-char", "base32.decode: invalid Base32 character '" + str.charAt(i) + "' at index " + i);
|
|
139
|
+
value = (value << BITS) | idx;
|
|
140
|
+
bits += BITS;
|
|
141
|
+
if (bits >= 8) { // allow:raw-byte-literal — emit a full output byte
|
|
142
|
+
bytes.push((value >>> (bits - 8)) & 0xff); // allow:raw-byte-literal — eight-bit output byte mask
|
|
143
|
+
bits -= 8; // allow:raw-byte-literal — consumed eight bits
|
|
144
|
+
}
|
|
145
|
+
}
|
|
146
|
+
return Buffer.from(bytes);
|
|
147
|
+
}
|
|
148
|
+
|
|
149
|
+
module.exports = {
|
|
150
|
+
encode: encode,
|
|
151
|
+
decode: decode,
|
|
152
|
+
ALPHABETS: ALPHABETS,
|
|
153
|
+
Base32Error: Base32Error,
|
|
154
|
+
};
|
package/lib/totp.js
CHANGED
|
@@ -61,6 +61,7 @@
|
|
|
61
61
|
*/
|
|
62
62
|
var nodeCrypto = require("node:crypto");
|
|
63
63
|
var C = require("./constants");
|
|
64
|
+
var base32 = require("./base32");
|
|
64
65
|
var { generateBytes, generateToken, timingSafeEqual } = require("./crypto");
|
|
65
66
|
var { AuthError } = require("./framework-error");
|
|
66
67
|
|
|
@@ -84,45 +85,23 @@ var DEFAULT_SECRET_BYTES = C.BYTES.bytes(128);
|
|
|
84
85
|
var MIN_SECRET_BYTES = 20;
|
|
85
86
|
// HOTP counter is an 8-byte big-endian field per RFC 4226 §5.1.
|
|
86
87
|
var HOTP_COUNTER_BYTES = C.BYTES.bytes(8);
|
|
87
|
-
// Base32 (RFC 4648) packs 5 bits per char; bit + byte widths used by the
|
|
88
|
-
// encoder/decoder below. Routed through C.BYTES so every byte literal in
|
|
89
|
-
// the file lives behind the same helper.
|
|
90
|
-
var BITS_PER_BYTE = C.BYTES.bytes(8);
|
|
91
88
|
|
|
92
89
|
// ---- Base32 (RFC 4648, no padding — TOTP convention) ----
|
|
93
|
-
|
|
94
|
-
|
|
90
|
+
// Composes b.base32: secrets are emitted unpadded and parsed leniently
|
|
91
|
+
// (case-insensitive, ignoring the spaces / dashes humans add when copying
|
|
92
|
+
// a key). An invalid character is surfaced as the TOTP-specific error code.
|
|
95
93
|
|
|
96
94
|
function _base32Encode(buf) {
|
|
97
|
-
|
|
98
|
-
for (var i = 0; i < buf.length; i++) {
|
|
99
|
-
bits += buf[i].toString(2).padStart(BITS_PER_BYTE, "0");
|
|
100
|
-
}
|
|
101
|
-
var out = "";
|
|
102
|
-
for (var j = 0; j < bits.length; j += 5) {
|
|
103
|
-
var chunk = bits.substring(j, j + 5).padEnd(5, "0");
|
|
104
|
-
out += BASE32[parseInt(chunk, 2)];
|
|
105
|
-
}
|
|
106
|
-
return out;
|
|
95
|
+
return base32.encode(buf, { padding: false });
|
|
107
96
|
}
|
|
108
97
|
|
|
109
98
|
function _base32Decode(str) {
|
|
110
|
-
|
|
111
|
-
|
|
112
|
-
|
|
113
|
-
|
|
114
|
-
|
|
115
|
-
if (idx === -1) {
|
|
116
|
-
throw new AuthError("auth-totp/bad-secret",
|
|
117
|
-
"secret contains invalid base32 character: '" + str[i] + "'");
|
|
118
|
-
}
|
|
119
|
-
bits += idx.toString(2).padStart(5, "0");
|
|
120
|
-
}
|
|
121
|
-
var bytes = [];
|
|
122
|
-
for (var j = 0; j + BITS_PER_BYTE <= bits.length; j += BITS_PER_BYTE) {
|
|
123
|
-
bytes.push(parseInt(bits.substring(j, j + BITS_PER_BYTE), 2));
|
|
99
|
+
try {
|
|
100
|
+
return base32.decode(str, { loose: true });
|
|
101
|
+
} catch (e) {
|
|
102
|
+
throw new AuthError("auth-totp/bad-secret",
|
|
103
|
+
"secret contains invalid base32 character" + (e && e.message ? ": " + e.message : ""));
|
|
124
104
|
}
|
|
125
|
-
return Buffer.from(bytes);
|
|
126
105
|
}
|
|
127
106
|
|
|
128
107
|
// ---- Core HOTP (RFC 4226 §5.3) ----
|
package/package.json
CHANGED
package/sbom.cdx.json
CHANGED
|
@@ -2,10 +2,10 @@
|
|
|
2
2
|
"$schema": "http://cyclonedx.org/schema/bom-1.5.schema.json",
|
|
3
3
|
"bomFormat": "CycloneDX",
|
|
4
4
|
"specVersion": "1.5",
|
|
5
|
-
"serialNumber": "urn:uuid:
|
|
5
|
+
"serialNumber": "urn:uuid:9f4770af-2b1a-425d-be19-619f1b638c9e",
|
|
6
6
|
"version": 1,
|
|
7
7
|
"metadata": {
|
|
8
|
-
"timestamp": "2026-05-
|
|
8
|
+
"timestamp": "2026-05-26T08:53:06.102Z",
|
|
9
9
|
"lifecycles": [
|
|
10
10
|
{
|
|
11
11
|
"phase": "build"
|
|
@@ -19,14 +19,14 @@
|
|
|
19
19
|
}
|
|
20
20
|
],
|
|
21
21
|
"component": {
|
|
22
|
-
"bom-ref": "@blamejs/core@0.12.
|
|
22
|
+
"bom-ref": "@blamejs/core@0.12.65",
|
|
23
23
|
"type": "application",
|
|
24
24
|
"name": "blamejs",
|
|
25
|
-
"version": "0.12.
|
|
25
|
+
"version": "0.12.65",
|
|
26
26
|
"scope": "required",
|
|
27
27
|
"author": "blamejs contributors",
|
|
28
28
|
"description": "The Node framework that owns its stack.",
|
|
29
|
-
"purl": "pkg:npm/%40blamejs/core@0.12.
|
|
29
|
+
"purl": "pkg:npm/%40blamejs/core@0.12.65",
|
|
30
30
|
"properties": [],
|
|
31
31
|
"externalReferences": [
|
|
32
32
|
{
|
|
@@ -54,7 +54,7 @@
|
|
|
54
54
|
"components": [],
|
|
55
55
|
"dependencies": [
|
|
56
56
|
{
|
|
57
|
-
"ref": "@blamejs/core@0.12.
|
|
57
|
+
"ref": "@blamejs/core@0.12.65",
|
|
58
58
|
"dependsOn": []
|
|
59
59
|
}
|
|
60
60
|
]
|