@dxos/node-std 0.5.8-next.4b7fabd → 0.5.9-main.079a532
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/dist/lib/browser/chunk-CMGRJ4FC.mjs +29 -0
- package/dist/lib/browser/chunk-CMGRJ4FC.mjs.map +7 -0
- package/dist/lib/browser/fs.mjs +8 -0
- package/dist/lib/browser/fs.mjs.map +2 -2
- package/dist/lib/browser/globals.mjs +1 -1
- package/dist/lib/browser/meta.json +1 -1
- package/dist/lib/browser/util.mjs +1 -1
- package/dist/lib/node/chunk-D73VD6UV.cjs +22 -0
- package/dist/lib/node/chunk-D73VD6UV.cjs.map +7 -0
- package/dist/lib/node/fs.cjs +8 -0
- package/dist/lib/node/fs.cjs.map +2 -2
- package/dist/lib/node/globals.cjs +1 -1
- package/dist/lib/node/globals.cjs.map +1 -1
- package/dist/lib/node/meta.json +1 -1
- package/dist/lib/node/util.cjs +1 -1
- package/package.json +1 -1
- package/dist/lib/browser/chunk-P5GBL7TE.mjs +0 -16
- package/dist/lib/browser/chunk-P5GBL7TE.mjs.map +0 -7
- package/dist/lib/node/chunk-JHZ6V4WV.cjs +0 -9
- package/dist/lib/node/chunk-JHZ6V4WV.cjs.map +0 -7
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
import {
|
|
2
|
+
process
|
|
3
|
+
} from "./chunk-QWZSWMMO.mjs";
|
|
4
|
+
import {
|
|
5
|
+
require_buffer
|
|
6
|
+
} from "./chunk-HFGMGNFE.mjs";
|
|
7
|
+
import {
|
|
8
|
+
__toESM
|
|
9
|
+
} from "./chunk-MJPHVYKR.mjs";
|
|
10
|
+
|
|
11
|
+
// packages/common/node-std/src/globals.js
|
|
12
|
+
var import_buffer = __toESM(require_buffer());
|
|
13
|
+
(() => {
|
|
14
|
+
if (typeof globalThis !== "undefined" && !Object.getOwnPropertyDescriptor(globalThis, "global")) {
|
|
15
|
+
Object.defineProperty(globalThis, "global", {
|
|
16
|
+
value: globalThis,
|
|
17
|
+
configurable: true,
|
|
18
|
+
writable: false,
|
|
19
|
+
enumerable: true
|
|
20
|
+
});
|
|
21
|
+
}
|
|
22
|
+
if (typeof globalThis !== "undefined" && !globalThis.Buffer) {
|
|
23
|
+
globalThis.Buffer = import_buffer.Buffer;
|
|
24
|
+
}
|
|
25
|
+
if (typeof globalThis !== "undefined" && !globalThis.process) {
|
|
26
|
+
globalThis.process = process;
|
|
27
|
+
}
|
|
28
|
+
})();
|
|
29
|
+
//# sourceMappingURL=chunk-CMGRJ4FC.mjs.map
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
{
|
|
2
|
+
"version": 3,
|
|
3
|
+
"sources": ["../../../src/globals.js"],
|
|
4
|
+
"sourcesContent": ["//\n// Copyright 2024 DXOS.org\n//\n\nimport { Buffer } from 'buffer/';\n\nimport { process } from './process';\n\n(() => {\n // NOTE(Zan): When running in native context `globalThis.global` is an immutable property.\n // - Socket already polyfills it.\n\n // Check if `globalThis` is defined and if `global` can be assigned.\n if (typeof globalThis !== 'undefined' && !Object.getOwnPropertyDescriptor(globalThis, 'global')) {\n Object.defineProperty(globalThis, 'global', {\n value: globalThis,\n configurable: true,\n writable: false,\n enumerable: true,\n });\n }\n\n if (typeof globalThis !== 'undefined' && !globalThis.Buffer) {\n globalThis.Buffer = Buffer;\n }\n\n if (typeof globalThis !== 'undefined' && !globalThis.process) {\n globalThis.process = process;\n }\n})();\n"],
|
|
5
|
+
"mappings": ";;;;;;;;;;;AAIA,oBAAuB;CAItB,MAAM;AAKL,MAAI,OAAO,eAAe,eAAe,CAAC,OAAO,yBAAyB,YAAY,QAAQ,GAAG;AAC/F,WAAO,eAAe,YAAY,UAAU;AAAA,MAC1C,OAAO;AAAA,MACP,cAAc;AAAA,MACd,UAAU;AAAA,MACV,YAAY;AAAA,IACd,CAAC;AAAA,EACH;AAEA,MAAI,OAAO,eAAe,eAAe,CAAC,WAAW,QAAQ;AAC3D,eAAW,SAAS;AAAA,EACtB;AAEA,MAAI,OAAO,eAAe,eAAe,CAAC,WAAW,SAAS;AAC5D,eAAW,UAAU;AAAA,EACvB;AACF,GAAG;",
|
|
6
|
+
"names": []
|
|
7
|
+
}
|
package/dist/lib/browser/fs.mjs
CHANGED
|
@@ -9,8 +9,16 @@ var mkdirSync = () => notAvailable();
|
|
|
9
9
|
var openSync = () => notAvailable();
|
|
10
10
|
var existsSync = () => notAvailable();
|
|
11
11
|
var statSync = () => notAvailable();
|
|
12
|
+
var fs_default = {
|
|
13
|
+
appendFileSync,
|
|
14
|
+
mkdirSync,
|
|
15
|
+
openSync,
|
|
16
|
+
existsSync,
|
|
17
|
+
statSync
|
|
18
|
+
};
|
|
12
19
|
export {
|
|
13
20
|
appendFileSync,
|
|
21
|
+
fs_default as default,
|
|
14
22
|
existsSync,
|
|
15
23
|
mkdirSync,
|
|
16
24
|
openSync,
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"version": 3,
|
|
3
3
|
"sources": ["../../../src/fs.js"],
|
|
4
|
-
"sourcesContent": ["//\n// Copyright 2023 DXOS.org\n//\n\nconst notAvailable = () => {\n throw new Error('Not available on this platform');\n};\n\nexport const appendFileSync = () => notAvailable();\nexport const mkdirSync = () => notAvailable();\nexport const openSync = () => notAvailable();\nexport const existsSync = () => notAvailable();\nexport const statSync = () => notAvailable();\n"],
|
|
5
|
-
"mappings": ";;;AAIA,IAAM,eAAe,MAAM;AACzB,QAAM,IAAI,MAAM,gCAAgC;AAClD;AAEO,IAAM,iBAAiB,MAAM,aAAa;AAC1C,IAAM,YAAY,MAAM,aAAa;AACrC,IAAM,WAAW,MAAM,aAAa;AACpC,IAAM,aAAa,MAAM,aAAa;AACtC,IAAM,WAAW,MAAM,aAAa;",
|
|
4
|
+
"sourcesContent": ["//\n// Copyright 2023 DXOS.org\n//\n\nconst notAvailable = () => {\n throw new Error('Not available on this platform');\n};\n\nexport const appendFileSync = () => notAvailable();\nexport const mkdirSync = () => notAvailable();\nexport const openSync = () => notAvailable();\nexport const existsSync = () => notAvailable();\nexport const statSync = () => notAvailable();\n\nexport default {\n appendFileSync,\n mkdirSync,\n openSync,\n existsSync,\n statSync,\n};\n"],
|
|
5
|
+
"mappings": ";;;AAIA,IAAM,eAAe,MAAM;AACzB,QAAM,IAAI,MAAM,gCAAgC;AAClD;AAEO,IAAM,iBAAiB,MAAM,aAAa;AAC1C,IAAM,YAAY,MAAM,aAAa;AACrC,IAAM,WAAW,MAAM,aAAa;AACpC,IAAM,aAAa,MAAM,aAAa;AACtC,IAAM,WAAW,MAAM,aAAa;AAE3C,IAAO,aAAQ;AAAA,EACb;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AACF;",
|
|
6
6
|
"names": []
|
|
7
7
|
}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"inputs":{"packages/common/node-std/src/_/config.js":{"bytes":237,"imports":[],"format":"esm"},"node_modules/.pnpm/has-symbols@1.0.3/node_modules/has-symbols/shams.js":{"bytes":1761,"imports":[],"format":"cjs"},"node_modules/.pnpm/has-tostringtag@1.0.0/node_modules/has-tostringtag/shams.js":{"bytes":162,"imports":[{"path":"node_modules/.pnpm/has-symbols@1.0.3/node_modules/has-symbols/shams.js","kind":"require-call","original":"has-symbols/shams"}],"format":"cjs"},"node_modules/.pnpm/has-symbols@1.0.3/node_modules/has-symbols/index.js":{"bytes":420,"imports":[{"path":"node_modules/.pnpm/has-symbols@1.0.3/node_modules/has-symbols/shams.js","kind":"require-call","original":"./shams"}],"format":"cjs"},"node_modules/.pnpm/has-proto@1.0.1/node_modules/has-proto/index.js":{"bytes":197,"imports":[],"format":"cjs"},"node_modules/.pnpm/function-bind@1.1.2/node_modules/function-bind/implementation.js":{"bytes":2043,"imports":[],"format":"cjs"},"node_modules/.pnpm/function-bind@1.1.2/node_modules/function-bind/index.js":{"bytes":126,"imports":[{"path":"node_modules/.pnpm/function-bind@1.1.2/node_modules/function-bind/implementation.js","kind":"require-call","original":"./implementation"}],"format":"cjs"},"node_modules/.pnpm/hasown@2.0.0/node_modules/hasown/index.js":{"bytes":234,"imports":[{"path":"node_modules/.pnpm/function-bind@1.1.2/node_modules/function-bind/index.js","kind":"require-call","original":"function-bind"}],"format":"cjs"},"node_modules/.pnpm/get-intrinsic@1.2.2/node_modules/get-intrinsic/index.js":{"bytes":13326,"imports":[{"path":"node_modules/.pnpm/has-symbols@1.0.3/node_modules/has-symbols/index.js","kind":"require-call","original":"has-symbols"},{"path":"node_modules/.pnpm/has-proto@1.0.1/node_modules/has-proto/index.js","kind":"require-call","original":"has-proto"},{"path":"node_modules/.pnpm/function-bind@1.1.2/node_modules/function-bind/index.js","kind":"require-call","original":"function-bind"},{"path":"node_modules/.pnpm/hasown@2.0.0/node_modules/hasown/index.js","kind":"require-call","original":"hasown"}],"format":"cjs"},"node_modules/.pnpm/has-property-descriptors@1.0.0/node_modules/has-property-descriptors/index.js":{"bytes":817,"imports":[{"path":"node_modules/.pnpm/get-intrinsic@1.2.2/node_modules/get-intrinsic/index.js","kind":"require-call","original":"get-intrinsic"}],"format":"cjs"},"node_modules/.pnpm/gopd@1.0.1/node_modules/gopd/index.js":{"bytes":263,"imports":[{"path":"node_modules/.pnpm/get-intrinsic@1.2.2/node_modules/get-intrinsic/index.js","kind":"require-call","original":"get-intrinsic"}],"format":"cjs"},"node_modules/.pnpm/define-data-property@1.1.1/node_modules/define-data-property/index.js":{"bytes":2838,"imports":[{"path":"node_modules/.pnpm/has-property-descriptors@1.0.0/node_modules/has-property-descriptors/index.js","kind":"require-call","original":"has-property-descriptors"},{"path":"node_modules/.pnpm/get-intrinsic@1.2.2/node_modules/get-intrinsic/index.js","kind":"require-call","original":"get-intrinsic"},{"path":"node_modules/.pnpm/gopd@1.0.1/node_modules/gopd/index.js","kind":"require-call","original":"gopd"}],"format":"cjs"},"node_modules/.pnpm/set-function-length@1.1.1/node_modules/set-function-length/index.js":{"bytes":1170,"imports":[{"path":"node_modules/.pnpm/get-intrinsic@1.2.2/node_modules/get-intrinsic/index.js","kind":"require-call","original":"get-intrinsic"},{"path":"node_modules/.pnpm/define-data-property@1.1.1/node_modules/define-data-property/index.js","kind":"require-call","original":"define-data-property"},{"path":"node_modules/.pnpm/has-property-descriptors@1.0.0/node_modules/has-property-descriptors/index.js","kind":"require-call","original":"has-property-descriptors"},{"path":"node_modules/.pnpm/gopd@1.0.1/node_modules/gopd/index.js","kind":"require-call","original":"gopd"}],"format":"cjs"},"node_modules/.pnpm/call-bind@1.0.5/node_modules/call-bind/index.js":{"bytes":1212,"imports":[{"path":"node_modules/.pnpm/function-bind@1.1.2/node_modules/function-bind/index.js","kind":"require-call","original":"function-bind"},{"path":"node_modules/.pnpm/get-intrinsic@1.2.2/node_modules/get-intrinsic/index.js","kind":"require-call","original":"get-intrinsic"},{"path":"node_modules/.pnpm/set-function-length@1.1.1/node_modules/set-function-length/index.js","kind":"require-call","original":"set-function-length"}],"format":"cjs"},"node_modules/.pnpm/call-bind@1.0.5/node_modules/call-bind/callBound.js":{"bytes":413,"imports":[{"path":"node_modules/.pnpm/get-intrinsic@1.2.2/node_modules/get-intrinsic/index.js","kind":"require-call","original":"get-intrinsic"},{"path":"node_modules/.pnpm/call-bind@1.0.5/node_modules/call-bind/index.js","kind":"require-call","original":"./"}],"format":"cjs"},"node_modules/.pnpm/is-arguments@1.1.1/node_modules/is-arguments/index.js":{"bytes":976,"imports":[{"path":"node_modules/.pnpm/has-tostringtag@1.0.0/node_modules/has-tostringtag/shams.js","kind":"require-call","original":"has-tostringtag/shams"},{"path":"node_modules/.pnpm/call-bind@1.0.5/node_modules/call-bind/callBound.js","kind":"require-call","original":"call-bind/callBound"}],"format":"cjs"},"node_modules/.pnpm/is-generator-function@1.0.10/node_modules/is-generator-function/index.js":{"bytes":964,"imports":[{"path":"node_modules/.pnpm/has-tostringtag@1.0.0/node_modules/has-tostringtag/shams.js","kind":"require-call","original":"has-tostringtag/shams"}],"format":"cjs"},"node_modules/.pnpm/is-callable@1.2.7/node_modules/is-callable/index.js":{"bytes":3224,"imports":[],"format":"cjs"},"node_modules/.pnpm/for-each@0.3.3/node_modules/for-each/index.js":{"bytes":1761,"imports":[{"path":"node_modules/.pnpm/is-callable@1.2.7/node_modules/is-callable/index.js","kind":"require-call","original":"is-callable"}],"format":"cjs"},"node_modules/.pnpm/available-typed-arrays@1.0.5/node_modules/available-typed-arrays/index.js":{"bytes":519,"imports":[],"format":"cjs"},"node_modules/.pnpm/call-bind@1.0.2/node_modules/call-bind/index.js":{"bytes":1306,"imports":[{"path":"node_modules/.pnpm/function-bind@1.1.2/node_modules/function-bind/index.js","kind":"require-call","original":"function-bind"},{"path":"node_modules/.pnpm/get-intrinsic@1.2.2/node_modules/get-intrinsic/index.js","kind":"require-call","original":"get-intrinsic"}],"format":"cjs"},"node_modules/.pnpm/call-bind@1.0.2/node_modules/call-bind/callBound.js":{"bytes":413,"imports":[{"path":"node_modules/.pnpm/get-intrinsic@1.2.2/node_modules/get-intrinsic/index.js","kind":"require-call","original":"get-intrinsic"},{"path":"node_modules/.pnpm/call-bind@1.0.2/node_modules/call-bind/index.js","kind":"require-call","original":"./"}],"format":"cjs"},"node_modules/.pnpm/es-abstract@1.20.4/node_modules/es-abstract/helpers/getOwnPropertyDescriptor.js":{"bytes":262,"imports":[{"path":"node_modules/.pnpm/get-intrinsic@1.2.2/node_modules/get-intrinsic/index.js","kind":"require-call","original":"get-intrinsic"}],"format":"cjs"},"node_modules/.pnpm/which-typed-array@1.1.13/node_modules/which-typed-array/index.js":{"bytes":2406,"imports":[{"path":"node_modules/.pnpm/for-each@0.3.3/node_modules/for-each/index.js","kind":"require-call","original":"for-each"},{"path":"node_modules/.pnpm/available-typed-arrays@1.0.5/node_modules/available-typed-arrays/index.js","kind":"require-call","original":"available-typed-arrays"},{"path":"node_modules/.pnpm/call-bind@1.0.5/node_modules/call-bind/index.js","kind":"require-call","original":"call-bind"},{"path":"node_modules/.pnpm/call-bind@1.0.5/node_modules/call-bind/callBound.js","kind":"require-call","original":"call-bind/callBound"},{"path":"node_modules/.pnpm/gopd@1.0.1/node_modules/gopd/index.js","kind":"require-call","original":"gopd"},{"path":"node_modules/.pnpm/has-tostringtag@1.0.0/node_modules/has-tostringtag/shams.js","kind":"require-call","original":"has-tostringtag/shams"}],"format":"cjs"},"node_modules/.pnpm/is-typed-array@1.1.12/node_modules/is-typed-array/index.js":{"bytes":153,"imports":[{"path":"node_modules/.pnpm/which-typed-array@1.1.13/node_modules/which-typed-array/index.js","kind":"require-call","original":"which-typed-array"}],"format":"cjs"},"node_modules/.pnpm/which-typed-array@1.1.8/node_modules/which-typed-array/index.js":{"bytes":1670,"imports":[{"path":"node_modules/.pnpm/for-each@0.3.3/node_modules/for-each/index.js","kind":"require-call","original":"for-each"},{"path":"node_modules/.pnpm/available-typed-arrays@1.0.5/node_modules/available-typed-arrays/index.js","kind":"require-call","original":"available-typed-arrays"},{"path":"node_modules/.pnpm/call-bind@1.0.2/node_modules/call-bind/callBound.js","kind":"require-call","original":"call-bind/callBound"},{"path":"node_modules/.pnpm/has-tostringtag@1.0.0/node_modules/has-tostringtag/shams.js","kind":"require-call","original":"has-tostringtag/shams"},{"path":"node_modules/.pnpm/es-abstract@1.20.4/node_modules/es-abstract/helpers/getOwnPropertyDescriptor.js","kind":"require-call","original":"es-abstract/helpers/getOwnPropertyDescriptor"},{"path":"node_modules/.pnpm/is-typed-array@1.1.12/node_modules/is-typed-array/index.js","kind":"require-call","original":"is-typed-array"}],"format":"cjs"},"node_modules/.pnpm/is-typed-array@1.1.9/node_modules/is-typed-array/index.js":{"bytes":1810,"imports":[{"path":"node_modules/.pnpm/for-each@0.3.3/node_modules/for-each/index.js","kind":"require-call","original":"for-each"},{"path":"node_modules/.pnpm/available-typed-arrays@1.0.5/node_modules/available-typed-arrays/index.js","kind":"require-call","original":"available-typed-arrays"},{"path":"node_modules/.pnpm/call-bind@1.0.2/node_modules/call-bind/callBound.js","kind":"require-call","original":"call-bind/callBound"},{"path":"node_modules/.pnpm/has-tostringtag@1.0.0/node_modules/has-tostringtag/shams.js","kind":"require-call","original":"has-tostringtag/shams"},{"path":"node_modules/.pnpm/es-abstract@1.20.4/node_modules/es-abstract/helpers/getOwnPropertyDescriptor.js","kind":"require-call","original":"es-abstract/helpers/getOwnPropertyDescriptor"}],"format":"cjs"},"node_modules/.pnpm/util@0.12.5/node_modules/util/support/types.js":{"bytes":8672,"imports":[{"path":"node_modules/.pnpm/is-arguments@1.1.1/node_modules/is-arguments/index.js","kind":"require-call","original":"is-arguments"},{"path":"node_modules/.pnpm/is-generator-function@1.0.10/node_modules/is-generator-function/index.js","kind":"require-call","original":"is-generator-function"},{"path":"node_modules/.pnpm/which-typed-array@1.1.8/node_modules/which-typed-array/index.js","kind":"require-call","original":"which-typed-array"},{"path":"node_modules/.pnpm/is-typed-array@1.1.9/node_modules/is-typed-array/index.js","kind":"require-call","original":"is-typed-array"}],"format":"cjs"},"node_modules/.pnpm/util@0.12.5/node_modules/util/support/isBufferBrowser.js":{"bytes":203,"imports":[],"format":"cjs"},"node_modules/.pnpm/inherits@2.0.4/node_modules/inherits/inherits_browser.js":{"bytes":753,"imports":[],"format":"cjs"},"node_modules/.pnpm/util@0.12.5/node_modules/util/util.js":{"bytes":19697,"imports":[{"path":"node_modules/.pnpm/util@0.12.5/node_modules/util/support/types.js","kind":"require-call","original":"./support/types"},{"path":"node_modules/.pnpm/util@0.12.5/node_modules/util/support/isBufferBrowser.js","kind":"require-call","original":"./support/isBuffer"},{"path":"node_modules/.pnpm/inherits@2.0.4/node_modules/inherits/inherits_browser.js","kind":"require-call","original":"inherits"}],"format":"cjs"},"node_modules/.pnpm/assert@2.0.0/node_modules/assert/build/internal/errors.js":{"bytes":7309,"imports":[{"path":"node_modules/.pnpm/assert@2.0.0/node_modules/assert/build/assert.js","kind":"require-call","original":"../assert"},{"path":"node_modules/.pnpm/util@0.12.5/node_modules/util/util.js","kind":"require-call","original":"util/"},{"path":"node_modules/.pnpm/assert@2.0.0/node_modules/assert/build/assert.js","kind":"require-call","original":"../assert"}],"format":"cjs"},"node_modules/.pnpm/assert@2.0.0/node_modules/assert/build/internal/assert/assertion_error.js":{"bytes":21906,"imports":[{"path":"node_modules/.pnpm/util@0.12.5/node_modules/util/util.js","kind":"require-call","original":"util/"},{"path":"node_modules/.pnpm/assert@2.0.0/node_modules/assert/build/internal/errors.js","kind":"require-call","original":"../errors"}],"format":"cjs"},"node_modules/.pnpm/es6-object-assign@1.1.0/node_modules/es6-object-assign/index.js":{"bytes":1164,"imports":[],"format":"cjs"},"node_modules/.pnpm/object-keys@1.1.1/node_modules/object-keys/isArguments.js":{"bytes":422,"imports":[],"format":"cjs"},"node_modules/.pnpm/object-keys@1.1.1/node_modules/object-keys/implementation.js":{"bytes":3218,"imports":[{"path":"node_modules/.pnpm/object-keys@1.1.1/node_modules/object-keys/isArguments.js","kind":"require-call","original":"./isArguments"}],"format":"cjs"},"node_modules/.pnpm/object-keys@1.1.1/node_modules/object-keys/index.js":{"bytes":823,"imports":[{"path":"node_modules/.pnpm/object-keys@1.1.1/node_modules/object-keys/isArguments.js","kind":"require-call","original":"./isArguments"},{"path":"node_modules/.pnpm/object-keys@1.1.1/node_modules/object-keys/implementation.js","kind":"require-call","original":"./implementation"}],"format":"cjs"},"node_modules/.pnpm/define-properties@1.2.1/node_modules/define-properties/index.js":{"bytes":1268,"imports":[{"path":"node_modules/.pnpm/object-keys@1.1.1/node_modules/object-keys/index.js","kind":"require-call","original":"object-keys"},{"path":"node_modules/.pnpm/define-data-property@1.1.1/node_modules/define-data-property/index.js","kind":"require-call","original":"define-data-property"},{"path":"node_modules/.pnpm/has-property-descriptors@1.0.0/node_modules/has-property-descriptors/index.js","kind":"require-call","original":"has-property-descriptors"}],"format":"cjs"},"node_modules/.pnpm/object-is@1.1.5/node_modules/object-is/implementation.js":{"bytes":286,"imports":[],"format":"cjs"},"node_modules/.pnpm/object-is@1.1.5/node_modules/object-is/polyfill.js":{"bytes":181,"imports":[{"path":"node_modules/.pnpm/object-is@1.1.5/node_modules/object-is/implementation.js","kind":"require-call","original":"./implementation"}],"format":"cjs"},"node_modules/.pnpm/object-is@1.1.5/node_modules/object-is/shim.js":{"bytes":306,"imports":[{"path":"node_modules/.pnpm/object-is@1.1.5/node_modules/object-is/polyfill.js","kind":"require-call","original":"./polyfill"},{"path":"node_modules/.pnpm/define-properties@1.2.1/node_modules/define-properties/index.js","kind":"require-call","original":"define-properties"}],"format":"cjs"},"node_modules/.pnpm/object-is@1.1.5/node_modules/object-is/index.js":{"bytes":390,"imports":[{"path":"node_modules/.pnpm/define-properties@1.2.1/node_modules/define-properties/index.js","kind":"require-call","original":"define-properties"},{"path":"node_modules/.pnpm/call-bind@1.0.5/node_modules/call-bind/index.js","kind":"require-call","original":"call-bind"},{"path":"node_modules/.pnpm/object-is@1.1.5/node_modules/object-is/implementation.js","kind":"require-call","original":"./implementation"},{"path":"node_modules/.pnpm/object-is@1.1.5/node_modules/object-is/polyfill.js","kind":"require-call","original":"./polyfill"},{"path":"node_modules/.pnpm/object-is@1.1.5/node_modules/object-is/shim.js","kind":"require-call","original":"./shim"}],"format":"cjs"},"node_modules/.pnpm/is-nan@1.3.2/node_modules/is-nan/implementation.js":{"bytes":156,"imports":[],"format":"cjs"},"node_modules/.pnpm/is-nan@1.3.2/node_modules/is-nan/polyfill.js":{"bytes":225,"imports":[{"path":"node_modules/.pnpm/is-nan@1.3.2/node_modules/is-nan/implementation.js","kind":"require-call","original":"./implementation"}],"format":"cjs"},"node_modules/.pnpm/is-nan@1.3.2/node_modules/is-nan/shim.js":{"bytes":387,"imports":[{"path":"node_modules/.pnpm/define-properties@1.2.1/node_modules/define-properties/index.js","kind":"require-call","original":"define-properties"},{"path":"node_modules/.pnpm/is-nan@1.3.2/node_modules/is-nan/polyfill.js","kind":"require-call","original":"./polyfill"}],"format":"cjs"},"node_modules/.pnpm/is-nan@1.3.2/node_modules/is-nan/index.js":{"bytes":462,"imports":[{"path":"node_modules/.pnpm/call-bind@1.0.2/node_modules/call-bind/index.js","kind":"require-call","original":"call-bind"},{"path":"node_modules/.pnpm/define-properties@1.2.1/node_modules/define-properties/index.js","kind":"require-call","original":"define-properties"},{"path":"node_modules/.pnpm/is-nan@1.3.2/node_modules/is-nan/implementation.js","kind":"require-call","original":"./implementation"},{"path":"node_modules/.pnpm/is-nan@1.3.2/node_modules/is-nan/polyfill.js","kind":"require-call","original":"./polyfill"},{"path":"node_modules/.pnpm/is-nan@1.3.2/node_modules/is-nan/shim.js","kind":"require-call","original":"./shim"}],"format":"cjs"},"node_modules/.pnpm/assert@2.0.0/node_modules/assert/build/internal/util/comparisons.js":{"bytes":20712,"imports":[{"path":"node_modules/.pnpm/object-is@1.1.5/node_modules/object-is/index.js","kind":"require-call","original":"object-is"},{"path":"node_modules/.pnpm/is-nan@1.3.2/node_modules/is-nan/index.js","kind":"require-call","original":"is-nan"},{"path":"node_modules/.pnpm/util@0.12.5/node_modules/util/util.js","kind":"require-call","original":"util/"}],"format":"cjs"},"node_modules/.pnpm/assert@2.0.0/node_modules/assert/build/assert.js":{"bytes":19500,"imports":[{"path":"node_modules/.pnpm/assert@2.0.0/node_modules/assert/build/internal/errors.js","kind":"require-call","original":"./internal/errors"},{"path":"node_modules/.pnpm/assert@2.0.0/node_modules/assert/build/internal/assert/assertion_error.js","kind":"require-call","original":"./internal/assert/assertion_error"},{"path":"node_modules/.pnpm/util@0.12.5/node_modules/util/util.js","kind":"require-call","original":"util/"},{"path":"node_modules/.pnpm/util@0.12.5/node_modules/util/util.js","kind":"require-call","original":"util/"},{"path":"node_modules/.pnpm/es6-object-assign@1.1.0/node_modules/es6-object-assign/index.js","kind":"require-call","original":"es6-object-assign"},{"path":"node_modules/.pnpm/object-is@1.1.5/node_modules/object-is/index.js","kind":"require-call","original":"object-is"},{"path":"node_modules/.pnpm/assert@2.0.0/node_modules/assert/build/internal/util/comparisons.js","kind":"require-call","original":"./internal/util/comparisons"}],"format":"cjs"},"packages/common/node-std/src/assert.js":{"bytes":326,"imports":[{"path":"node_modules/.pnpm/assert@2.0.0/node_modules/assert/build/assert.js","kind":"import-statement","original":"assert"}],"format":"esm"},"node_modules/.pnpm/base64-js@1.5.1/node_modules/base64-js/index.js":{"bytes":3932,"imports":[],"format":"cjs"},"node_modules/.pnpm/ieee754@1.2.1/node_modules/ieee754/index.js":{"bytes":2154,"imports":[],"format":"cjs"},"node_modules/.pnpm/buffer@6.0.3/node_modules/buffer/index.js":{"bytes":58353,"imports":[{"path":"node_modules/.pnpm/base64-js@1.5.1/node_modules/base64-js/index.js","kind":"require-call","original":"base64-js"},{"path":"node_modules/.pnpm/ieee754@1.2.1/node_modules/ieee754/index.js","kind":"require-call","original":"ieee754"}],"format":"cjs"},"packages/common/node-std/src/buffer.js":{"bytes":68,"imports":[{"path":"node_modules/.pnpm/buffer@6.0.3/node_modules/buffer/index.js","kind":"import-statement","original":"buffer/"}],"format":"esm"},"packages/common/node-std/src/crypto.js":{"bytes":125,"imports":[],"format":"esm"},"node_modules/.pnpm/events@3.3.0/node_modules/events/events.js":{"bytes":14890,"imports":[],"format":"cjs"},"packages/common/node-std/src/events.js":{"bytes":133,"imports":[{"path":"node_modules/.pnpm/events@3.3.0/node_modules/events/events.js","kind":"import-statement","original":"events"}],"format":"esm"},"packages/common/node-std/src/fs.js":{"bytes":359,"imports":[],"format":"esm"},"packages/common/node-std/src/fs/promises.js":{"bytes":1438,"imports":[],"format":"esm"},"packages/common/node-std/src/process.js":{"bytes":3094,"imports":[],"format":"esm"},"packages/common/node-std/src/globals.js":{"bytes":197,"imports":[{"path":"node_modules/.pnpm/buffer@6.0.3/node_modules/buffer/index.js","kind":"import-statement","original":"buffer/"},{"path":"packages/common/node-std/src/process.js","kind":"import-statement","original":"./process"}],"format":"esm"},"packages/common/node-std/src/inject-globals.js":{"bytes":273,"imports":[{"path":"node_modules/.pnpm/buffer@6.0.3/node_modules/buffer/index.js","kind":"import-statement","original":"buffer/"},{"path":"packages/common/node-std/src/process.js","kind":"import-statement","original":"./process"}],"format":"esm"},"node_modules/.pnpm/path-browserify@1.0.1/node_modules/path-browserify/index.js":{"bytes":16166,"imports":[],"format":"cjs"},"packages/common/node-std/src/path.js":{"bytes":243,"imports":[{"path":"node_modules/.pnpm/path-browserify@1.0.1/node_modules/path-browserify/index.js","kind":"import-statement","original":"path-browserify"},{"path":"node_modules/.pnpm/path-browserify@1.0.1/node_modules/path-browserify/index.js","kind":"import-statement","original":"path-browserify"}],"format":"esm"},"packages/common/node-std/src/stream.js":{"bytes":138,"imports":[{"path":"readable-stream","kind":"import-statement","external":true}],"format":"esm"},"packages/common/node-std/src/util.js":{"bytes":200,"imports":[{"path":"packages/common/node-std/src/globals.js","kind":"import-statement","original":"./globals"},{"path":"node_modules/.pnpm/util@0.12.5/node_modules/util/util.js","kind":"import-statement","original":"util/"},{"path":"node_modules/.pnpm/util@0.12.5/node_modules/util/util.js","kind":"import-statement","original":"util/"}],"format":"esm"}},"outputs":{"packages/common/node-std/dist/lib/browser/inject-globals.mjs.map":{"imports":[],"exports":[],"inputs":{},"bytes":453},"packages/common/node-std/dist/lib/browser/inject-globals.mjs":{"imports":[{"path":"packages/common/node-std/dist/lib/browser/chunk-QWZSWMMO.mjs","kind":"import-statement"},{"path":"packages/common/node-std/dist/lib/browser/chunk-HFGMGNFE.mjs","kind":"import-statement"},{"path":"packages/common/node-std/dist/lib/browser/chunk-MJPHVYKR.mjs","kind":"import-statement"}],"exports":["Buffer","global","process"],"entryPoint":"packages/common/node-std/src/inject-globals.js","inputs":{"packages/common/node-std/src/inject-globals.js":{"bytesInOutput":72}},"bytes":425},"packages/common/node-std/dist/lib/browser/path.mjs.map":{"imports":[],"exports":[],"inputs":{},"bytes":25649},"packages/common/node-std/dist/lib/browser/path.mjs":{"imports":[{"path":"packages/common/node-std/dist/lib/browser/chunk-MJPHVYKR.mjs","kind":"import-statement"}],"exports":["basename","default","dirname","extname","format","isAbsolute","join","normalize","parse","relative","resolve"],"entryPoint":"packages/common/node-std/src/path.js","inputs":{"node_modules/.pnpm/path-browserify@1.0.1/node_modules/path-browserify/index.js":{"bytesInOutput":13607},"packages/common/node-std/src/path.js":{"bytesInOutput":137}},"bytes":14828},"packages/common/node-std/dist/lib/browser/stream.mjs.map":{"imports":[],"exports":[],"inputs":{},"bytes":312},"packages/common/node-std/dist/lib/browser/stream.mjs":{"imports":[{"path":"packages/common/node-std/dist/lib/browser/chunk-MJPHVYKR.mjs","kind":"import-statement"},{"path":"readable-stream","kind":"import-statement","external":true}],"exports":["Duplex","PassThrough","Readable","Stream","Transform","Writable","pipeline"],"entryPoint":"packages/common/node-std/src/stream.js","inputs":{"packages/common/node-std/src/stream.js":{"bytesInOutput":104}},"bytes":309},"packages/common/node-std/dist/lib/browser/util.mjs.map":{"imports":[],"exports":[],"inputs":{},"bytes":411},"packages/common/node-std/dist/lib/browser/util.mjs":{"imports":[{"path":"packages/common/node-std/dist/lib/browser/chunk-RGVVW7F2.mjs","kind":"import-statement"},{"path":"packages/common/node-std/dist/lib/browser/chunk-P5GBL7TE.mjs","kind":"import-statement"},{"path":"packages/common/node-std/dist/lib/browser/chunk-QWZSWMMO.mjs","kind":"import-statement"},{"path":"packages/common/node-std/dist/lib/browser/chunk-HFGMGNFE.mjs","kind":"import-statement"},{"path":"packages/common/node-std/dist/lib/browser/chunk-MJPHVYKR.mjs","kind":"import-statement"}],"exports":["callbackify","default","inspect","promisify"],"entryPoint":"packages/common/node-std/src/util.js","inputs":{"packages/common/node-std/src/util.js":{"bytesInOutput":127}},"bytes":678},"packages/common/node-std/dist/lib/browser/_/config.mjs.map":{"imports":[],"exports":[],"inputs":{},"bytes":539},"packages/common/node-std/dist/lib/browser/_/config.mjs":{"imports":[{"path":"packages/common/node-std/dist/lib/browser/chunk-MJPHVYKR.mjs","kind":"import-statement"}],"exports":["GLOBALS","MODULES"],"entryPoint":"packages/common/node-std/src/_/config.js","inputs":{"packages/common/node-std/src/_/config.js":{"bytesInOutput":183}},"bytes":329},"packages/common/node-std/dist/lib/browser/assert.mjs.map":{"imports":[],"exports":[],"inputs":{},"bytes":131263},"packages/common/node-std/dist/lib/browser/assert.mjs":{"imports":[{"path":"packages/common/node-std/dist/lib/browser/chunk-RGVVW7F2.mjs","kind":"import-statement"},{"path":"packages/common/node-std/dist/lib/browser/chunk-MJPHVYKR.mjs","kind":"import-statement"}],"exports":["default"],"entryPoint":"packages/common/node-std/src/assert.js","inputs":{"node_modules/.pnpm/assert@2.0.0/node_modules/assert/build/internal/errors.js":{"bytesInOutput":7067},"node_modules/.pnpm/assert@2.0.0/node_modules/assert/build/internal/assert/assertion_error.js":{"bytesInOutput":19460},"node_modules/.pnpm/es6-object-assign@1.1.0/node_modules/es6-object-assign/index.js":{"bytesInOutput":1277},"node_modules/.pnpm/object-keys@1.1.1/node_modules/object-keys/isArguments.js":{"bytesInOutput":599},"node_modules/.pnpm/object-keys@1.1.1/node_modules/object-keys/implementation.js":{"bytesInOutput":4172},"node_modules/.pnpm/object-keys@1.1.1/node_modules/object-keys/index.js":{"bytesInOutput":1044},"node_modules/.pnpm/define-properties@1.2.1/node_modules/define-properties/index.js":{"bytesInOutput":1603},"node_modules/.pnpm/object-is@1.1.5/node_modules/object-is/implementation.js":{"bytesInOutput":510},"node_modules/.pnpm/object-is@1.1.5/node_modules/object-is/polyfill.js":{"bytesInOutput":335},"node_modules/.pnpm/object-is@1.1.5/node_modules/object-is/shim.js":{"bytesInOutput":488},"node_modules/.pnpm/object-is@1.1.5/node_modules/object-is/index.js":{"bytesInOutput":530},"node_modules/.pnpm/is-nan@1.3.2/node_modules/is-nan/implementation.js":{"bytesInOutput":244},"node_modules/.pnpm/is-nan@1.3.2/node_modules/is-nan/polyfill.js":{"bytesInOutput":390},"node_modules/.pnpm/is-nan@1.3.2/node_modules/is-nan/shim.js":{"bytesInOutput":493},"node_modules/.pnpm/is-nan@1.3.2/node_modules/is-nan/index.js":{"bytesInOutput":524},"node_modules/.pnpm/assert@2.0.0/node_modules/assert/build/internal/util/comparisons.js":{"bytesInOutput":17976},"node_modules/.pnpm/assert@2.0.0/node_modules/assert/build/assert.js":{"bytesInOutput":16914},"packages/common/node-std/src/assert.js":{"bytesInOutput":91}},"bytes":75632},"packages/common/node-std/dist/lib/browser/chunk-RGVVW7F2.mjs.map":{"imports":[],"exports":[],"inputs":{},"bytes":121434},"packages/common/node-std/dist/lib/browser/chunk-RGVVW7F2.mjs":{"imports":[{"path":"packages/common/node-std/dist/lib/browser/chunk-MJPHVYKR.mjs","kind":"import-statement"}],"exports":["require_call_bind","require_call_bind2","require_define_data_property","require_has_property_descriptors","require_util"],"inputs":{"node_modules/.pnpm/has-symbols@1.0.3/node_modules/has-symbols/shams.js":{"bytesInOutput":1620},"node_modules/.pnpm/has-tostringtag@1.0.0/node_modules/has-tostringtag/shams.js":{"bytesInOutput":312},"node_modules/.pnpm/has-symbols@1.0.3/node_modules/has-symbols/index.js":{"bytesInOutput":656},"node_modules/.pnpm/has-proto@1.0.1/node_modules/has-proto/index.js":{"bytesInOutput":363},"node_modules/.pnpm/function-bind@1.1.2/node_modules/function-bind/implementation.js":{"bytesInOutput":2246},"node_modules/.pnpm/function-bind@1.1.2/node_modules/function-bind/index.js":{"bytesInOutput":280},"node_modules/.pnpm/hasown@2.0.0/node_modules/hasown/index.js":{"bytesInOutput":322},"node_modules/.pnpm/get-intrinsic@1.2.2/node_modules/get-intrinsic/index.js":{"bytesInOutput":14029},"node_modules/.pnpm/has-property-descriptors@1.0.0/node_modules/has-property-descriptors/index.js":{"bytesInOutput":940},"node_modules/.pnpm/gopd@1.0.1/node_modules/gopd/index.js":{"bytesInOutput":401},"node_modules/.pnpm/define-data-property@1.1.1/node_modules/define-data-property/index.js":{"bytesInOutput":2777},"node_modules/.pnpm/set-function-length@1.1.1/node_modules/set-function-length/index.js":{"bytesInOutput":1509},"node_modules/.pnpm/call-bind@1.0.5/node_modules/call-bind/index.js":{"bytesInOutput":1467},"node_modules/.pnpm/call-bind@1.0.5/node_modules/call-bind/callBound.js":{"bytesInOutput":603},"node_modules/.pnpm/is-arguments@1.1.1/node_modules/is-arguments/index.js":{"bytesInOutput":1155},"node_modules/.pnpm/is-generator-function@1.0.10/node_modules/is-generator-function/index.js":{"bytesInOutput":1254},"node_modules/.pnpm/is-callable@1.2.7/node_modules/is-callable/index.js":{"bytesInOutput":3544},"node_modules/.pnpm/for-each@0.3.3/node_modules/for-each/index.js":{"bytesInOutput":1892},"node_modules/.pnpm/available-typed-arrays@1.0.5/node_modules/available-typed-arrays/index.js":{"bytesInOutput":808},"node_modules/.pnpm/call-bind@1.0.2/node_modules/call-bind/index.js":{"bytesInOutput":1492},"node_modules/.pnpm/call-bind@1.0.2/node_modules/call-bind/callBound.js":{"bytesInOutput":605},"node_modules/.pnpm/es-abstract@1.20.4/node_modules/es-abstract/helpers/getOwnPropertyDescriptor.js":{"bytesInOutput":463},"node_modules/.pnpm/which-typed-array@1.1.13/node_modules/which-typed-array/index.js":{"bytesInOutput":2924},"node_modules/.pnpm/is-typed-array@1.1.12/node_modules/is-typed-array/index.js":{"bytesInOutput":322},"node_modules/.pnpm/which-typed-array@1.1.8/node_modules/which-typed-array/index.js":{"bytesInOutput":2051},"node_modules/.pnpm/is-typed-array@1.1.9/node_modules/is-typed-array/index.js":{"bytesInOutput":2191},"node_modules/.pnpm/util@0.12.5/node_modules/util/support/types.js":{"bytesInOutput":9162},"node_modules/.pnpm/util@0.12.5/node_modules/util/support/isBufferBrowser.js":{"bytesInOutput":355},"node_modules/.pnpm/inherits@2.0.4/node_modules/inherits/inherits_browser.js":{"bytesInOutput":928},"node_modules/.pnpm/util@0.12.5/node_modules/util/util.js":{"bytesInOutput":17780}},"bytes":77086},"packages/common/node-std/dist/lib/browser/buffer.mjs.map":{"imports":[],"exports":[],"inputs":{},"bytes":212},"packages/common/node-std/dist/lib/browser/buffer.mjs":{"imports":[{"path":"packages/common/node-std/dist/lib/browser/chunk-HFGMGNFE.mjs","kind":"import-statement"},{"path":"packages/common/node-std/dist/lib/browser/chunk-MJPHVYKR.mjs","kind":"import-statement"}],"exports":["Buffer"],"entryPoint":"packages/common/node-std/src/buffer.js","inputs":{"packages/common/node-std/src/buffer.js":{"bytesInOutput":47}},"bytes":313},"packages/common/node-std/dist/lib/browser/crypto.mjs.map":{"imports":[],"exports":[],"inputs":{},"bytes":308},"packages/common/node-std/dist/lib/browser/crypto.mjs":{"imports":[{"path":"packages/common/node-std/dist/lib/browser/chunk-MJPHVYKR.mjs","kind":"import-statement"}],"exports":["randomBytes"],"entryPoint":"packages/common/node-std/src/crypto.js","inputs":{"packages/common/node-std/src/crypto.js":{"bytesInOutput":82}},"bytes":218},"packages/common/node-std/dist/lib/browser/events.mjs.map":{"imports":[],"exports":[],"inputs":{},"bytes":24175},"packages/common/node-std/dist/lib/browser/events.mjs":{"imports":[{"path":"packages/common/node-std/dist/lib/browser/chunk-MJPHVYKR.mjs","kind":"import-statement"}],"exports":["EventEmitter","default"],"entryPoint":"packages/common/node-std/src/events.js","inputs":{"node_modules/.pnpm/events@3.3.0/node_modules/events/events.js":{"bytesInOutput":13194},"packages/common/node-std/src/events.js":{"bytesInOutput":114}},"bytes":13650},"packages/common/node-std/dist/lib/browser/fs.mjs.map":{"imports":[],"exports":[],"inputs":{},"bytes":675},"packages/common/node-std/dist/lib/browser/fs.mjs":{"imports":[{"path":"packages/common/node-std/dist/lib/browser/chunk-MJPHVYKR.mjs","kind":"import-statement"}],"exports":["appendFileSync","existsSync","mkdirSync","openSync","statSync"],"entryPoint":"packages/common/node-std/src/fs.js","inputs":{"packages/common/node-std/src/fs.js":{"bytesInOutput":277}},"bytes":459},"packages/common/node-std/dist/lib/browser/fs/promises.mjs.map":{"imports":[],"exports":[],"inputs":{},"bytes":2439},"packages/common/node-std/dist/lib/browser/fs/promises.mjs":{"imports":[{"path":"packages/common/node-std/dist/lib/browser/chunk-MJPHVYKR.mjs","kind":"import-statement"}],"exports":["access","appendFile","chmod","chown","copyFile","cp","lchmod","lchown","link","lstat","lutimes","mkdir","mkdtemp","open","opendir","readFile","readdir","readlink","realpath","rename","rm","rmdir","stat","symlink","to","truncate","unlink","utimes","watch","writeFile"],"entryPoint":"packages/common/node-std/src/fs/promises.js","inputs":{"packages/common/node-std/src/fs/promises.js":{"bytesInOutput":1131}},"bytes":1558},"packages/common/node-std/dist/lib/browser/globals.mjs.map":{"imports":[],"exports":[],"inputs":{},"bytes":93},"packages/common/node-std/dist/lib/browser/globals.mjs":{"imports":[{"path":"packages/common/node-std/dist/lib/browser/chunk-P5GBL7TE.mjs","kind":"import-statement"},{"path":"packages/common/node-std/dist/lib/browser/chunk-QWZSWMMO.mjs","kind":"import-statement"},{"path":"packages/common/node-std/dist/lib/browser/chunk-HFGMGNFE.mjs","kind":"import-statement"},{"path":"packages/common/node-std/dist/lib/browser/chunk-MJPHVYKR.mjs","kind":"import-statement"}],"exports":[],"entryPoint":"packages/common/node-std/src/globals.js","inputs":{},"bytes":161},"packages/common/node-std/dist/lib/browser/chunk-P5GBL7TE.mjs.map":{"imports":[],"exports":[],"inputs":{},"bytes":399},"packages/common/node-std/dist/lib/browser/chunk-P5GBL7TE.mjs":{"imports":[{"path":"packages/common/node-std/dist/lib/browser/chunk-QWZSWMMO.mjs","kind":"import-statement"},{"path":"packages/common/node-std/dist/lib/browser/chunk-HFGMGNFE.mjs","kind":"import-statement"},{"path":"packages/common/node-std/dist/lib/browser/chunk-MJPHVYKR.mjs","kind":"import-statement"}],"exports":[],"inputs":{"packages/common/node-std/src/globals.js":{"bytesInOutput":151}},"bytes":396},"packages/common/node-std/dist/lib/browser/chunk-QWZSWMMO.mjs.map":{"imports":[],"exports":[],"inputs":{},"bytes":5258},"packages/common/node-std/dist/lib/browser/chunk-QWZSWMMO.mjs":{"imports":[],"exports":["process"],"inputs":{"packages/common/node-std/src/process.js":{"bytesInOutput":2367}},"bytes":2477},"packages/common/node-std/dist/lib/browser/chunk-HFGMGNFE.mjs.map":{"imports":[],"exports":[],"inputs":{},"bytes":111174},"packages/common/node-std/dist/lib/browser/chunk-HFGMGNFE.mjs":{"imports":[{"path":"packages/common/node-std/dist/lib/browser/chunk-MJPHVYKR.mjs","kind":"import-statement"}],"exports":["require_buffer"],"inputs":{"node_modules/.pnpm/base64-js@1.5.1/node_modules/base64-js/index.js":{"bytesInOutput":3735},"node_modules/.pnpm/ieee754@1.2.1/node_modules/ieee754/index.js":{"bytesInOutput":2505},"node_modules/.pnpm/buffer@6.0.3/node_modules/buffer/index.js":{"bytesInOutput":57845}},"bytes":64726},"packages/common/node-std/dist/lib/browser/chunk-MJPHVYKR.mjs.map":{"imports":[],"exports":[],"inputs":{},"bytes":93},"packages/common/node-std/dist/lib/browser/chunk-MJPHVYKR.mjs":{"imports":[],"exports":["__commonJS","__toESM"],"inputs":{},"bytes":1401}}}
|
|
1
|
+
{"inputs":{"packages/common/node-std/src/_/config.js":{"bytes":237,"imports":[],"format":"esm"},"node_modules/.pnpm/has-symbols@1.0.3/node_modules/has-symbols/shams.js":{"bytes":1761,"imports":[],"format":"cjs"},"node_modules/.pnpm/has-tostringtag@1.0.0/node_modules/has-tostringtag/shams.js":{"bytes":162,"imports":[{"path":"node_modules/.pnpm/has-symbols@1.0.3/node_modules/has-symbols/shams.js","kind":"require-call","original":"has-symbols/shams"}],"format":"cjs"},"node_modules/.pnpm/has-symbols@1.0.3/node_modules/has-symbols/index.js":{"bytes":420,"imports":[{"path":"node_modules/.pnpm/has-symbols@1.0.3/node_modules/has-symbols/shams.js","kind":"require-call","original":"./shams"}],"format":"cjs"},"node_modules/.pnpm/has-proto@1.0.1/node_modules/has-proto/index.js":{"bytes":197,"imports":[],"format":"cjs"},"node_modules/.pnpm/function-bind@1.1.2/node_modules/function-bind/implementation.js":{"bytes":2043,"imports":[],"format":"cjs"},"node_modules/.pnpm/function-bind@1.1.2/node_modules/function-bind/index.js":{"bytes":126,"imports":[{"path":"node_modules/.pnpm/function-bind@1.1.2/node_modules/function-bind/implementation.js","kind":"require-call","original":"./implementation"}],"format":"cjs"},"node_modules/.pnpm/hasown@2.0.0/node_modules/hasown/index.js":{"bytes":234,"imports":[{"path":"node_modules/.pnpm/function-bind@1.1.2/node_modules/function-bind/index.js","kind":"require-call","original":"function-bind"}],"format":"cjs"},"node_modules/.pnpm/get-intrinsic@1.2.2/node_modules/get-intrinsic/index.js":{"bytes":13326,"imports":[{"path":"node_modules/.pnpm/has-symbols@1.0.3/node_modules/has-symbols/index.js","kind":"require-call","original":"has-symbols"},{"path":"node_modules/.pnpm/has-proto@1.0.1/node_modules/has-proto/index.js","kind":"require-call","original":"has-proto"},{"path":"node_modules/.pnpm/function-bind@1.1.2/node_modules/function-bind/index.js","kind":"require-call","original":"function-bind"},{"path":"node_modules/.pnpm/hasown@2.0.0/node_modules/hasown/index.js","kind":"require-call","original":"hasown"}],"format":"cjs"},"node_modules/.pnpm/has-property-descriptors@1.0.0/node_modules/has-property-descriptors/index.js":{"bytes":817,"imports":[{"path":"node_modules/.pnpm/get-intrinsic@1.2.2/node_modules/get-intrinsic/index.js","kind":"require-call","original":"get-intrinsic"}],"format":"cjs"},"node_modules/.pnpm/gopd@1.0.1/node_modules/gopd/index.js":{"bytes":263,"imports":[{"path":"node_modules/.pnpm/get-intrinsic@1.2.2/node_modules/get-intrinsic/index.js","kind":"require-call","original":"get-intrinsic"}],"format":"cjs"},"node_modules/.pnpm/define-data-property@1.1.1/node_modules/define-data-property/index.js":{"bytes":2838,"imports":[{"path":"node_modules/.pnpm/has-property-descriptors@1.0.0/node_modules/has-property-descriptors/index.js","kind":"require-call","original":"has-property-descriptors"},{"path":"node_modules/.pnpm/get-intrinsic@1.2.2/node_modules/get-intrinsic/index.js","kind":"require-call","original":"get-intrinsic"},{"path":"node_modules/.pnpm/gopd@1.0.1/node_modules/gopd/index.js","kind":"require-call","original":"gopd"}],"format":"cjs"},"node_modules/.pnpm/set-function-length@1.1.1/node_modules/set-function-length/index.js":{"bytes":1170,"imports":[{"path":"node_modules/.pnpm/get-intrinsic@1.2.2/node_modules/get-intrinsic/index.js","kind":"require-call","original":"get-intrinsic"},{"path":"node_modules/.pnpm/define-data-property@1.1.1/node_modules/define-data-property/index.js","kind":"require-call","original":"define-data-property"},{"path":"node_modules/.pnpm/has-property-descriptors@1.0.0/node_modules/has-property-descriptors/index.js","kind":"require-call","original":"has-property-descriptors"},{"path":"node_modules/.pnpm/gopd@1.0.1/node_modules/gopd/index.js","kind":"require-call","original":"gopd"}],"format":"cjs"},"node_modules/.pnpm/call-bind@1.0.5/node_modules/call-bind/index.js":{"bytes":1212,"imports":[{"path":"node_modules/.pnpm/function-bind@1.1.2/node_modules/function-bind/index.js","kind":"require-call","original":"function-bind"},{"path":"node_modules/.pnpm/get-intrinsic@1.2.2/node_modules/get-intrinsic/index.js","kind":"require-call","original":"get-intrinsic"},{"path":"node_modules/.pnpm/set-function-length@1.1.1/node_modules/set-function-length/index.js","kind":"require-call","original":"set-function-length"}],"format":"cjs"},"node_modules/.pnpm/call-bind@1.0.5/node_modules/call-bind/callBound.js":{"bytes":413,"imports":[{"path":"node_modules/.pnpm/get-intrinsic@1.2.2/node_modules/get-intrinsic/index.js","kind":"require-call","original":"get-intrinsic"},{"path":"node_modules/.pnpm/call-bind@1.0.5/node_modules/call-bind/index.js","kind":"require-call","original":"./"}],"format":"cjs"},"node_modules/.pnpm/is-arguments@1.1.1/node_modules/is-arguments/index.js":{"bytes":976,"imports":[{"path":"node_modules/.pnpm/has-tostringtag@1.0.0/node_modules/has-tostringtag/shams.js","kind":"require-call","original":"has-tostringtag/shams"},{"path":"node_modules/.pnpm/call-bind@1.0.5/node_modules/call-bind/callBound.js","kind":"require-call","original":"call-bind/callBound"}],"format":"cjs"},"node_modules/.pnpm/is-generator-function@1.0.10/node_modules/is-generator-function/index.js":{"bytes":964,"imports":[{"path":"node_modules/.pnpm/has-tostringtag@1.0.0/node_modules/has-tostringtag/shams.js","kind":"require-call","original":"has-tostringtag/shams"}],"format":"cjs"},"node_modules/.pnpm/is-callable@1.2.7/node_modules/is-callable/index.js":{"bytes":3224,"imports":[],"format":"cjs"},"node_modules/.pnpm/for-each@0.3.3/node_modules/for-each/index.js":{"bytes":1761,"imports":[{"path":"node_modules/.pnpm/is-callable@1.2.7/node_modules/is-callable/index.js","kind":"require-call","original":"is-callable"}],"format":"cjs"},"node_modules/.pnpm/available-typed-arrays@1.0.5/node_modules/available-typed-arrays/index.js":{"bytes":519,"imports":[],"format":"cjs"},"node_modules/.pnpm/call-bind@1.0.2/node_modules/call-bind/index.js":{"bytes":1306,"imports":[{"path":"node_modules/.pnpm/function-bind@1.1.2/node_modules/function-bind/index.js","kind":"require-call","original":"function-bind"},{"path":"node_modules/.pnpm/get-intrinsic@1.2.2/node_modules/get-intrinsic/index.js","kind":"require-call","original":"get-intrinsic"}],"format":"cjs"},"node_modules/.pnpm/call-bind@1.0.2/node_modules/call-bind/callBound.js":{"bytes":413,"imports":[{"path":"node_modules/.pnpm/get-intrinsic@1.2.2/node_modules/get-intrinsic/index.js","kind":"require-call","original":"get-intrinsic"},{"path":"node_modules/.pnpm/call-bind@1.0.2/node_modules/call-bind/index.js","kind":"require-call","original":"./"}],"format":"cjs"},"node_modules/.pnpm/es-abstract@1.20.4/node_modules/es-abstract/helpers/getOwnPropertyDescriptor.js":{"bytes":262,"imports":[{"path":"node_modules/.pnpm/get-intrinsic@1.2.2/node_modules/get-intrinsic/index.js","kind":"require-call","original":"get-intrinsic"}],"format":"cjs"},"node_modules/.pnpm/which-typed-array@1.1.13/node_modules/which-typed-array/index.js":{"bytes":2406,"imports":[{"path":"node_modules/.pnpm/for-each@0.3.3/node_modules/for-each/index.js","kind":"require-call","original":"for-each"},{"path":"node_modules/.pnpm/available-typed-arrays@1.0.5/node_modules/available-typed-arrays/index.js","kind":"require-call","original":"available-typed-arrays"},{"path":"node_modules/.pnpm/call-bind@1.0.5/node_modules/call-bind/index.js","kind":"require-call","original":"call-bind"},{"path":"node_modules/.pnpm/call-bind@1.0.5/node_modules/call-bind/callBound.js","kind":"require-call","original":"call-bind/callBound"},{"path":"node_modules/.pnpm/gopd@1.0.1/node_modules/gopd/index.js","kind":"require-call","original":"gopd"},{"path":"node_modules/.pnpm/has-tostringtag@1.0.0/node_modules/has-tostringtag/shams.js","kind":"require-call","original":"has-tostringtag/shams"}],"format":"cjs"},"node_modules/.pnpm/is-typed-array@1.1.12/node_modules/is-typed-array/index.js":{"bytes":153,"imports":[{"path":"node_modules/.pnpm/which-typed-array@1.1.13/node_modules/which-typed-array/index.js","kind":"require-call","original":"which-typed-array"}],"format":"cjs"},"node_modules/.pnpm/which-typed-array@1.1.8/node_modules/which-typed-array/index.js":{"bytes":1670,"imports":[{"path":"node_modules/.pnpm/for-each@0.3.3/node_modules/for-each/index.js","kind":"require-call","original":"for-each"},{"path":"node_modules/.pnpm/available-typed-arrays@1.0.5/node_modules/available-typed-arrays/index.js","kind":"require-call","original":"available-typed-arrays"},{"path":"node_modules/.pnpm/call-bind@1.0.2/node_modules/call-bind/callBound.js","kind":"require-call","original":"call-bind/callBound"},{"path":"node_modules/.pnpm/has-tostringtag@1.0.0/node_modules/has-tostringtag/shams.js","kind":"require-call","original":"has-tostringtag/shams"},{"path":"node_modules/.pnpm/es-abstract@1.20.4/node_modules/es-abstract/helpers/getOwnPropertyDescriptor.js","kind":"require-call","original":"es-abstract/helpers/getOwnPropertyDescriptor"},{"path":"node_modules/.pnpm/is-typed-array@1.1.12/node_modules/is-typed-array/index.js","kind":"require-call","original":"is-typed-array"}],"format":"cjs"},"node_modules/.pnpm/is-typed-array@1.1.9/node_modules/is-typed-array/index.js":{"bytes":1810,"imports":[{"path":"node_modules/.pnpm/for-each@0.3.3/node_modules/for-each/index.js","kind":"require-call","original":"for-each"},{"path":"node_modules/.pnpm/available-typed-arrays@1.0.5/node_modules/available-typed-arrays/index.js","kind":"require-call","original":"available-typed-arrays"},{"path":"node_modules/.pnpm/call-bind@1.0.2/node_modules/call-bind/callBound.js","kind":"require-call","original":"call-bind/callBound"},{"path":"node_modules/.pnpm/has-tostringtag@1.0.0/node_modules/has-tostringtag/shams.js","kind":"require-call","original":"has-tostringtag/shams"},{"path":"node_modules/.pnpm/es-abstract@1.20.4/node_modules/es-abstract/helpers/getOwnPropertyDescriptor.js","kind":"require-call","original":"es-abstract/helpers/getOwnPropertyDescriptor"}],"format":"cjs"},"node_modules/.pnpm/util@0.12.5/node_modules/util/support/types.js":{"bytes":8672,"imports":[{"path":"node_modules/.pnpm/is-arguments@1.1.1/node_modules/is-arguments/index.js","kind":"require-call","original":"is-arguments"},{"path":"node_modules/.pnpm/is-generator-function@1.0.10/node_modules/is-generator-function/index.js","kind":"require-call","original":"is-generator-function"},{"path":"node_modules/.pnpm/which-typed-array@1.1.8/node_modules/which-typed-array/index.js","kind":"require-call","original":"which-typed-array"},{"path":"node_modules/.pnpm/is-typed-array@1.1.9/node_modules/is-typed-array/index.js","kind":"require-call","original":"is-typed-array"}],"format":"cjs"},"node_modules/.pnpm/util@0.12.5/node_modules/util/support/isBufferBrowser.js":{"bytes":203,"imports":[],"format":"cjs"},"node_modules/.pnpm/inherits@2.0.4/node_modules/inherits/inherits_browser.js":{"bytes":753,"imports":[],"format":"cjs"},"node_modules/.pnpm/util@0.12.5/node_modules/util/util.js":{"bytes":19697,"imports":[{"path":"node_modules/.pnpm/util@0.12.5/node_modules/util/support/types.js","kind":"require-call","original":"./support/types"},{"path":"node_modules/.pnpm/util@0.12.5/node_modules/util/support/isBufferBrowser.js","kind":"require-call","original":"./support/isBuffer"},{"path":"node_modules/.pnpm/inherits@2.0.4/node_modules/inherits/inherits_browser.js","kind":"require-call","original":"inherits"}],"format":"cjs"},"node_modules/.pnpm/assert@2.0.0/node_modules/assert/build/internal/errors.js":{"bytes":7309,"imports":[{"path":"node_modules/.pnpm/assert@2.0.0/node_modules/assert/build/assert.js","kind":"require-call","original":"../assert"},{"path":"node_modules/.pnpm/util@0.12.5/node_modules/util/util.js","kind":"require-call","original":"util/"},{"path":"node_modules/.pnpm/assert@2.0.0/node_modules/assert/build/assert.js","kind":"require-call","original":"../assert"}],"format":"cjs"},"node_modules/.pnpm/assert@2.0.0/node_modules/assert/build/internal/assert/assertion_error.js":{"bytes":21906,"imports":[{"path":"node_modules/.pnpm/util@0.12.5/node_modules/util/util.js","kind":"require-call","original":"util/"},{"path":"node_modules/.pnpm/assert@2.0.0/node_modules/assert/build/internal/errors.js","kind":"require-call","original":"../errors"}],"format":"cjs"},"node_modules/.pnpm/es6-object-assign@1.1.0/node_modules/es6-object-assign/index.js":{"bytes":1164,"imports":[],"format":"cjs"},"node_modules/.pnpm/object-keys@1.1.1/node_modules/object-keys/isArguments.js":{"bytes":422,"imports":[],"format":"cjs"},"node_modules/.pnpm/object-keys@1.1.1/node_modules/object-keys/implementation.js":{"bytes":3218,"imports":[{"path":"node_modules/.pnpm/object-keys@1.1.1/node_modules/object-keys/isArguments.js","kind":"require-call","original":"./isArguments"}],"format":"cjs"},"node_modules/.pnpm/object-keys@1.1.1/node_modules/object-keys/index.js":{"bytes":823,"imports":[{"path":"node_modules/.pnpm/object-keys@1.1.1/node_modules/object-keys/isArguments.js","kind":"require-call","original":"./isArguments"},{"path":"node_modules/.pnpm/object-keys@1.1.1/node_modules/object-keys/implementation.js","kind":"require-call","original":"./implementation"}],"format":"cjs"},"node_modules/.pnpm/define-properties@1.2.1/node_modules/define-properties/index.js":{"bytes":1268,"imports":[{"path":"node_modules/.pnpm/object-keys@1.1.1/node_modules/object-keys/index.js","kind":"require-call","original":"object-keys"},{"path":"node_modules/.pnpm/define-data-property@1.1.1/node_modules/define-data-property/index.js","kind":"require-call","original":"define-data-property"},{"path":"node_modules/.pnpm/has-property-descriptors@1.0.0/node_modules/has-property-descriptors/index.js","kind":"require-call","original":"has-property-descriptors"}],"format":"cjs"},"node_modules/.pnpm/object-is@1.1.5/node_modules/object-is/implementation.js":{"bytes":286,"imports":[],"format":"cjs"},"node_modules/.pnpm/object-is@1.1.5/node_modules/object-is/polyfill.js":{"bytes":181,"imports":[{"path":"node_modules/.pnpm/object-is@1.1.5/node_modules/object-is/implementation.js","kind":"require-call","original":"./implementation"}],"format":"cjs"},"node_modules/.pnpm/object-is@1.1.5/node_modules/object-is/shim.js":{"bytes":306,"imports":[{"path":"node_modules/.pnpm/object-is@1.1.5/node_modules/object-is/polyfill.js","kind":"require-call","original":"./polyfill"},{"path":"node_modules/.pnpm/define-properties@1.2.1/node_modules/define-properties/index.js","kind":"require-call","original":"define-properties"}],"format":"cjs"},"node_modules/.pnpm/object-is@1.1.5/node_modules/object-is/index.js":{"bytes":390,"imports":[{"path":"node_modules/.pnpm/define-properties@1.2.1/node_modules/define-properties/index.js","kind":"require-call","original":"define-properties"},{"path":"node_modules/.pnpm/call-bind@1.0.5/node_modules/call-bind/index.js","kind":"require-call","original":"call-bind"},{"path":"node_modules/.pnpm/object-is@1.1.5/node_modules/object-is/implementation.js","kind":"require-call","original":"./implementation"},{"path":"node_modules/.pnpm/object-is@1.1.5/node_modules/object-is/polyfill.js","kind":"require-call","original":"./polyfill"},{"path":"node_modules/.pnpm/object-is@1.1.5/node_modules/object-is/shim.js","kind":"require-call","original":"./shim"}],"format":"cjs"},"node_modules/.pnpm/is-nan@1.3.2/node_modules/is-nan/implementation.js":{"bytes":156,"imports":[],"format":"cjs"},"node_modules/.pnpm/is-nan@1.3.2/node_modules/is-nan/polyfill.js":{"bytes":225,"imports":[{"path":"node_modules/.pnpm/is-nan@1.3.2/node_modules/is-nan/implementation.js","kind":"require-call","original":"./implementation"}],"format":"cjs"},"node_modules/.pnpm/is-nan@1.3.2/node_modules/is-nan/shim.js":{"bytes":387,"imports":[{"path":"node_modules/.pnpm/define-properties@1.2.1/node_modules/define-properties/index.js","kind":"require-call","original":"define-properties"},{"path":"node_modules/.pnpm/is-nan@1.3.2/node_modules/is-nan/polyfill.js","kind":"require-call","original":"./polyfill"}],"format":"cjs"},"node_modules/.pnpm/is-nan@1.3.2/node_modules/is-nan/index.js":{"bytes":462,"imports":[{"path":"node_modules/.pnpm/call-bind@1.0.2/node_modules/call-bind/index.js","kind":"require-call","original":"call-bind"},{"path":"node_modules/.pnpm/define-properties@1.2.1/node_modules/define-properties/index.js","kind":"require-call","original":"define-properties"},{"path":"node_modules/.pnpm/is-nan@1.3.2/node_modules/is-nan/implementation.js","kind":"require-call","original":"./implementation"},{"path":"node_modules/.pnpm/is-nan@1.3.2/node_modules/is-nan/polyfill.js","kind":"require-call","original":"./polyfill"},{"path":"node_modules/.pnpm/is-nan@1.3.2/node_modules/is-nan/shim.js","kind":"require-call","original":"./shim"}],"format":"cjs"},"node_modules/.pnpm/assert@2.0.0/node_modules/assert/build/internal/util/comparisons.js":{"bytes":20712,"imports":[{"path":"node_modules/.pnpm/object-is@1.1.5/node_modules/object-is/index.js","kind":"require-call","original":"object-is"},{"path":"node_modules/.pnpm/is-nan@1.3.2/node_modules/is-nan/index.js","kind":"require-call","original":"is-nan"},{"path":"node_modules/.pnpm/util@0.12.5/node_modules/util/util.js","kind":"require-call","original":"util/"}],"format":"cjs"},"node_modules/.pnpm/assert@2.0.0/node_modules/assert/build/assert.js":{"bytes":19500,"imports":[{"path":"node_modules/.pnpm/assert@2.0.0/node_modules/assert/build/internal/errors.js","kind":"require-call","original":"./internal/errors"},{"path":"node_modules/.pnpm/assert@2.0.0/node_modules/assert/build/internal/assert/assertion_error.js","kind":"require-call","original":"./internal/assert/assertion_error"},{"path":"node_modules/.pnpm/util@0.12.5/node_modules/util/util.js","kind":"require-call","original":"util/"},{"path":"node_modules/.pnpm/util@0.12.5/node_modules/util/util.js","kind":"require-call","original":"util/"},{"path":"node_modules/.pnpm/es6-object-assign@1.1.0/node_modules/es6-object-assign/index.js","kind":"require-call","original":"es6-object-assign"},{"path":"node_modules/.pnpm/object-is@1.1.5/node_modules/object-is/index.js","kind":"require-call","original":"object-is"},{"path":"node_modules/.pnpm/assert@2.0.0/node_modules/assert/build/internal/util/comparisons.js","kind":"require-call","original":"./internal/util/comparisons"}],"format":"cjs"},"packages/common/node-std/src/assert.js":{"bytes":326,"imports":[{"path":"node_modules/.pnpm/assert@2.0.0/node_modules/assert/build/assert.js","kind":"import-statement","original":"assert"}],"format":"esm"},"node_modules/.pnpm/base64-js@1.5.1/node_modules/base64-js/index.js":{"bytes":3932,"imports":[],"format":"cjs"},"node_modules/.pnpm/ieee754@1.2.1/node_modules/ieee754/index.js":{"bytes":2154,"imports":[],"format":"cjs"},"node_modules/.pnpm/buffer@6.0.3/node_modules/buffer/index.js":{"bytes":58353,"imports":[{"path":"node_modules/.pnpm/base64-js@1.5.1/node_modules/base64-js/index.js","kind":"require-call","original":"base64-js"},{"path":"node_modules/.pnpm/ieee754@1.2.1/node_modules/ieee754/index.js","kind":"require-call","original":"ieee754"}],"format":"cjs"},"packages/common/node-std/src/buffer.js":{"bytes":68,"imports":[{"path":"node_modules/.pnpm/buffer@6.0.3/node_modules/buffer/index.js","kind":"import-statement","original":"buffer/"}],"format":"esm"},"packages/common/node-std/src/crypto.js":{"bytes":125,"imports":[],"format":"esm"},"node_modules/.pnpm/events@3.3.0/node_modules/events/events.js":{"bytes":14890,"imports":[],"format":"cjs"},"packages/common/node-std/src/events.js":{"bytes":133,"imports":[{"path":"node_modules/.pnpm/events@3.3.0/node_modules/events/events.js","kind":"import-statement","original":"events"}],"format":"esm"},"packages/common/node-std/src/fs.js":{"bytes":449,"imports":[],"format":"esm"},"packages/common/node-std/src/fs/promises.js":{"bytes":1438,"imports":[],"format":"esm"},"packages/common/node-std/src/process.js":{"bytes":3094,"imports":[],"format":"esm"},"packages/common/node-std/src/globals.js":{"bytes":791,"imports":[{"path":"node_modules/.pnpm/buffer@6.0.3/node_modules/buffer/index.js","kind":"import-statement","original":"buffer/"},{"path":"packages/common/node-std/src/process.js","kind":"import-statement","original":"./process"}],"format":"esm"},"packages/common/node-std/src/inject-globals.js":{"bytes":273,"imports":[{"path":"node_modules/.pnpm/buffer@6.0.3/node_modules/buffer/index.js","kind":"import-statement","original":"buffer/"},{"path":"packages/common/node-std/src/process.js","kind":"import-statement","original":"./process"}],"format":"esm"},"node_modules/.pnpm/path-browserify@1.0.1/node_modules/path-browserify/index.js":{"bytes":16166,"imports":[],"format":"cjs"},"packages/common/node-std/src/path.js":{"bytes":243,"imports":[{"path":"node_modules/.pnpm/path-browserify@1.0.1/node_modules/path-browserify/index.js","kind":"import-statement","original":"path-browserify"},{"path":"node_modules/.pnpm/path-browserify@1.0.1/node_modules/path-browserify/index.js","kind":"import-statement","original":"path-browserify"}],"format":"esm"},"packages/common/node-std/src/stream.js":{"bytes":138,"imports":[{"path":"readable-stream","kind":"import-statement","external":true}],"format":"esm"},"packages/common/node-std/src/util.js":{"bytes":200,"imports":[{"path":"packages/common/node-std/src/globals.js","kind":"import-statement","original":"./globals"},{"path":"node_modules/.pnpm/util@0.12.5/node_modules/util/util.js","kind":"import-statement","original":"util/"},{"path":"node_modules/.pnpm/util@0.12.5/node_modules/util/util.js","kind":"import-statement","original":"util/"}],"format":"esm"}},"outputs":{"packages/common/node-std/dist/lib/browser/inject-globals.mjs.map":{"imports":[],"exports":[],"inputs":{},"bytes":453},"packages/common/node-std/dist/lib/browser/inject-globals.mjs":{"imports":[{"path":"packages/common/node-std/dist/lib/browser/chunk-QWZSWMMO.mjs","kind":"import-statement"},{"path":"packages/common/node-std/dist/lib/browser/chunk-HFGMGNFE.mjs","kind":"import-statement"},{"path":"packages/common/node-std/dist/lib/browser/chunk-MJPHVYKR.mjs","kind":"import-statement"}],"exports":["Buffer","global","process"],"entryPoint":"packages/common/node-std/src/inject-globals.js","inputs":{"packages/common/node-std/src/inject-globals.js":{"bytesInOutput":72}},"bytes":425},"packages/common/node-std/dist/lib/browser/path.mjs.map":{"imports":[],"exports":[],"inputs":{},"bytes":25649},"packages/common/node-std/dist/lib/browser/path.mjs":{"imports":[{"path":"packages/common/node-std/dist/lib/browser/chunk-MJPHVYKR.mjs","kind":"import-statement"}],"exports":["basename","default","dirname","extname","format","isAbsolute","join","normalize","parse","relative","resolve"],"entryPoint":"packages/common/node-std/src/path.js","inputs":{"node_modules/.pnpm/path-browserify@1.0.1/node_modules/path-browserify/index.js":{"bytesInOutput":13607},"packages/common/node-std/src/path.js":{"bytesInOutput":137}},"bytes":14828},"packages/common/node-std/dist/lib/browser/stream.mjs.map":{"imports":[],"exports":[],"inputs":{},"bytes":312},"packages/common/node-std/dist/lib/browser/stream.mjs":{"imports":[{"path":"packages/common/node-std/dist/lib/browser/chunk-MJPHVYKR.mjs","kind":"import-statement"},{"path":"readable-stream","kind":"import-statement","external":true}],"exports":["Duplex","PassThrough","Readable","Stream","Transform","Writable","pipeline"],"entryPoint":"packages/common/node-std/src/stream.js","inputs":{"packages/common/node-std/src/stream.js":{"bytesInOutput":104}},"bytes":309},"packages/common/node-std/dist/lib/browser/util.mjs.map":{"imports":[],"exports":[],"inputs":{},"bytes":411},"packages/common/node-std/dist/lib/browser/util.mjs":{"imports":[{"path":"packages/common/node-std/dist/lib/browser/chunk-RGVVW7F2.mjs","kind":"import-statement"},{"path":"packages/common/node-std/dist/lib/browser/chunk-CMGRJ4FC.mjs","kind":"import-statement"},{"path":"packages/common/node-std/dist/lib/browser/chunk-QWZSWMMO.mjs","kind":"import-statement"},{"path":"packages/common/node-std/dist/lib/browser/chunk-HFGMGNFE.mjs","kind":"import-statement"},{"path":"packages/common/node-std/dist/lib/browser/chunk-MJPHVYKR.mjs","kind":"import-statement"}],"exports":["callbackify","default","inspect","promisify"],"entryPoint":"packages/common/node-std/src/util.js","inputs":{"packages/common/node-std/src/util.js":{"bytesInOutput":127}},"bytes":678},"packages/common/node-std/dist/lib/browser/_/config.mjs.map":{"imports":[],"exports":[],"inputs":{},"bytes":539},"packages/common/node-std/dist/lib/browser/_/config.mjs":{"imports":[{"path":"packages/common/node-std/dist/lib/browser/chunk-MJPHVYKR.mjs","kind":"import-statement"}],"exports":["GLOBALS","MODULES"],"entryPoint":"packages/common/node-std/src/_/config.js","inputs":{"packages/common/node-std/src/_/config.js":{"bytesInOutput":183}},"bytes":329},"packages/common/node-std/dist/lib/browser/assert.mjs.map":{"imports":[],"exports":[],"inputs":{},"bytes":131263},"packages/common/node-std/dist/lib/browser/assert.mjs":{"imports":[{"path":"packages/common/node-std/dist/lib/browser/chunk-RGVVW7F2.mjs","kind":"import-statement"},{"path":"packages/common/node-std/dist/lib/browser/chunk-MJPHVYKR.mjs","kind":"import-statement"}],"exports":["default"],"entryPoint":"packages/common/node-std/src/assert.js","inputs":{"node_modules/.pnpm/assert@2.0.0/node_modules/assert/build/internal/errors.js":{"bytesInOutput":7067},"node_modules/.pnpm/assert@2.0.0/node_modules/assert/build/internal/assert/assertion_error.js":{"bytesInOutput":19460},"node_modules/.pnpm/es6-object-assign@1.1.0/node_modules/es6-object-assign/index.js":{"bytesInOutput":1277},"node_modules/.pnpm/object-keys@1.1.1/node_modules/object-keys/isArguments.js":{"bytesInOutput":599},"node_modules/.pnpm/object-keys@1.1.1/node_modules/object-keys/implementation.js":{"bytesInOutput":4172},"node_modules/.pnpm/object-keys@1.1.1/node_modules/object-keys/index.js":{"bytesInOutput":1044},"node_modules/.pnpm/define-properties@1.2.1/node_modules/define-properties/index.js":{"bytesInOutput":1603},"node_modules/.pnpm/object-is@1.1.5/node_modules/object-is/implementation.js":{"bytesInOutput":510},"node_modules/.pnpm/object-is@1.1.5/node_modules/object-is/polyfill.js":{"bytesInOutput":335},"node_modules/.pnpm/object-is@1.1.5/node_modules/object-is/shim.js":{"bytesInOutput":488},"node_modules/.pnpm/object-is@1.1.5/node_modules/object-is/index.js":{"bytesInOutput":530},"node_modules/.pnpm/is-nan@1.3.2/node_modules/is-nan/implementation.js":{"bytesInOutput":244},"node_modules/.pnpm/is-nan@1.3.2/node_modules/is-nan/polyfill.js":{"bytesInOutput":390},"node_modules/.pnpm/is-nan@1.3.2/node_modules/is-nan/shim.js":{"bytesInOutput":493},"node_modules/.pnpm/is-nan@1.3.2/node_modules/is-nan/index.js":{"bytesInOutput":524},"node_modules/.pnpm/assert@2.0.0/node_modules/assert/build/internal/util/comparisons.js":{"bytesInOutput":17976},"node_modules/.pnpm/assert@2.0.0/node_modules/assert/build/assert.js":{"bytesInOutput":16914},"packages/common/node-std/src/assert.js":{"bytesInOutput":91}},"bytes":75632},"packages/common/node-std/dist/lib/browser/chunk-RGVVW7F2.mjs.map":{"imports":[],"exports":[],"inputs":{},"bytes":121434},"packages/common/node-std/dist/lib/browser/chunk-RGVVW7F2.mjs":{"imports":[{"path":"packages/common/node-std/dist/lib/browser/chunk-MJPHVYKR.mjs","kind":"import-statement"}],"exports":["require_call_bind","require_call_bind2","require_define_data_property","require_has_property_descriptors","require_util"],"inputs":{"node_modules/.pnpm/has-symbols@1.0.3/node_modules/has-symbols/shams.js":{"bytesInOutput":1620},"node_modules/.pnpm/has-tostringtag@1.0.0/node_modules/has-tostringtag/shams.js":{"bytesInOutput":312},"node_modules/.pnpm/has-symbols@1.0.3/node_modules/has-symbols/index.js":{"bytesInOutput":656},"node_modules/.pnpm/has-proto@1.0.1/node_modules/has-proto/index.js":{"bytesInOutput":363},"node_modules/.pnpm/function-bind@1.1.2/node_modules/function-bind/implementation.js":{"bytesInOutput":2246},"node_modules/.pnpm/function-bind@1.1.2/node_modules/function-bind/index.js":{"bytesInOutput":280},"node_modules/.pnpm/hasown@2.0.0/node_modules/hasown/index.js":{"bytesInOutput":322},"node_modules/.pnpm/get-intrinsic@1.2.2/node_modules/get-intrinsic/index.js":{"bytesInOutput":14029},"node_modules/.pnpm/has-property-descriptors@1.0.0/node_modules/has-property-descriptors/index.js":{"bytesInOutput":940},"node_modules/.pnpm/gopd@1.0.1/node_modules/gopd/index.js":{"bytesInOutput":401},"node_modules/.pnpm/define-data-property@1.1.1/node_modules/define-data-property/index.js":{"bytesInOutput":2777},"node_modules/.pnpm/set-function-length@1.1.1/node_modules/set-function-length/index.js":{"bytesInOutput":1509},"node_modules/.pnpm/call-bind@1.0.5/node_modules/call-bind/index.js":{"bytesInOutput":1467},"node_modules/.pnpm/call-bind@1.0.5/node_modules/call-bind/callBound.js":{"bytesInOutput":603},"node_modules/.pnpm/is-arguments@1.1.1/node_modules/is-arguments/index.js":{"bytesInOutput":1155},"node_modules/.pnpm/is-generator-function@1.0.10/node_modules/is-generator-function/index.js":{"bytesInOutput":1254},"node_modules/.pnpm/is-callable@1.2.7/node_modules/is-callable/index.js":{"bytesInOutput":3544},"node_modules/.pnpm/for-each@0.3.3/node_modules/for-each/index.js":{"bytesInOutput":1892},"node_modules/.pnpm/available-typed-arrays@1.0.5/node_modules/available-typed-arrays/index.js":{"bytesInOutput":808},"node_modules/.pnpm/call-bind@1.0.2/node_modules/call-bind/index.js":{"bytesInOutput":1492},"node_modules/.pnpm/call-bind@1.0.2/node_modules/call-bind/callBound.js":{"bytesInOutput":605},"node_modules/.pnpm/es-abstract@1.20.4/node_modules/es-abstract/helpers/getOwnPropertyDescriptor.js":{"bytesInOutput":463},"node_modules/.pnpm/which-typed-array@1.1.13/node_modules/which-typed-array/index.js":{"bytesInOutput":2924},"node_modules/.pnpm/is-typed-array@1.1.12/node_modules/is-typed-array/index.js":{"bytesInOutput":322},"node_modules/.pnpm/which-typed-array@1.1.8/node_modules/which-typed-array/index.js":{"bytesInOutput":2051},"node_modules/.pnpm/is-typed-array@1.1.9/node_modules/is-typed-array/index.js":{"bytesInOutput":2191},"node_modules/.pnpm/util@0.12.5/node_modules/util/support/types.js":{"bytesInOutput":9162},"node_modules/.pnpm/util@0.12.5/node_modules/util/support/isBufferBrowser.js":{"bytesInOutput":355},"node_modules/.pnpm/inherits@2.0.4/node_modules/inherits/inherits_browser.js":{"bytesInOutput":928},"node_modules/.pnpm/util@0.12.5/node_modules/util/util.js":{"bytesInOutput":17780}},"bytes":77086},"packages/common/node-std/dist/lib/browser/buffer.mjs.map":{"imports":[],"exports":[],"inputs":{},"bytes":212},"packages/common/node-std/dist/lib/browser/buffer.mjs":{"imports":[{"path":"packages/common/node-std/dist/lib/browser/chunk-HFGMGNFE.mjs","kind":"import-statement"},{"path":"packages/common/node-std/dist/lib/browser/chunk-MJPHVYKR.mjs","kind":"import-statement"}],"exports":["Buffer"],"entryPoint":"packages/common/node-std/src/buffer.js","inputs":{"packages/common/node-std/src/buffer.js":{"bytesInOutput":47}},"bytes":313},"packages/common/node-std/dist/lib/browser/crypto.mjs.map":{"imports":[],"exports":[],"inputs":{},"bytes":308},"packages/common/node-std/dist/lib/browser/crypto.mjs":{"imports":[{"path":"packages/common/node-std/dist/lib/browser/chunk-MJPHVYKR.mjs","kind":"import-statement"}],"exports":["randomBytes"],"entryPoint":"packages/common/node-std/src/crypto.js","inputs":{"packages/common/node-std/src/crypto.js":{"bytesInOutput":82}},"bytes":218},"packages/common/node-std/dist/lib/browser/events.mjs.map":{"imports":[],"exports":[],"inputs":{},"bytes":24175},"packages/common/node-std/dist/lib/browser/events.mjs":{"imports":[{"path":"packages/common/node-std/dist/lib/browser/chunk-MJPHVYKR.mjs","kind":"import-statement"}],"exports":["EventEmitter","default"],"entryPoint":"packages/common/node-std/src/events.js","inputs":{"node_modules/.pnpm/events@3.3.0/node_modules/events/events.js":{"bytesInOutput":13194},"packages/common/node-std/src/events.js":{"bytesInOutput":114}},"bytes":13650},"packages/common/node-std/dist/lib/browser/fs.mjs.map":{"imports":[],"exports":[],"inputs":{},"bytes":844},"packages/common/node-std/dist/lib/browser/fs.mjs":{"imports":[{"path":"packages/common/node-std/dist/lib/browser/chunk-MJPHVYKR.mjs","kind":"import-statement"}],"exports":["appendFileSync","default","existsSync","mkdirSync","openSync","statSync"],"entryPoint":"packages/common/node-std/src/fs.js","inputs":{"packages/common/node-std/src/fs.js":{"bytesInOutput":367}},"bytes":574},"packages/common/node-std/dist/lib/browser/fs/promises.mjs.map":{"imports":[],"exports":[],"inputs":{},"bytes":2439},"packages/common/node-std/dist/lib/browser/fs/promises.mjs":{"imports":[{"path":"packages/common/node-std/dist/lib/browser/chunk-MJPHVYKR.mjs","kind":"import-statement"}],"exports":["access","appendFile","chmod","chown","copyFile","cp","lchmod","lchown","link","lstat","lutimes","mkdir","mkdtemp","open","opendir","readFile","readdir","readlink","realpath","rename","rm","rmdir","stat","symlink","to","truncate","unlink","utimes","watch","writeFile"],"entryPoint":"packages/common/node-std/src/fs/promises.js","inputs":{"packages/common/node-std/src/fs/promises.js":{"bytesInOutput":1131}},"bytes":1558},"packages/common/node-std/dist/lib/browser/globals.mjs.map":{"imports":[],"exports":[],"inputs":{},"bytes":93},"packages/common/node-std/dist/lib/browser/globals.mjs":{"imports":[{"path":"packages/common/node-std/dist/lib/browser/chunk-CMGRJ4FC.mjs","kind":"import-statement"},{"path":"packages/common/node-std/dist/lib/browser/chunk-QWZSWMMO.mjs","kind":"import-statement"},{"path":"packages/common/node-std/dist/lib/browser/chunk-HFGMGNFE.mjs","kind":"import-statement"},{"path":"packages/common/node-std/dist/lib/browser/chunk-MJPHVYKR.mjs","kind":"import-statement"}],"exports":[],"entryPoint":"packages/common/node-std/src/globals.js","inputs":{},"bytes":161},"packages/common/node-std/dist/lib/browser/chunk-CMGRJ4FC.mjs.map":{"imports":[],"exports":[],"inputs":{},"bytes":1288},"packages/common/node-std/dist/lib/browser/chunk-CMGRJ4FC.mjs":{"imports":[{"path":"packages/common/node-std/dist/lib/browser/chunk-QWZSWMMO.mjs","kind":"import-statement"},{"path":"packages/common/node-std/dist/lib/browser/chunk-HFGMGNFE.mjs","kind":"import-statement"},{"path":"packages/common/node-std/dist/lib/browser/chunk-MJPHVYKR.mjs","kind":"import-statement"}],"exports":[],"inputs":{"packages/common/node-std/src/globals.js":{"bytesInOutput":541}},"bytes":786},"packages/common/node-std/dist/lib/browser/chunk-QWZSWMMO.mjs.map":{"imports":[],"exports":[],"inputs":{},"bytes":5258},"packages/common/node-std/dist/lib/browser/chunk-QWZSWMMO.mjs":{"imports":[],"exports":["process"],"inputs":{"packages/common/node-std/src/process.js":{"bytesInOutput":2367}},"bytes":2477},"packages/common/node-std/dist/lib/browser/chunk-HFGMGNFE.mjs.map":{"imports":[],"exports":[],"inputs":{},"bytes":111174},"packages/common/node-std/dist/lib/browser/chunk-HFGMGNFE.mjs":{"imports":[{"path":"packages/common/node-std/dist/lib/browser/chunk-MJPHVYKR.mjs","kind":"import-statement"}],"exports":["require_buffer"],"inputs":{"node_modules/.pnpm/base64-js@1.5.1/node_modules/base64-js/index.js":{"bytesInOutput":3735},"node_modules/.pnpm/ieee754@1.2.1/node_modules/ieee754/index.js":{"bytesInOutput":2505},"node_modules/.pnpm/buffer@6.0.3/node_modules/buffer/index.js":{"bytesInOutput":57845}},"bytes":64726},"packages/common/node-std/dist/lib/browser/chunk-MJPHVYKR.mjs.map":{"imports":[],"exports":[],"inputs":{},"bytes":93},"packages/common/node-std/dist/lib/browser/chunk-MJPHVYKR.mjs":{"imports":[],"exports":["__commonJS","__toESM"],"inputs":{},"bytes":1401}}}
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
var import_chunk_ENV4LVNZ = require("./chunk-ENV4LVNZ.cjs");
|
|
3
|
+
var import_chunk_LQSBC3HI = require("./chunk-LQSBC3HI.cjs");
|
|
4
|
+
var import_chunk_XUVUYQ27 = require("./chunk-XUVUYQ27.cjs");
|
|
5
|
+
var import_buffer = (0, import_chunk_XUVUYQ27.__toESM)((0, import_chunk_LQSBC3HI.require_buffer)());
|
|
6
|
+
(() => {
|
|
7
|
+
if (typeof globalThis !== "undefined" && !Object.getOwnPropertyDescriptor(globalThis, "global")) {
|
|
8
|
+
Object.defineProperty(globalThis, "global", {
|
|
9
|
+
value: globalThis,
|
|
10
|
+
configurable: true,
|
|
11
|
+
writable: false,
|
|
12
|
+
enumerable: true
|
|
13
|
+
});
|
|
14
|
+
}
|
|
15
|
+
if (typeof globalThis !== "undefined" && !globalThis.Buffer) {
|
|
16
|
+
globalThis.Buffer = import_buffer.Buffer;
|
|
17
|
+
}
|
|
18
|
+
if (typeof globalThis !== "undefined" && !globalThis.process) {
|
|
19
|
+
globalThis.process = import_chunk_ENV4LVNZ.process;
|
|
20
|
+
}
|
|
21
|
+
})();
|
|
22
|
+
//# sourceMappingURL=chunk-D73VD6UV.cjs.map
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
{
|
|
2
|
+
"version": 3,
|
|
3
|
+
"sources": ["../../../src/globals.js"],
|
|
4
|
+
"sourcesContent": ["//\n// Copyright 2024 DXOS.org\n//\n\nimport { Buffer } from 'buffer/';\n\nimport { process } from './process';\n\n(() => {\n // NOTE(Zan): When running in native context `globalThis.global` is an immutable property.\n // - Socket already polyfills it.\n\n // Check if `globalThis` is defined and if `global` can be assigned.\n if (typeof globalThis !== 'undefined' && !Object.getOwnPropertyDescriptor(globalThis, 'global')) {\n Object.defineProperty(globalThis, 'global', {\n value: globalThis,\n configurable: true,\n writable: false,\n enumerable: true,\n });\n }\n\n if (typeof globalThis !== 'undefined' && !globalThis.Buffer) {\n globalThis.Buffer = Buffer;\n }\n\n if (typeof globalThis !== 'undefined' && !globalThis.process) {\n globalThis.process = process;\n }\n})();\n"],
|
|
5
|
+
"mappings": ";;;;AAIA,IAAA,oBAAuB,mCAAA,sCAAA,CAAA;CAItB,MAAM;AAKL,MAAI,OAAO,eAAe,eAAe,CAAC,OAAO,yBAAyB,YAAY,QAAQ,GAAG;AAC/F,WAAO,eAAe,YAAY,UAAU;MAC1C,OAAO;MACP,cAAc;MACd,UAAU;MACV,YAAY;IACd,CAAC;EACH;AAEA,MAAI,OAAO,eAAe,eAAe,CAAC,WAAW,QAAQ;AAC3D,eAAW,SAAS,cAAA;EACtB;AAEA,MAAI,OAAO,eAAe,eAAe,CAAC,WAAW,SAAS;AAC5D,eAAW,UAAU;EACvB;AACF,GAAG;",
|
|
6
|
+
"names": []
|
|
7
|
+
}
|
package/dist/lib/node/fs.cjs
CHANGED
|
@@ -19,6 +19,7 @@ var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: tru
|
|
|
19
19
|
var fs_exports = {};
|
|
20
20
|
__export(fs_exports, {
|
|
21
21
|
appendFileSync: () => appendFileSync,
|
|
22
|
+
default: () => fs_default,
|
|
22
23
|
existsSync: () => existsSync,
|
|
23
24
|
mkdirSync: () => mkdirSync,
|
|
24
25
|
openSync: () => openSync,
|
|
@@ -34,6 +35,13 @@ var mkdirSync = () => notAvailable();
|
|
|
34
35
|
var openSync = () => notAvailable();
|
|
35
36
|
var existsSync = () => notAvailable();
|
|
36
37
|
var statSync = () => notAvailable();
|
|
38
|
+
var fs_default = {
|
|
39
|
+
appendFileSync,
|
|
40
|
+
mkdirSync,
|
|
41
|
+
openSync,
|
|
42
|
+
existsSync,
|
|
43
|
+
statSync
|
|
44
|
+
};
|
|
37
45
|
// Annotate the CommonJS export names for ESM import in node:
|
|
38
46
|
0 && (module.exports = {
|
|
39
47
|
appendFileSync,
|
package/dist/lib/node/fs.cjs.map
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"version": 3,
|
|
3
3
|
"sources": ["../../../src/fs.js"],
|
|
4
|
-
"sourcesContent": ["//\n// Copyright 2023 DXOS.org\n//\n\nconst notAvailable = () => {\n throw new Error('Not available on this platform');\n};\n\nexport const appendFileSync = () => notAvailable();\nexport const mkdirSync = () => notAvailable();\nexport const openSync = () => notAvailable();\nexport const existsSync = () => notAvailable();\nexport const statSync = () => notAvailable();\n"],
|
|
5
|
-
"mappings": "
|
|
4
|
+
"sourcesContent": ["//\n// Copyright 2023 DXOS.org\n//\n\nconst notAvailable = () => {\n throw new Error('Not available on this platform');\n};\n\nexport const appendFileSync = () => notAvailable();\nexport const mkdirSync = () => notAvailable();\nexport const openSync = () => notAvailable();\nexport const existsSync = () => notAvailable();\nexport const statSync = () => notAvailable();\n\nexport default {\n appendFileSync,\n mkdirSync,\n openSync,\n existsSync,\n statSync,\n};\n"],
|
|
5
|
+
"mappings": ";;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAIA,IAAM,eAAe,MAAM;AACzB,QAAM,IAAI,MAAM,gCAAgC;AAClD;AAEO,IAAM,iBAAiB,MAAM,aAAa;AAC1C,IAAM,YAAY,MAAM,aAAa;AACrC,IAAM,WAAW,MAAM,aAAa;AACpC,IAAM,aAAa,MAAM,aAAa;AACtC,IAAM,WAAW,MAAM,aAAa;AAE3C,IAAO,aAAQ;EACb;EACA;EACA;EACA;EACA;AACF;",
|
|
6
6
|
"names": []
|
|
7
7
|
}
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
"use strict";
|
|
2
|
-
var
|
|
2
|
+
var import_chunk_D73VD6UV = require("./chunk-D73VD6UV.cjs");
|
|
3
3
|
var import_chunk_ENV4LVNZ = require("./chunk-ENV4LVNZ.cjs");
|
|
4
4
|
var import_chunk_LQSBC3HI = require("./chunk-LQSBC3HI.cjs");
|
|
5
5
|
var import_chunk_XUVUYQ27 = require("./chunk-XUVUYQ27.cjs");
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"version": 3,
|
|
3
3
|
"sources": ["globals.cjs"],
|
|
4
|
-
"sourcesContent": ["import \"./chunk-
|
|
4
|
+
"sourcesContent": ["import \"./chunk-D73VD6UV.cjs\";\nimport \"./chunk-ENV4LVNZ.cjs\";\nimport \"./chunk-LQSBC3HI.cjs\";\nimport \"./chunk-XUVUYQ27.cjs\";\n//# sourceMappingURL=globals.cjs.map\n"],
|
|
5
5
|
"mappings": ";AAAA,4BAAO;AACP,4BAAO;AACP,4BAAO;AACP,4BAAO;",
|
|
6
6
|
"names": []
|
|
7
7
|
}
|
package/dist/lib/node/meta.json
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"inputs":{"packages/common/node-std/src/_/config.js":{"bytes":237,"imports":[],"format":"esm"},"packages/common/node-std/src/assert.js":{"bytes":326,"imports":[{"path":"assert","kind":"import-statement","external":true}],"format":"esm"},"node_modules/.pnpm/base64-js@1.5.1/node_modules/base64-js/index.js":{"bytes":3932,"imports":[],"format":"cjs"},"node_modules/.pnpm/ieee754@1.2.1/node_modules/ieee754/index.js":{"bytes":2154,"imports":[],"format":"cjs"},"node_modules/.pnpm/buffer@6.0.3/node_modules/buffer/index.js":{"bytes":58353,"imports":[{"path":"node_modules/.pnpm/base64-js@1.5.1/node_modules/base64-js/index.js","kind":"require-call","original":"base64-js"},{"path":"node_modules/.pnpm/ieee754@1.2.1/node_modules/ieee754/index.js","kind":"require-call","original":"ieee754"}],"format":"cjs"},"packages/common/node-std/src/buffer.js":{"bytes":68,"imports":[{"path":"node_modules/.pnpm/buffer@6.0.3/node_modules/buffer/index.js","kind":"import-statement","original":"buffer/"}],"format":"esm"},"packages/common/node-std/src/crypto.js":{"bytes":125,"imports":[],"format":"esm"},"packages/common/node-std/src/events.js":{"bytes":133,"imports":[{"path":"events","kind":"import-statement","external":true}],"format":"esm"},"packages/common/node-std/src/fs.js":{"bytes":359,"imports":[],"format":"esm"},"packages/common/node-std/src/fs/promises.js":{"bytes":1438,"imports":[],"format":"esm"},"packages/common/node-std/src/process.js":{"bytes":3094,"imports":[],"format":"esm"},"packages/common/node-std/src/globals.js":{"bytes":197,"imports":[{"path":"node_modules/.pnpm/buffer@6.0.3/node_modules/buffer/index.js","kind":"import-statement","original":"buffer/"},{"path":"packages/common/node-std/src/process.js","kind":"import-statement","original":"./process"}],"format":"esm"},"packages/common/node-std/src/inject-globals.js":{"bytes":273,"imports":[{"path":"node_modules/.pnpm/buffer@6.0.3/node_modules/buffer/index.js","kind":"import-statement","original":"buffer/"},{"path":"packages/common/node-std/src/process.js","kind":"import-statement","original":"./process"}],"format":"esm"},"node_modules/.pnpm/path-browserify@1.0.1/node_modules/path-browserify/index.js":{"bytes":16166,"imports":[],"format":"cjs"},"packages/common/node-std/src/path.js":{"bytes":243,"imports":[{"path":"node_modules/.pnpm/path-browserify@1.0.1/node_modules/path-browserify/index.js","kind":"import-statement","original":"path-browserify"},{"path":"node_modules/.pnpm/path-browserify@1.0.1/node_modules/path-browserify/index.js","kind":"import-statement","original":"path-browserify"}],"format":"esm"},"packages/common/node-std/src/stream.js":{"bytes":138,"imports":[{"path":"readable-stream","kind":"import-statement","external":true}],"format":"esm"},"node_modules/.pnpm/has-symbols@1.0.3/node_modules/has-symbols/shams.js":{"bytes":1761,"imports":[],"format":"cjs"},"node_modules/.pnpm/has-tostringtag@1.0.0/node_modules/has-tostringtag/shams.js":{"bytes":162,"imports":[{"path":"node_modules/.pnpm/has-symbols@1.0.3/node_modules/has-symbols/shams.js","kind":"require-call","original":"has-symbols/shams"}],"format":"cjs"},"node_modules/.pnpm/has-symbols@1.0.3/node_modules/has-symbols/index.js":{"bytes":420,"imports":[{"path":"node_modules/.pnpm/has-symbols@1.0.3/node_modules/has-symbols/shams.js","kind":"require-call","original":"./shams"}],"format":"cjs"},"node_modules/.pnpm/has-proto@1.0.1/node_modules/has-proto/index.js":{"bytes":197,"imports":[],"format":"cjs"},"node_modules/.pnpm/function-bind@1.1.2/node_modules/function-bind/implementation.js":{"bytes":2043,"imports":[],"format":"cjs"},"node_modules/.pnpm/function-bind@1.1.2/node_modules/function-bind/index.js":{"bytes":126,"imports":[{"path":"node_modules/.pnpm/function-bind@1.1.2/node_modules/function-bind/implementation.js","kind":"require-call","original":"./implementation"}],"format":"cjs"},"node_modules/.pnpm/hasown@2.0.0/node_modules/hasown/index.js":{"bytes":234,"imports":[{"path":"node_modules/.pnpm/function-bind@1.1.2/node_modules/function-bind/index.js","kind":"require-call","original":"function-bind"}],"format":"cjs"},"node_modules/.pnpm/get-intrinsic@1.2.2/node_modules/get-intrinsic/index.js":{"bytes":13326,"imports":[{"path":"node_modules/.pnpm/has-symbols@1.0.3/node_modules/has-symbols/index.js","kind":"require-call","original":"has-symbols"},{"path":"node_modules/.pnpm/has-proto@1.0.1/node_modules/has-proto/index.js","kind":"require-call","original":"has-proto"},{"path":"node_modules/.pnpm/function-bind@1.1.2/node_modules/function-bind/index.js","kind":"require-call","original":"function-bind"},{"path":"node_modules/.pnpm/hasown@2.0.0/node_modules/hasown/index.js","kind":"require-call","original":"hasown"}],"format":"cjs"},"node_modules/.pnpm/has-property-descriptors@1.0.0/node_modules/has-property-descriptors/index.js":{"bytes":817,"imports":[{"path":"node_modules/.pnpm/get-intrinsic@1.2.2/node_modules/get-intrinsic/index.js","kind":"require-call","original":"get-intrinsic"}],"format":"cjs"},"node_modules/.pnpm/gopd@1.0.1/node_modules/gopd/index.js":{"bytes":263,"imports":[{"path":"node_modules/.pnpm/get-intrinsic@1.2.2/node_modules/get-intrinsic/index.js","kind":"require-call","original":"get-intrinsic"}],"format":"cjs"},"node_modules/.pnpm/define-data-property@1.1.1/node_modules/define-data-property/index.js":{"bytes":2838,"imports":[{"path":"node_modules/.pnpm/has-property-descriptors@1.0.0/node_modules/has-property-descriptors/index.js","kind":"require-call","original":"has-property-descriptors"},{"path":"node_modules/.pnpm/get-intrinsic@1.2.2/node_modules/get-intrinsic/index.js","kind":"require-call","original":"get-intrinsic"},{"path":"node_modules/.pnpm/gopd@1.0.1/node_modules/gopd/index.js","kind":"require-call","original":"gopd"}],"format":"cjs"},"node_modules/.pnpm/set-function-length@1.1.1/node_modules/set-function-length/index.js":{"bytes":1170,"imports":[{"path":"node_modules/.pnpm/get-intrinsic@1.2.2/node_modules/get-intrinsic/index.js","kind":"require-call","original":"get-intrinsic"},{"path":"node_modules/.pnpm/define-data-property@1.1.1/node_modules/define-data-property/index.js","kind":"require-call","original":"define-data-property"},{"path":"node_modules/.pnpm/has-property-descriptors@1.0.0/node_modules/has-property-descriptors/index.js","kind":"require-call","original":"has-property-descriptors"},{"path":"node_modules/.pnpm/gopd@1.0.1/node_modules/gopd/index.js","kind":"require-call","original":"gopd"}],"format":"cjs"},"node_modules/.pnpm/call-bind@1.0.5/node_modules/call-bind/index.js":{"bytes":1212,"imports":[{"path":"node_modules/.pnpm/function-bind@1.1.2/node_modules/function-bind/index.js","kind":"require-call","original":"function-bind"},{"path":"node_modules/.pnpm/get-intrinsic@1.2.2/node_modules/get-intrinsic/index.js","kind":"require-call","original":"get-intrinsic"},{"path":"node_modules/.pnpm/set-function-length@1.1.1/node_modules/set-function-length/index.js","kind":"require-call","original":"set-function-length"}],"format":"cjs"},"node_modules/.pnpm/call-bind@1.0.5/node_modules/call-bind/callBound.js":{"bytes":413,"imports":[{"path":"node_modules/.pnpm/get-intrinsic@1.2.2/node_modules/get-intrinsic/index.js","kind":"require-call","original":"get-intrinsic"},{"path":"node_modules/.pnpm/call-bind@1.0.5/node_modules/call-bind/index.js","kind":"require-call","original":"./"}],"format":"cjs"},"node_modules/.pnpm/is-arguments@1.1.1/node_modules/is-arguments/index.js":{"bytes":976,"imports":[{"path":"node_modules/.pnpm/has-tostringtag@1.0.0/node_modules/has-tostringtag/shams.js","kind":"require-call","original":"has-tostringtag/shams"},{"path":"node_modules/.pnpm/call-bind@1.0.5/node_modules/call-bind/callBound.js","kind":"require-call","original":"call-bind/callBound"}],"format":"cjs"},"node_modules/.pnpm/is-generator-function@1.0.10/node_modules/is-generator-function/index.js":{"bytes":964,"imports":[{"path":"node_modules/.pnpm/has-tostringtag@1.0.0/node_modules/has-tostringtag/shams.js","kind":"require-call","original":"has-tostringtag/shams"}],"format":"cjs"},"node_modules/.pnpm/is-callable@1.2.7/node_modules/is-callable/index.js":{"bytes":3224,"imports":[],"format":"cjs"},"node_modules/.pnpm/for-each@0.3.3/node_modules/for-each/index.js":{"bytes":1761,"imports":[{"path":"node_modules/.pnpm/is-callable@1.2.7/node_modules/is-callable/index.js","kind":"require-call","original":"is-callable"}],"format":"cjs"},"node_modules/.pnpm/available-typed-arrays@1.0.5/node_modules/available-typed-arrays/index.js":{"bytes":519,"imports":[],"format":"cjs"},"node_modules/.pnpm/call-bind@1.0.2/node_modules/call-bind/index.js":{"bytes":1306,"imports":[{"path":"node_modules/.pnpm/function-bind@1.1.2/node_modules/function-bind/index.js","kind":"require-call","original":"function-bind"},{"path":"node_modules/.pnpm/get-intrinsic@1.2.2/node_modules/get-intrinsic/index.js","kind":"require-call","original":"get-intrinsic"}],"format":"cjs"},"node_modules/.pnpm/call-bind@1.0.2/node_modules/call-bind/callBound.js":{"bytes":413,"imports":[{"path":"node_modules/.pnpm/get-intrinsic@1.2.2/node_modules/get-intrinsic/index.js","kind":"require-call","original":"get-intrinsic"},{"path":"node_modules/.pnpm/call-bind@1.0.2/node_modules/call-bind/index.js","kind":"require-call","original":"./"}],"format":"cjs"},"node_modules/.pnpm/es-abstract@1.20.4/node_modules/es-abstract/helpers/getOwnPropertyDescriptor.js":{"bytes":262,"imports":[{"path":"node_modules/.pnpm/get-intrinsic@1.2.2/node_modules/get-intrinsic/index.js","kind":"require-call","original":"get-intrinsic"}],"format":"cjs"},"node_modules/.pnpm/which-typed-array@1.1.13/node_modules/which-typed-array/index.js":{"bytes":2406,"imports":[{"path":"node_modules/.pnpm/for-each@0.3.3/node_modules/for-each/index.js","kind":"require-call","original":"for-each"},{"path":"node_modules/.pnpm/available-typed-arrays@1.0.5/node_modules/available-typed-arrays/index.js","kind":"require-call","original":"available-typed-arrays"},{"path":"node_modules/.pnpm/call-bind@1.0.5/node_modules/call-bind/index.js","kind":"require-call","original":"call-bind"},{"path":"node_modules/.pnpm/call-bind@1.0.5/node_modules/call-bind/callBound.js","kind":"require-call","original":"call-bind/callBound"},{"path":"node_modules/.pnpm/gopd@1.0.1/node_modules/gopd/index.js","kind":"require-call","original":"gopd"},{"path":"node_modules/.pnpm/has-tostringtag@1.0.0/node_modules/has-tostringtag/shams.js","kind":"require-call","original":"has-tostringtag/shams"}],"format":"cjs"},"node_modules/.pnpm/is-typed-array@1.1.12/node_modules/is-typed-array/index.js":{"bytes":153,"imports":[{"path":"node_modules/.pnpm/which-typed-array@1.1.13/node_modules/which-typed-array/index.js","kind":"require-call","original":"which-typed-array"}],"format":"cjs"},"node_modules/.pnpm/which-typed-array@1.1.8/node_modules/which-typed-array/index.js":{"bytes":1670,"imports":[{"path":"node_modules/.pnpm/for-each@0.3.3/node_modules/for-each/index.js","kind":"require-call","original":"for-each"},{"path":"node_modules/.pnpm/available-typed-arrays@1.0.5/node_modules/available-typed-arrays/index.js","kind":"require-call","original":"available-typed-arrays"},{"path":"node_modules/.pnpm/call-bind@1.0.2/node_modules/call-bind/callBound.js","kind":"require-call","original":"call-bind/callBound"},{"path":"node_modules/.pnpm/has-tostringtag@1.0.0/node_modules/has-tostringtag/shams.js","kind":"require-call","original":"has-tostringtag/shams"},{"path":"node_modules/.pnpm/es-abstract@1.20.4/node_modules/es-abstract/helpers/getOwnPropertyDescriptor.js","kind":"require-call","original":"es-abstract/helpers/getOwnPropertyDescriptor"},{"path":"node_modules/.pnpm/is-typed-array@1.1.12/node_modules/is-typed-array/index.js","kind":"require-call","original":"is-typed-array"}],"format":"cjs"},"node_modules/.pnpm/is-typed-array@1.1.9/node_modules/is-typed-array/index.js":{"bytes":1810,"imports":[{"path":"node_modules/.pnpm/for-each@0.3.3/node_modules/for-each/index.js","kind":"require-call","original":"for-each"},{"path":"node_modules/.pnpm/available-typed-arrays@1.0.5/node_modules/available-typed-arrays/index.js","kind":"require-call","original":"available-typed-arrays"},{"path":"node_modules/.pnpm/call-bind@1.0.2/node_modules/call-bind/callBound.js","kind":"require-call","original":"call-bind/callBound"},{"path":"node_modules/.pnpm/has-tostringtag@1.0.0/node_modules/has-tostringtag/shams.js","kind":"require-call","original":"has-tostringtag/shams"},{"path":"node_modules/.pnpm/es-abstract@1.20.4/node_modules/es-abstract/helpers/getOwnPropertyDescriptor.js","kind":"require-call","original":"es-abstract/helpers/getOwnPropertyDescriptor"}],"format":"cjs"},"node_modules/.pnpm/util@0.12.5/node_modules/util/support/types.js":{"bytes":8672,"imports":[{"path":"node_modules/.pnpm/is-arguments@1.1.1/node_modules/is-arguments/index.js","kind":"require-call","original":"is-arguments"},{"path":"node_modules/.pnpm/is-generator-function@1.0.10/node_modules/is-generator-function/index.js","kind":"require-call","original":"is-generator-function"},{"path":"node_modules/.pnpm/which-typed-array@1.1.8/node_modules/which-typed-array/index.js","kind":"require-call","original":"which-typed-array"},{"path":"node_modules/.pnpm/is-typed-array@1.1.9/node_modules/is-typed-array/index.js","kind":"require-call","original":"is-typed-array"}],"format":"cjs"},"node_modules/.pnpm/util@0.12.5/node_modules/util/support/isBuffer.js":{"bytes":76,"imports":[],"format":"cjs"},"node_modules/.pnpm/inherits@2.0.4/node_modules/inherits/inherits_browser.js":{"bytes":753,"imports":[],"format":"cjs"},"node_modules/.pnpm/inherits@2.0.4/node_modules/inherits/inherits.js":{"bytes":250,"imports":[{"path":"util","kind":"require-call","external":true},{"path":"node_modules/.pnpm/inherits@2.0.4/node_modules/inherits/inherits_browser.js","kind":"require-call","original":"./inherits_browser.js"}],"format":"cjs"},"node_modules/.pnpm/util@0.12.5/node_modules/util/util.js":{"bytes":19697,"imports":[{"path":"node_modules/.pnpm/util@0.12.5/node_modules/util/support/types.js","kind":"require-call","original":"./support/types"},{"path":"node_modules/.pnpm/util@0.12.5/node_modules/util/support/isBuffer.js","kind":"require-call","original":"./support/isBuffer"},{"path":"node_modules/.pnpm/inherits@2.0.4/node_modules/inherits/inherits.js","kind":"require-call","original":"inherits"}],"format":"cjs"},"packages/common/node-std/src/util.js":{"bytes":200,"imports":[{"path":"packages/common/node-std/src/globals.js","kind":"import-statement","original":"./globals"},{"path":"node_modules/.pnpm/util@0.12.5/node_modules/util/util.js","kind":"import-statement","original":"util/"},{"path":"node_modules/.pnpm/util@0.12.5/node_modules/util/util.js","kind":"import-statement","original":"util/"}],"format":"esm"}},"outputs":{"packages/common/node-std/dist/lib/node/inject-globals.cjs.map":{"imports":[],"exports":[],"inputs":{},"bytes":453},"packages/common/node-std/dist/lib/node/inject-globals.cjs":{"imports":[{"path":"packages/common/node-std/dist/lib/node/chunk-ENV4LVNZ.cjs","kind":"import-statement"},{"path":"packages/common/node-std/dist/lib/node/chunk-LQSBC3HI.cjs","kind":"import-statement"},{"path":"packages/common/node-std/dist/lib/node/chunk-XUVUYQ27.cjs","kind":"import-statement"}],"exports":["Buffer","global","process"],"entryPoint":"packages/common/node-std/src/inject-globals.js","inputs":{"packages/common/node-std/src/inject-globals.js":{"bytesInOutput":72}},"bytes":425},"packages/common/node-std/dist/lib/node/path.cjs.map":{"imports":[],"exports":[],"inputs":{},"bytes":25649},"packages/common/node-std/dist/lib/node/path.cjs":{"imports":[{"path":"packages/common/node-std/dist/lib/node/chunk-XUVUYQ27.cjs","kind":"import-statement"}],"exports":["basename","default","dirname","extname","format","isAbsolute","join","normalize","parse","relative","resolve"],"entryPoint":"packages/common/node-std/src/path.js","inputs":{"node_modules/.pnpm/path-browserify@1.0.1/node_modules/path-browserify/index.js":{"bytesInOutput":13607},"packages/common/node-std/src/path.js":{"bytesInOutput":137}},"bytes":14828},"packages/common/node-std/dist/lib/node/stream.cjs.map":{"imports":[],"exports":[],"inputs":{},"bytes":312},"packages/common/node-std/dist/lib/node/stream.cjs":{"imports":[{"path":"packages/common/node-std/dist/lib/node/chunk-XUVUYQ27.cjs","kind":"import-statement"},{"path":"readable-stream","kind":"import-statement","external":true}],"exports":["Duplex","PassThrough","Readable","Stream","Transform","Writable","pipeline"],"entryPoint":"packages/common/node-std/src/stream.js","inputs":{"packages/common/node-std/src/stream.js":{"bytesInOutput":104}},"bytes":309},"packages/common/node-std/dist/lib/node/util.cjs.map":{"imports":[],"exports":[],"inputs":{},"bytes":122144},"packages/common/node-std/dist/lib/node/util.cjs":{"imports":[{"path":"packages/common/node-std/dist/lib/node/chunk-JHZ6V4WV.cjs","kind":"import-statement"},{"path":"packages/common/node-std/dist/lib/node/chunk-ENV4LVNZ.cjs","kind":"import-statement"},{"path":"packages/common/node-std/dist/lib/node/chunk-LQSBC3HI.cjs","kind":"import-statement"},{"path":"packages/common/node-std/dist/lib/node/chunk-XUVUYQ27.cjs","kind":"import-statement"},{"path":"util","kind":"require-call","external":true}],"exports":["callbackify","default","inspect","promisify"],"entryPoint":"packages/common/node-std/src/util.js","inputs":{"node_modules/.pnpm/has-symbols@1.0.3/node_modules/has-symbols/shams.js":{"bytesInOutput":1620},"node_modules/.pnpm/has-tostringtag@1.0.0/node_modules/has-tostringtag/shams.js":{"bytesInOutput":312},"node_modules/.pnpm/has-symbols@1.0.3/node_modules/has-symbols/index.js":{"bytesInOutput":656},"node_modules/.pnpm/has-proto@1.0.1/node_modules/has-proto/index.js":{"bytesInOutput":363},"node_modules/.pnpm/function-bind@1.1.2/node_modules/function-bind/implementation.js":{"bytesInOutput":2246},"node_modules/.pnpm/function-bind@1.1.2/node_modules/function-bind/index.js":{"bytesInOutput":280},"node_modules/.pnpm/hasown@2.0.0/node_modules/hasown/index.js":{"bytesInOutput":322},"node_modules/.pnpm/get-intrinsic@1.2.2/node_modules/get-intrinsic/index.js":{"bytesInOutput":14029},"node_modules/.pnpm/has-property-descriptors@1.0.0/node_modules/has-property-descriptors/index.js":{"bytesInOutput":940},"node_modules/.pnpm/gopd@1.0.1/node_modules/gopd/index.js":{"bytesInOutput":401},"node_modules/.pnpm/define-data-property@1.1.1/node_modules/define-data-property/index.js":{"bytesInOutput":2777},"node_modules/.pnpm/set-function-length@1.1.1/node_modules/set-function-length/index.js":{"bytesInOutput":1509},"node_modules/.pnpm/call-bind@1.0.5/node_modules/call-bind/index.js":{"bytesInOutput":1467},"node_modules/.pnpm/call-bind@1.0.5/node_modules/call-bind/callBound.js":{"bytesInOutput":603},"node_modules/.pnpm/is-arguments@1.1.1/node_modules/is-arguments/index.js":{"bytesInOutput":1155},"node_modules/.pnpm/is-generator-function@1.0.10/node_modules/is-generator-function/index.js":{"bytesInOutput":1254},"node_modules/.pnpm/is-callable@1.2.7/node_modules/is-callable/index.js":{"bytesInOutput":3544},"node_modules/.pnpm/for-each@0.3.3/node_modules/for-each/index.js":{"bytesInOutput":1892},"node_modules/.pnpm/available-typed-arrays@1.0.5/node_modules/available-typed-arrays/index.js":{"bytesInOutput":808},"node_modules/.pnpm/call-bind@1.0.2/node_modules/call-bind/index.js":{"bytesInOutput":1492},"node_modules/.pnpm/call-bind@1.0.2/node_modules/call-bind/callBound.js":{"bytesInOutput":605},"node_modules/.pnpm/es-abstract@1.20.4/node_modules/es-abstract/helpers/getOwnPropertyDescriptor.js":{"bytesInOutput":463},"node_modules/.pnpm/which-typed-array@1.1.13/node_modules/which-typed-array/index.js":{"bytesInOutput":2924},"node_modules/.pnpm/is-typed-array@1.1.12/node_modules/is-typed-array/index.js":{"bytesInOutput":322},"node_modules/.pnpm/which-typed-array@1.1.8/node_modules/which-typed-array/index.js":{"bytesInOutput":2051},"node_modules/.pnpm/is-typed-array@1.1.9/node_modules/is-typed-array/index.js":{"bytesInOutput":2191},"node_modules/.pnpm/util@0.12.5/node_modules/util/support/types.js":{"bytesInOutput":9162},"node_modules/.pnpm/util@0.12.5/node_modules/util/support/isBuffer.js":{"bytesInOutput":225},"node_modules/.pnpm/inherits@2.0.4/node_modules/inherits/inherits_browser.js":{"bytesInOutput":928},"node_modules/.pnpm/inherits@2.0.4/node_modules/inherits/inherits.js":{"bytesInOutput":373},"node_modules/.pnpm/util@0.12.5/node_modules/util/util.js":{"bytesInOutput":17777},"packages/common/node-std/src/util.js":{"bytesInOutput":127}},"bytes":77805},"packages/common/node-std/dist/lib/node/_/config.cjs.map":{"imports":[],"exports":[],"inputs":{},"bytes":539},"packages/common/node-std/dist/lib/node/_/config.cjs":{"imports":[{"path":"packages/common/node-std/dist/lib/node/chunk-XUVUYQ27.cjs","kind":"import-statement"}],"exports":["GLOBALS","MODULES"],"entryPoint":"packages/common/node-std/src/_/config.js","inputs":{"packages/common/node-std/src/_/config.js":{"bytesInOutput":183}},"bytes":329},"packages/common/node-std/dist/lib/node/assert.cjs.map":{"imports":[],"exports":[],"inputs":{},"bytes":491},"packages/common/node-std/dist/lib/node/assert.cjs":{"imports":[{"path":"packages/common/node-std/dist/lib/node/chunk-XUVUYQ27.cjs","kind":"import-statement"},{"path":"assert","kind":"import-statement","external":true}],"exports":["default"],"entryPoint":"packages/common/node-std/src/assert.js","inputs":{"packages/common/node-std/src/assert.js":{"bytesInOutput":58}},"bytes":208},"packages/common/node-std/dist/lib/node/buffer.cjs.map":{"imports":[],"exports":[],"inputs":{},"bytes":212},"packages/common/node-std/dist/lib/node/buffer.cjs":{"imports":[{"path":"packages/common/node-std/dist/lib/node/chunk-LQSBC3HI.cjs","kind":"import-statement"},{"path":"packages/common/node-std/dist/lib/node/chunk-XUVUYQ27.cjs","kind":"import-statement"}],"exports":["Buffer"],"entryPoint":"packages/common/node-std/src/buffer.js","inputs":{"packages/common/node-std/src/buffer.js":{"bytesInOutput":47}},"bytes":313},"packages/common/node-std/dist/lib/node/crypto.cjs.map":{"imports":[],"exports":[],"inputs":{},"bytes":308},"packages/common/node-std/dist/lib/node/crypto.cjs":{"imports":[{"path":"packages/common/node-std/dist/lib/node/chunk-XUVUYQ27.cjs","kind":"import-statement"}],"exports":["randomBytes"],"entryPoint":"packages/common/node-std/src/crypto.js","inputs":{"packages/common/node-std/src/crypto.js":{"bytesInOutput":82}},"bytes":218},"packages/common/node-std/dist/lib/node/events.cjs.map":{"imports":[],"exports":[],"inputs":{},"bytes":308},"packages/common/node-std/dist/lib/node/events.cjs":{"imports":[{"path":"packages/common/node-std/dist/lib/node/chunk-XUVUYQ27.cjs","kind":"import-statement"},{"path":"events","kind":"import-statement","external":true}],"exports":["EventEmitter","default"],"entryPoint":"packages/common/node-std/src/events.js","inputs":{"packages/common/node-std/src/events.js":{"bytesInOutput":78}},"bytes":244},"packages/common/node-std/dist/lib/node/fs.cjs.map":{"imports":[],"exports":[],"inputs":{},"bytes":675},"packages/common/node-std/dist/lib/node/fs.cjs":{"imports":[{"path":"packages/common/node-std/dist/lib/node/chunk-XUVUYQ27.cjs","kind":"import-statement"}],"exports":["appendFileSync","existsSync","mkdirSync","openSync","statSync"],"entryPoint":"packages/common/node-std/src/fs.js","inputs":{"packages/common/node-std/src/fs.js":{"bytesInOutput":277}},"bytes":459},"packages/common/node-std/dist/lib/node/fs/promises.cjs.map":{"imports":[],"exports":[],"inputs":{},"bytes":2439},"packages/common/node-std/dist/lib/node/fs/promises.cjs":{"imports":[{"path":"packages/common/node-std/dist/lib/node/chunk-XUVUYQ27.cjs","kind":"import-statement"}],"exports":["access","appendFile","chmod","chown","copyFile","cp","lchmod","lchown","link","lstat","lutimes","mkdir","mkdtemp","open","opendir","readFile","readdir","readlink","realpath","rename","rm","rmdir","stat","symlink","to","truncate","unlink","utimes","watch","writeFile"],"entryPoint":"packages/common/node-std/src/fs/promises.js","inputs":{"packages/common/node-std/src/fs/promises.js":{"bytesInOutput":1131}},"bytes":1558},"packages/common/node-std/dist/lib/node/globals.cjs.map":{"imports":[],"exports":[],"inputs":{},"bytes":93},"packages/common/node-std/dist/lib/node/globals.cjs":{"imports":[{"path":"packages/common/node-std/dist/lib/node/chunk-JHZ6V4WV.cjs","kind":"import-statement"},{"path":"packages/common/node-std/dist/lib/node/chunk-ENV4LVNZ.cjs","kind":"import-statement"},{"path":"packages/common/node-std/dist/lib/node/chunk-LQSBC3HI.cjs","kind":"import-statement"},{"path":"packages/common/node-std/dist/lib/node/chunk-XUVUYQ27.cjs","kind":"import-statement"}],"exports":[],"entryPoint":"packages/common/node-std/src/globals.js","inputs":{},"bytes":161},"packages/common/node-std/dist/lib/node/chunk-JHZ6V4WV.cjs.map":{"imports":[],"exports":[],"inputs":{},"bytes":399},"packages/common/node-std/dist/lib/node/chunk-JHZ6V4WV.cjs":{"imports":[{"path":"packages/common/node-std/dist/lib/node/chunk-ENV4LVNZ.cjs","kind":"import-statement"},{"path":"packages/common/node-std/dist/lib/node/chunk-LQSBC3HI.cjs","kind":"import-statement"},{"path":"packages/common/node-std/dist/lib/node/chunk-XUVUYQ27.cjs","kind":"import-statement"}],"exports":[],"inputs":{"packages/common/node-std/src/globals.js":{"bytesInOutput":151}},"bytes":396},"packages/common/node-std/dist/lib/node/chunk-ENV4LVNZ.cjs.map":{"imports":[],"exports":[],"inputs":{},"bytes":5258},"packages/common/node-std/dist/lib/node/chunk-ENV4LVNZ.cjs":{"imports":[],"exports":["process"],"inputs":{"packages/common/node-std/src/process.js":{"bytesInOutput":2367}},"bytes":2477},"packages/common/node-std/dist/lib/node/chunk-LQSBC3HI.cjs.map":{"imports":[],"exports":[],"inputs":{},"bytes":111174},"packages/common/node-std/dist/lib/node/chunk-LQSBC3HI.cjs":{"imports":[{"path":"packages/common/node-std/dist/lib/node/chunk-XUVUYQ27.cjs","kind":"import-statement"}],"exports":["require_buffer"],"inputs":{"node_modules/.pnpm/base64-js@1.5.1/node_modules/base64-js/index.js":{"bytesInOutput":3735},"node_modules/.pnpm/ieee754@1.2.1/node_modules/ieee754/index.js":{"bytesInOutput":2505},"node_modules/.pnpm/buffer@6.0.3/node_modules/buffer/index.js":{"bytesInOutput":57845}},"bytes":64726},"packages/common/node-std/dist/lib/node/chunk-XUVUYQ27.cjs.map":{"imports":[],"exports":[],"inputs":{},"bytes":93},"packages/common/node-std/dist/lib/node/chunk-XUVUYQ27.cjs":{"imports":[],"exports":["__commonJS","__require","__toESM"],"inputs":{},"bytes":1784}}}
|
|
1
|
+
{"inputs":{"packages/common/node-std/src/_/config.js":{"bytes":237,"imports":[],"format":"esm"},"packages/common/node-std/src/assert.js":{"bytes":326,"imports":[{"path":"assert","kind":"import-statement","external":true}],"format":"esm"},"node_modules/.pnpm/base64-js@1.5.1/node_modules/base64-js/index.js":{"bytes":3932,"imports":[],"format":"cjs"},"node_modules/.pnpm/ieee754@1.2.1/node_modules/ieee754/index.js":{"bytes":2154,"imports":[],"format":"cjs"},"node_modules/.pnpm/buffer@6.0.3/node_modules/buffer/index.js":{"bytes":58353,"imports":[{"path":"node_modules/.pnpm/base64-js@1.5.1/node_modules/base64-js/index.js","kind":"require-call","original":"base64-js"},{"path":"node_modules/.pnpm/ieee754@1.2.1/node_modules/ieee754/index.js","kind":"require-call","original":"ieee754"}],"format":"cjs"},"packages/common/node-std/src/buffer.js":{"bytes":68,"imports":[{"path":"node_modules/.pnpm/buffer@6.0.3/node_modules/buffer/index.js","kind":"import-statement","original":"buffer/"}],"format":"esm"},"packages/common/node-std/src/crypto.js":{"bytes":125,"imports":[],"format":"esm"},"packages/common/node-std/src/events.js":{"bytes":133,"imports":[{"path":"events","kind":"import-statement","external":true}],"format":"esm"},"packages/common/node-std/src/fs.js":{"bytes":449,"imports":[],"format":"esm"},"packages/common/node-std/src/fs/promises.js":{"bytes":1438,"imports":[],"format":"esm"},"packages/common/node-std/src/process.js":{"bytes":3094,"imports":[],"format":"esm"},"packages/common/node-std/src/globals.js":{"bytes":791,"imports":[{"path":"node_modules/.pnpm/buffer@6.0.3/node_modules/buffer/index.js","kind":"import-statement","original":"buffer/"},{"path":"packages/common/node-std/src/process.js","kind":"import-statement","original":"./process"}],"format":"esm"},"packages/common/node-std/src/inject-globals.js":{"bytes":273,"imports":[{"path":"node_modules/.pnpm/buffer@6.0.3/node_modules/buffer/index.js","kind":"import-statement","original":"buffer/"},{"path":"packages/common/node-std/src/process.js","kind":"import-statement","original":"./process"}],"format":"esm"},"node_modules/.pnpm/path-browserify@1.0.1/node_modules/path-browserify/index.js":{"bytes":16166,"imports":[],"format":"cjs"},"packages/common/node-std/src/path.js":{"bytes":243,"imports":[{"path":"node_modules/.pnpm/path-browserify@1.0.1/node_modules/path-browserify/index.js","kind":"import-statement","original":"path-browserify"},{"path":"node_modules/.pnpm/path-browserify@1.0.1/node_modules/path-browserify/index.js","kind":"import-statement","original":"path-browserify"}],"format":"esm"},"packages/common/node-std/src/stream.js":{"bytes":138,"imports":[{"path":"readable-stream","kind":"import-statement","external":true}],"format":"esm"},"node_modules/.pnpm/has-symbols@1.0.3/node_modules/has-symbols/shams.js":{"bytes":1761,"imports":[],"format":"cjs"},"node_modules/.pnpm/has-tostringtag@1.0.0/node_modules/has-tostringtag/shams.js":{"bytes":162,"imports":[{"path":"node_modules/.pnpm/has-symbols@1.0.3/node_modules/has-symbols/shams.js","kind":"require-call","original":"has-symbols/shams"}],"format":"cjs"},"node_modules/.pnpm/has-symbols@1.0.3/node_modules/has-symbols/index.js":{"bytes":420,"imports":[{"path":"node_modules/.pnpm/has-symbols@1.0.3/node_modules/has-symbols/shams.js","kind":"require-call","original":"./shams"}],"format":"cjs"},"node_modules/.pnpm/has-proto@1.0.1/node_modules/has-proto/index.js":{"bytes":197,"imports":[],"format":"cjs"},"node_modules/.pnpm/function-bind@1.1.2/node_modules/function-bind/implementation.js":{"bytes":2043,"imports":[],"format":"cjs"},"node_modules/.pnpm/function-bind@1.1.2/node_modules/function-bind/index.js":{"bytes":126,"imports":[{"path":"node_modules/.pnpm/function-bind@1.1.2/node_modules/function-bind/implementation.js","kind":"require-call","original":"./implementation"}],"format":"cjs"},"node_modules/.pnpm/hasown@2.0.0/node_modules/hasown/index.js":{"bytes":234,"imports":[{"path":"node_modules/.pnpm/function-bind@1.1.2/node_modules/function-bind/index.js","kind":"require-call","original":"function-bind"}],"format":"cjs"},"node_modules/.pnpm/get-intrinsic@1.2.2/node_modules/get-intrinsic/index.js":{"bytes":13326,"imports":[{"path":"node_modules/.pnpm/has-symbols@1.0.3/node_modules/has-symbols/index.js","kind":"require-call","original":"has-symbols"},{"path":"node_modules/.pnpm/has-proto@1.0.1/node_modules/has-proto/index.js","kind":"require-call","original":"has-proto"},{"path":"node_modules/.pnpm/function-bind@1.1.2/node_modules/function-bind/index.js","kind":"require-call","original":"function-bind"},{"path":"node_modules/.pnpm/hasown@2.0.0/node_modules/hasown/index.js","kind":"require-call","original":"hasown"}],"format":"cjs"},"node_modules/.pnpm/has-property-descriptors@1.0.0/node_modules/has-property-descriptors/index.js":{"bytes":817,"imports":[{"path":"node_modules/.pnpm/get-intrinsic@1.2.2/node_modules/get-intrinsic/index.js","kind":"require-call","original":"get-intrinsic"}],"format":"cjs"},"node_modules/.pnpm/gopd@1.0.1/node_modules/gopd/index.js":{"bytes":263,"imports":[{"path":"node_modules/.pnpm/get-intrinsic@1.2.2/node_modules/get-intrinsic/index.js","kind":"require-call","original":"get-intrinsic"}],"format":"cjs"},"node_modules/.pnpm/define-data-property@1.1.1/node_modules/define-data-property/index.js":{"bytes":2838,"imports":[{"path":"node_modules/.pnpm/has-property-descriptors@1.0.0/node_modules/has-property-descriptors/index.js","kind":"require-call","original":"has-property-descriptors"},{"path":"node_modules/.pnpm/get-intrinsic@1.2.2/node_modules/get-intrinsic/index.js","kind":"require-call","original":"get-intrinsic"},{"path":"node_modules/.pnpm/gopd@1.0.1/node_modules/gopd/index.js","kind":"require-call","original":"gopd"}],"format":"cjs"},"node_modules/.pnpm/set-function-length@1.1.1/node_modules/set-function-length/index.js":{"bytes":1170,"imports":[{"path":"node_modules/.pnpm/get-intrinsic@1.2.2/node_modules/get-intrinsic/index.js","kind":"require-call","original":"get-intrinsic"},{"path":"node_modules/.pnpm/define-data-property@1.1.1/node_modules/define-data-property/index.js","kind":"require-call","original":"define-data-property"},{"path":"node_modules/.pnpm/has-property-descriptors@1.0.0/node_modules/has-property-descriptors/index.js","kind":"require-call","original":"has-property-descriptors"},{"path":"node_modules/.pnpm/gopd@1.0.1/node_modules/gopd/index.js","kind":"require-call","original":"gopd"}],"format":"cjs"},"node_modules/.pnpm/call-bind@1.0.5/node_modules/call-bind/index.js":{"bytes":1212,"imports":[{"path":"node_modules/.pnpm/function-bind@1.1.2/node_modules/function-bind/index.js","kind":"require-call","original":"function-bind"},{"path":"node_modules/.pnpm/get-intrinsic@1.2.2/node_modules/get-intrinsic/index.js","kind":"require-call","original":"get-intrinsic"},{"path":"node_modules/.pnpm/set-function-length@1.1.1/node_modules/set-function-length/index.js","kind":"require-call","original":"set-function-length"}],"format":"cjs"},"node_modules/.pnpm/call-bind@1.0.5/node_modules/call-bind/callBound.js":{"bytes":413,"imports":[{"path":"node_modules/.pnpm/get-intrinsic@1.2.2/node_modules/get-intrinsic/index.js","kind":"require-call","original":"get-intrinsic"},{"path":"node_modules/.pnpm/call-bind@1.0.5/node_modules/call-bind/index.js","kind":"require-call","original":"./"}],"format":"cjs"},"node_modules/.pnpm/is-arguments@1.1.1/node_modules/is-arguments/index.js":{"bytes":976,"imports":[{"path":"node_modules/.pnpm/has-tostringtag@1.0.0/node_modules/has-tostringtag/shams.js","kind":"require-call","original":"has-tostringtag/shams"},{"path":"node_modules/.pnpm/call-bind@1.0.5/node_modules/call-bind/callBound.js","kind":"require-call","original":"call-bind/callBound"}],"format":"cjs"},"node_modules/.pnpm/is-generator-function@1.0.10/node_modules/is-generator-function/index.js":{"bytes":964,"imports":[{"path":"node_modules/.pnpm/has-tostringtag@1.0.0/node_modules/has-tostringtag/shams.js","kind":"require-call","original":"has-tostringtag/shams"}],"format":"cjs"},"node_modules/.pnpm/is-callable@1.2.7/node_modules/is-callable/index.js":{"bytes":3224,"imports":[],"format":"cjs"},"node_modules/.pnpm/for-each@0.3.3/node_modules/for-each/index.js":{"bytes":1761,"imports":[{"path":"node_modules/.pnpm/is-callable@1.2.7/node_modules/is-callable/index.js","kind":"require-call","original":"is-callable"}],"format":"cjs"},"node_modules/.pnpm/available-typed-arrays@1.0.5/node_modules/available-typed-arrays/index.js":{"bytes":519,"imports":[],"format":"cjs"},"node_modules/.pnpm/call-bind@1.0.2/node_modules/call-bind/index.js":{"bytes":1306,"imports":[{"path":"node_modules/.pnpm/function-bind@1.1.2/node_modules/function-bind/index.js","kind":"require-call","original":"function-bind"},{"path":"node_modules/.pnpm/get-intrinsic@1.2.2/node_modules/get-intrinsic/index.js","kind":"require-call","original":"get-intrinsic"}],"format":"cjs"},"node_modules/.pnpm/call-bind@1.0.2/node_modules/call-bind/callBound.js":{"bytes":413,"imports":[{"path":"node_modules/.pnpm/get-intrinsic@1.2.2/node_modules/get-intrinsic/index.js","kind":"require-call","original":"get-intrinsic"},{"path":"node_modules/.pnpm/call-bind@1.0.2/node_modules/call-bind/index.js","kind":"require-call","original":"./"}],"format":"cjs"},"node_modules/.pnpm/es-abstract@1.20.4/node_modules/es-abstract/helpers/getOwnPropertyDescriptor.js":{"bytes":262,"imports":[{"path":"node_modules/.pnpm/get-intrinsic@1.2.2/node_modules/get-intrinsic/index.js","kind":"require-call","original":"get-intrinsic"}],"format":"cjs"},"node_modules/.pnpm/which-typed-array@1.1.13/node_modules/which-typed-array/index.js":{"bytes":2406,"imports":[{"path":"node_modules/.pnpm/for-each@0.3.3/node_modules/for-each/index.js","kind":"require-call","original":"for-each"},{"path":"node_modules/.pnpm/available-typed-arrays@1.0.5/node_modules/available-typed-arrays/index.js","kind":"require-call","original":"available-typed-arrays"},{"path":"node_modules/.pnpm/call-bind@1.0.5/node_modules/call-bind/index.js","kind":"require-call","original":"call-bind"},{"path":"node_modules/.pnpm/call-bind@1.0.5/node_modules/call-bind/callBound.js","kind":"require-call","original":"call-bind/callBound"},{"path":"node_modules/.pnpm/gopd@1.0.1/node_modules/gopd/index.js","kind":"require-call","original":"gopd"},{"path":"node_modules/.pnpm/has-tostringtag@1.0.0/node_modules/has-tostringtag/shams.js","kind":"require-call","original":"has-tostringtag/shams"}],"format":"cjs"},"node_modules/.pnpm/is-typed-array@1.1.12/node_modules/is-typed-array/index.js":{"bytes":153,"imports":[{"path":"node_modules/.pnpm/which-typed-array@1.1.13/node_modules/which-typed-array/index.js","kind":"require-call","original":"which-typed-array"}],"format":"cjs"},"node_modules/.pnpm/which-typed-array@1.1.8/node_modules/which-typed-array/index.js":{"bytes":1670,"imports":[{"path":"node_modules/.pnpm/for-each@0.3.3/node_modules/for-each/index.js","kind":"require-call","original":"for-each"},{"path":"node_modules/.pnpm/available-typed-arrays@1.0.5/node_modules/available-typed-arrays/index.js","kind":"require-call","original":"available-typed-arrays"},{"path":"node_modules/.pnpm/call-bind@1.0.2/node_modules/call-bind/callBound.js","kind":"require-call","original":"call-bind/callBound"},{"path":"node_modules/.pnpm/has-tostringtag@1.0.0/node_modules/has-tostringtag/shams.js","kind":"require-call","original":"has-tostringtag/shams"},{"path":"node_modules/.pnpm/es-abstract@1.20.4/node_modules/es-abstract/helpers/getOwnPropertyDescriptor.js","kind":"require-call","original":"es-abstract/helpers/getOwnPropertyDescriptor"},{"path":"node_modules/.pnpm/is-typed-array@1.1.12/node_modules/is-typed-array/index.js","kind":"require-call","original":"is-typed-array"}],"format":"cjs"},"node_modules/.pnpm/is-typed-array@1.1.9/node_modules/is-typed-array/index.js":{"bytes":1810,"imports":[{"path":"node_modules/.pnpm/for-each@0.3.3/node_modules/for-each/index.js","kind":"require-call","original":"for-each"},{"path":"node_modules/.pnpm/available-typed-arrays@1.0.5/node_modules/available-typed-arrays/index.js","kind":"require-call","original":"available-typed-arrays"},{"path":"node_modules/.pnpm/call-bind@1.0.2/node_modules/call-bind/callBound.js","kind":"require-call","original":"call-bind/callBound"},{"path":"node_modules/.pnpm/has-tostringtag@1.0.0/node_modules/has-tostringtag/shams.js","kind":"require-call","original":"has-tostringtag/shams"},{"path":"node_modules/.pnpm/es-abstract@1.20.4/node_modules/es-abstract/helpers/getOwnPropertyDescriptor.js","kind":"require-call","original":"es-abstract/helpers/getOwnPropertyDescriptor"}],"format":"cjs"},"node_modules/.pnpm/util@0.12.5/node_modules/util/support/types.js":{"bytes":8672,"imports":[{"path":"node_modules/.pnpm/is-arguments@1.1.1/node_modules/is-arguments/index.js","kind":"require-call","original":"is-arguments"},{"path":"node_modules/.pnpm/is-generator-function@1.0.10/node_modules/is-generator-function/index.js","kind":"require-call","original":"is-generator-function"},{"path":"node_modules/.pnpm/which-typed-array@1.1.8/node_modules/which-typed-array/index.js","kind":"require-call","original":"which-typed-array"},{"path":"node_modules/.pnpm/is-typed-array@1.1.9/node_modules/is-typed-array/index.js","kind":"require-call","original":"is-typed-array"}],"format":"cjs"},"node_modules/.pnpm/util@0.12.5/node_modules/util/support/isBuffer.js":{"bytes":76,"imports":[],"format":"cjs"},"node_modules/.pnpm/inherits@2.0.4/node_modules/inherits/inherits_browser.js":{"bytes":753,"imports":[],"format":"cjs"},"node_modules/.pnpm/inherits@2.0.4/node_modules/inherits/inherits.js":{"bytes":250,"imports":[{"path":"util","kind":"require-call","external":true},{"path":"node_modules/.pnpm/inherits@2.0.4/node_modules/inherits/inherits_browser.js","kind":"require-call","original":"./inherits_browser.js"}],"format":"cjs"},"node_modules/.pnpm/util@0.12.5/node_modules/util/util.js":{"bytes":19697,"imports":[{"path":"node_modules/.pnpm/util@0.12.5/node_modules/util/support/types.js","kind":"require-call","original":"./support/types"},{"path":"node_modules/.pnpm/util@0.12.5/node_modules/util/support/isBuffer.js","kind":"require-call","original":"./support/isBuffer"},{"path":"node_modules/.pnpm/inherits@2.0.4/node_modules/inherits/inherits.js","kind":"require-call","original":"inherits"}],"format":"cjs"},"packages/common/node-std/src/util.js":{"bytes":200,"imports":[{"path":"packages/common/node-std/src/globals.js","kind":"import-statement","original":"./globals"},{"path":"node_modules/.pnpm/util@0.12.5/node_modules/util/util.js","kind":"import-statement","original":"util/"},{"path":"node_modules/.pnpm/util@0.12.5/node_modules/util/util.js","kind":"import-statement","original":"util/"}],"format":"esm"}},"outputs":{"packages/common/node-std/dist/lib/node/inject-globals.cjs.map":{"imports":[],"exports":[],"inputs":{},"bytes":453},"packages/common/node-std/dist/lib/node/inject-globals.cjs":{"imports":[{"path":"packages/common/node-std/dist/lib/node/chunk-ENV4LVNZ.cjs","kind":"import-statement"},{"path":"packages/common/node-std/dist/lib/node/chunk-LQSBC3HI.cjs","kind":"import-statement"},{"path":"packages/common/node-std/dist/lib/node/chunk-XUVUYQ27.cjs","kind":"import-statement"}],"exports":["Buffer","global","process"],"entryPoint":"packages/common/node-std/src/inject-globals.js","inputs":{"packages/common/node-std/src/inject-globals.js":{"bytesInOutput":72}},"bytes":425},"packages/common/node-std/dist/lib/node/path.cjs.map":{"imports":[],"exports":[],"inputs":{},"bytes":25649},"packages/common/node-std/dist/lib/node/path.cjs":{"imports":[{"path":"packages/common/node-std/dist/lib/node/chunk-XUVUYQ27.cjs","kind":"import-statement"}],"exports":["basename","default","dirname","extname","format","isAbsolute","join","normalize","parse","relative","resolve"],"entryPoint":"packages/common/node-std/src/path.js","inputs":{"node_modules/.pnpm/path-browserify@1.0.1/node_modules/path-browserify/index.js":{"bytesInOutput":13607},"packages/common/node-std/src/path.js":{"bytesInOutput":137}},"bytes":14828},"packages/common/node-std/dist/lib/node/stream.cjs.map":{"imports":[],"exports":[],"inputs":{},"bytes":312},"packages/common/node-std/dist/lib/node/stream.cjs":{"imports":[{"path":"packages/common/node-std/dist/lib/node/chunk-XUVUYQ27.cjs","kind":"import-statement"},{"path":"readable-stream","kind":"import-statement","external":true}],"exports":["Duplex","PassThrough","Readable","Stream","Transform","Writable","pipeline"],"entryPoint":"packages/common/node-std/src/stream.js","inputs":{"packages/common/node-std/src/stream.js":{"bytesInOutput":104}},"bytes":309},"packages/common/node-std/dist/lib/node/util.cjs.map":{"imports":[],"exports":[],"inputs":{},"bytes":122144},"packages/common/node-std/dist/lib/node/util.cjs":{"imports":[{"path":"packages/common/node-std/dist/lib/node/chunk-D73VD6UV.cjs","kind":"import-statement"},{"path":"packages/common/node-std/dist/lib/node/chunk-ENV4LVNZ.cjs","kind":"import-statement"},{"path":"packages/common/node-std/dist/lib/node/chunk-LQSBC3HI.cjs","kind":"import-statement"},{"path":"packages/common/node-std/dist/lib/node/chunk-XUVUYQ27.cjs","kind":"import-statement"},{"path":"util","kind":"require-call","external":true}],"exports":["callbackify","default","inspect","promisify"],"entryPoint":"packages/common/node-std/src/util.js","inputs":{"node_modules/.pnpm/has-symbols@1.0.3/node_modules/has-symbols/shams.js":{"bytesInOutput":1620},"node_modules/.pnpm/has-tostringtag@1.0.0/node_modules/has-tostringtag/shams.js":{"bytesInOutput":312},"node_modules/.pnpm/has-symbols@1.0.3/node_modules/has-symbols/index.js":{"bytesInOutput":656},"node_modules/.pnpm/has-proto@1.0.1/node_modules/has-proto/index.js":{"bytesInOutput":363},"node_modules/.pnpm/function-bind@1.1.2/node_modules/function-bind/implementation.js":{"bytesInOutput":2246},"node_modules/.pnpm/function-bind@1.1.2/node_modules/function-bind/index.js":{"bytesInOutput":280},"node_modules/.pnpm/hasown@2.0.0/node_modules/hasown/index.js":{"bytesInOutput":322},"node_modules/.pnpm/get-intrinsic@1.2.2/node_modules/get-intrinsic/index.js":{"bytesInOutput":14029},"node_modules/.pnpm/has-property-descriptors@1.0.0/node_modules/has-property-descriptors/index.js":{"bytesInOutput":940},"node_modules/.pnpm/gopd@1.0.1/node_modules/gopd/index.js":{"bytesInOutput":401},"node_modules/.pnpm/define-data-property@1.1.1/node_modules/define-data-property/index.js":{"bytesInOutput":2777},"node_modules/.pnpm/set-function-length@1.1.1/node_modules/set-function-length/index.js":{"bytesInOutput":1509},"node_modules/.pnpm/call-bind@1.0.5/node_modules/call-bind/index.js":{"bytesInOutput":1467},"node_modules/.pnpm/call-bind@1.0.5/node_modules/call-bind/callBound.js":{"bytesInOutput":603},"node_modules/.pnpm/is-arguments@1.1.1/node_modules/is-arguments/index.js":{"bytesInOutput":1155},"node_modules/.pnpm/is-generator-function@1.0.10/node_modules/is-generator-function/index.js":{"bytesInOutput":1254},"node_modules/.pnpm/is-callable@1.2.7/node_modules/is-callable/index.js":{"bytesInOutput":3544},"node_modules/.pnpm/for-each@0.3.3/node_modules/for-each/index.js":{"bytesInOutput":1892},"node_modules/.pnpm/available-typed-arrays@1.0.5/node_modules/available-typed-arrays/index.js":{"bytesInOutput":808},"node_modules/.pnpm/call-bind@1.0.2/node_modules/call-bind/index.js":{"bytesInOutput":1492},"node_modules/.pnpm/call-bind@1.0.2/node_modules/call-bind/callBound.js":{"bytesInOutput":605},"node_modules/.pnpm/es-abstract@1.20.4/node_modules/es-abstract/helpers/getOwnPropertyDescriptor.js":{"bytesInOutput":463},"node_modules/.pnpm/which-typed-array@1.1.13/node_modules/which-typed-array/index.js":{"bytesInOutput":2924},"node_modules/.pnpm/is-typed-array@1.1.12/node_modules/is-typed-array/index.js":{"bytesInOutput":322},"node_modules/.pnpm/which-typed-array@1.1.8/node_modules/which-typed-array/index.js":{"bytesInOutput":2051},"node_modules/.pnpm/is-typed-array@1.1.9/node_modules/is-typed-array/index.js":{"bytesInOutput":2191},"node_modules/.pnpm/util@0.12.5/node_modules/util/support/types.js":{"bytesInOutput":9162},"node_modules/.pnpm/util@0.12.5/node_modules/util/support/isBuffer.js":{"bytesInOutput":225},"node_modules/.pnpm/inherits@2.0.4/node_modules/inherits/inherits_browser.js":{"bytesInOutput":928},"node_modules/.pnpm/inherits@2.0.4/node_modules/inherits/inherits.js":{"bytesInOutput":373},"node_modules/.pnpm/util@0.12.5/node_modules/util/util.js":{"bytesInOutput":17777},"packages/common/node-std/src/util.js":{"bytesInOutput":127}},"bytes":77805},"packages/common/node-std/dist/lib/node/_/config.cjs.map":{"imports":[],"exports":[],"inputs":{},"bytes":539},"packages/common/node-std/dist/lib/node/_/config.cjs":{"imports":[{"path":"packages/common/node-std/dist/lib/node/chunk-XUVUYQ27.cjs","kind":"import-statement"}],"exports":["GLOBALS","MODULES"],"entryPoint":"packages/common/node-std/src/_/config.js","inputs":{"packages/common/node-std/src/_/config.js":{"bytesInOutput":183}},"bytes":329},"packages/common/node-std/dist/lib/node/assert.cjs.map":{"imports":[],"exports":[],"inputs":{},"bytes":491},"packages/common/node-std/dist/lib/node/assert.cjs":{"imports":[{"path":"packages/common/node-std/dist/lib/node/chunk-XUVUYQ27.cjs","kind":"import-statement"},{"path":"assert","kind":"import-statement","external":true}],"exports":["default"],"entryPoint":"packages/common/node-std/src/assert.js","inputs":{"packages/common/node-std/src/assert.js":{"bytesInOutput":58}},"bytes":208},"packages/common/node-std/dist/lib/node/buffer.cjs.map":{"imports":[],"exports":[],"inputs":{},"bytes":212},"packages/common/node-std/dist/lib/node/buffer.cjs":{"imports":[{"path":"packages/common/node-std/dist/lib/node/chunk-LQSBC3HI.cjs","kind":"import-statement"},{"path":"packages/common/node-std/dist/lib/node/chunk-XUVUYQ27.cjs","kind":"import-statement"}],"exports":["Buffer"],"entryPoint":"packages/common/node-std/src/buffer.js","inputs":{"packages/common/node-std/src/buffer.js":{"bytesInOutput":47}},"bytes":313},"packages/common/node-std/dist/lib/node/crypto.cjs.map":{"imports":[],"exports":[],"inputs":{},"bytes":308},"packages/common/node-std/dist/lib/node/crypto.cjs":{"imports":[{"path":"packages/common/node-std/dist/lib/node/chunk-XUVUYQ27.cjs","kind":"import-statement"}],"exports":["randomBytes"],"entryPoint":"packages/common/node-std/src/crypto.js","inputs":{"packages/common/node-std/src/crypto.js":{"bytesInOutput":82}},"bytes":218},"packages/common/node-std/dist/lib/node/events.cjs.map":{"imports":[],"exports":[],"inputs":{},"bytes":308},"packages/common/node-std/dist/lib/node/events.cjs":{"imports":[{"path":"packages/common/node-std/dist/lib/node/chunk-XUVUYQ27.cjs","kind":"import-statement"},{"path":"events","kind":"import-statement","external":true}],"exports":["EventEmitter","default"],"entryPoint":"packages/common/node-std/src/events.js","inputs":{"packages/common/node-std/src/events.js":{"bytesInOutput":78}},"bytes":244},"packages/common/node-std/dist/lib/node/fs.cjs.map":{"imports":[],"exports":[],"inputs":{},"bytes":844},"packages/common/node-std/dist/lib/node/fs.cjs":{"imports":[{"path":"packages/common/node-std/dist/lib/node/chunk-XUVUYQ27.cjs","kind":"import-statement"}],"exports":["appendFileSync","default","existsSync","mkdirSync","openSync","statSync"],"entryPoint":"packages/common/node-std/src/fs.js","inputs":{"packages/common/node-std/src/fs.js":{"bytesInOutput":367}},"bytes":574},"packages/common/node-std/dist/lib/node/fs/promises.cjs.map":{"imports":[],"exports":[],"inputs":{},"bytes":2439},"packages/common/node-std/dist/lib/node/fs/promises.cjs":{"imports":[{"path":"packages/common/node-std/dist/lib/node/chunk-XUVUYQ27.cjs","kind":"import-statement"}],"exports":["access","appendFile","chmod","chown","copyFile","cp","lchmod","lchown","link","lstat","lutimes","mkdir","mkdtemp","open","opendir","readFile","readdir","readlink","realpath","rename","rm","rmdir","stat","symlink","to","truncate","unlink","utimes","watch","writeFile"],"entryPoint":"packages/common/node-std/src/fs/promises.js","inputs":{"packages/common/node-std/src/fs/promises.js":{"bytesInOutput":1131}},"bytes":1558},"packages/common/node-std/dist/lib/node/globals.cjs.map":{"imports":[],"exports":[],"inputs":{},"bytes":93},"packages/common/node-std/dist/lib/node/globals.cjs":{"imports":[{"path":"packages/common/node-std/dist/lib/node/chunk-D73VD6UV.cjs","kind":"import-statement"},{"path":"packages/common/node-std/dist/lib/node/chunk-ENV4LVNZ.cjs","kind":"import-statement"},{"path":"packages/common/node-std/dist/lib/node/chunk-LQSBC3HI.cjs","kind":"import-statement"},{"path":"packages/common/node-std/dist/lib/node/chunk-XUVUYQ27.cjs","kind":"import-statement"}],"exports":[],"entryPoint":"packages/common/node-std/src/globals.js","inputs":{},"bytes":161},"packages/common/node-std/dist/lib/node/chunk-D73VD6UV.cjs.map":{"imports":[],"exports":[],"inputs":{},"bytes":1288},"packages/common/node-std/dist/lib/node/chunk-D73VD6UV.cjs":{"imports":[{"path":"packages/common/node-std/dist/lib/node/chunk-ENV4LVNZ.cjs","kind":"import-statement"},{"path":"packages/common/node-std/dist/lib/node/chunk-LQSBC3HI.cjs","kind":"import-statement"},{"path":"packages/common/node-std/dist/lib/node/chunk-XUVUYQ27.cjs","kind":"import-statement"}],"exports":[],"inputs":{"packages/common/node-std/src/globals.js":{"bytesInOutput":541}},"bytes":786},"packages/common/node-std/dist/lib/node/chunk-ENV4LVNZ.cjs.map":{"imports":[],"exports":[],"inputs":{},"bytes":5258},"packages/common/node-std/dist/lib/node/chunk-ENV4LVNZ.cjs":{"imports":[],"exports":["process"],"inputs":{"packages/common/node-std/src/process.js":{"bytesInOutput":2367}},"bytes":2477},"packages/common/node-std/dist/lib/node/chunk-LQSBC3HI.cjs.map":{"imports":[],"exports":[],"inputs":{},"bytes":111174},"packages/common/node-std/dist/lib/node/chunk-LQSBC3HI.cjs":{"imports":[{"path":"packages/common/node-std/dist/lib/node/chunk-XUVUYQ27.cjs","kind":"import-statement"}],"exports":["require_buffer"],"inputs":{"node_modules/.pnpm/base64-js@1.5.1/node_modules/base64-js/index.js":{"bytesInOutput":3735},"node_modules/.pnpm/ieee754@1.2.1/node_modules/ieee754/index.js":{"bytesInOutput":2505},"node_modules/.pnpm/buffer@6.0.3/node_modules/buffer/index.js":{"bytesInOutput":57845}},"bytes":64726},"packages/common/node-std/dist/lib/node/chunk-XUVUYQ27.cjs.map":{"imports":[],"exports":[],"inputs":{},"bytes":93},"packages/common/node-std/dist/lib/node/chunk-XUVUYQ27.cjs":{"imports":[],"exports":["__commonJS","__require","__toESM"],"inputs":{},"bytes":1784}}}
|
package/dist/lib/node/util.cjs
CHANGED
|
@@ -24,7 +24,7 @@ __export(util_exports, {
|
|
|
24
24
|
promisify: () => export_promisify
|
|
25
25
|
});
|
|
26
26
|
module.exports = __toCommonJS(util_exports);
|
|
27
|
-
var
|
|
27
|
+
var import_chunk_D73VD6UV = require("./chunk-D73VD6UV.cjs");
|
|
28
28
|
var import_chunk_ENV4LVNZ = require("./chunk-ENV4LVNZ.cjs");
|
|
29
29
|
var import_chunk_LQSBC3HI = require("./chunk-LQSBC3HI.cjs");
|
|
30
30
|
var import_chunk_XUVUYQ27 = require("./chunk-XUVUYQ27.cjs");
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@dxos/node-std",
|
|
3
|
-
"version": "0.5.
|
|
3
|
+
"version": "0.5.9-main.079a532",
|
|
4
4
|
"description": "Simple wrapper for browser replacements of node stdlib modules within the DXOS codebase.",
|
|
5
5
|
"homepage": "https://dxos.org",
|
|
6
6
|
"bugs": "https://github.com/dxos/dxos/issues",
|
|
@@ -1,16 +0,0 @@
|
|
|
1
|
-
import {
|
|
2
|
-
process
|
|
3
|
-
} from "./chunk-QWZSWMMO.mjs";
|
|
4
|
-
import {
|
|
5
|
-
require_buffer
|
|
6
|
-
} from "./chunk-HFGMGNFE.mjs";
|
|
7
|
-
import {
|
|
8
|
-
__toESM
|
|
9
|
-
} from "./chunk-MJPHVYKR.mjs";
|
|
10
|
-
|
|
11
|
-
// packages/common/node-std/src/globals.js
|
|
12
|
-
var import_buffer = __toESM(require_buffer());
|
|
13
|
-
globalThis.global = globalThis;
|
|
14
|
-
globalThis.Buffer = import_buffer.Buffer;
|
|
15
|
-
globalThis.process = process;
|
|
16
|
-
//# sourceMappingURL=chunk-P5GBL7TE.mjs.map
|
|
@@ -1,7 +0,0 @@
|
|
|
1
|
-
{
|
|
2
|
-
"version": 3,
|
|
3
|
-
"sources": ["../../../src/globals.js"],
|
|
4
|
-
"sourcesContent": ["//\n// Copyright 2022 DXOS.org\n//\n\nimport { Buffer } from 'buffer/';\n\nimport { process } from './process';\n\nglobalThis.global = globalThis;\nglobalThis.Buffer = Buffer;\nglobalThis.process = process;\n"],
|
|
5
|
-
"mappings": ";;;;;;;;;;;AAIA,oBAAuB;AAIvB,WAAW,SAAS;AACpB,WAAW,SAAS;AACpB,WAAW,UAAU;",
|
|
6
|
-
"names": []
|
|
7
|
-
}
|
|
@@ -1,9 +0,0 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
var import_chunk_ENV4LVNZ = require("./chunk-ENV4LVNZ.cjs");
|
|
3
|
-
var import_chunk_LQSBC3HI = require("./chunk-LQSBC3HI.cjs");
|
|
4
|
-
var import_chunk_XUVUYQ27 = require("./chunk-XUVUYQ27.cjs");
|
|
5
|
-
var import_buffer = (0, import_chunk_XUVUYQ27.__toESM)((0, import_chunk_LQSBC3HI.require_buffer)());
|
|
6
|
-
globalThis.global = globalThis;
|
|
7
|
-
globalThis.Buffer = import_buffer.Buffer;
|
|
8
|
-
globalThis.process = import_chunk_ENV4LVNZ.process;
|
|
9
|
-
//# sourceMappingURL=chunk-JHZ6V4WV.cjs.map
|
|
@@ -1,7 +0,0 @@
|
|
|
1
|
-
{
|
|
2
|
-
"version": 3,
|
|
3
|
-
"sources": ["../../../src/globals.js"],
|
|
4
|
-
"sourcesContent": ["//\n// Copyright 2022 DXOS.org\n//\n\nimport { Buffer } from 'buffer/';\n\nimport { process } from './process';\n\nglobalThis.global = globalThis;\nglobalThis.Buffer = Buffer;\nglobalThis.process = process;\n"],
|
|
5
|
-
"mappings": ";;;;AAIA,IAAA,oBAAuB,mCAAA,sCAAA,CAAA;AAIvB,WAAW,SAAS;AACpB,WAAW,SAAS,cAAA;AACpB,WAAW,UAAU;",
|
|
6
|
-
"names": []
|
|
7
|
-
}
|