secure-exec 0.0.1 → 0.1.0-rc.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/LICENSE +191 -0
- package/README.md +7 -0
- package/dist/bridge/active-handles.d.ts +21 -0
- package/dist/bridge/active-handles.js +60 -0
- package/dist/bridge/child-process.d.ts +87 -0
- package/dist/bridge/child-process.js +523 -0
- package/dist/bridge/fs.d.ts +227 -0
- package/dist/bridge/fs.js +1572 -0
- package/dist/bridge/index.d.ts +10 -0
- package/dist/bridge/index.js +41 -0
- package/dist/bridge/module.d.ts +73 -0
- package/dist/bridge/module.js +329 -0
- package/dist/bridge/network.d.ts +208 -0
- package/dist/bridge/network.js +1117 -0
- package/dist/bridge/os.d.ts +13 -0
- package/dist/bridge/os.js +257 -0
- package/dist/bridge/polyfills.d.ts +2 -0
- package/dist/bridge/polyfills.js +12 -0
- package/dist/bridge/process.d.ts +64 -0
- package/dist/bridge/process.js +916 -0
- package/dist/bridge-loader.d.ts +1 -0
- package/dist/bridge-loader.js +2 -0
- package/dist/bridge-setup.d.ts +1 -0
- package/dist/bridge-setup.js +2 -0
- package/dist/bridge.js +10586 -0
- package/dist/browser/driver.d.ts +42 -0
- package/dist/browser/driver.js +263 -0
- package/dist/browser/index.d.ts +5 -0
- package/dist/browser/index.js +4 -0
- package/dist/browser/worker.d.ts +1 -0
- package/dist/browser/worker.js +3 -0
- package/dist/browser-runtime.d.ts +6 -0
- package/dist/browser-runtime.js +4 -0
- package/dist/esm-compiler.d.ts +1 -0
- package/dist/esm-compiler.js +2 -0
- package/dist/execution.d.ts +1 -0
- package/dist/execution.js +2 -0
- package/dist/fs-helpers.d.ts +2 -0
- package/dist/fs-helpers.js +1 -0
- package/dist/generated/isolate-runtime.d.ts +19 -0
- package/dist/generated/isolate-runtime.js +21 -0
- package/dist/generated/polyfills.d.ts +82 -0
- package/dist/generated/polyfills.js +82 -0
- package/dist/index.d.ts +15 -0
- package/dist/index.js +11 -0
- package/dist/isolate-runtime/apply-custom-global-policy.js +54 -0
- package/dist/isolate-runtime/apply-timing-mitigation-freeze.js +44 -0
- package/dist/isolate-runtime/apply-timing-mitigation-off.js +14 -0
- package/dist/isolate-runtime/bridge-attach.js +29 -0
- package/dist/isolate-runtime/bridge-initial-globals.js +78 -0
- package/dist/isolate-runtime/eval-script-result.js +8 -0
- package/dist/isolate-runtime/global-exposure-helpers.js +36 -0
- package/dist/isolate-runtime/init-commonjs-module-globals.js +28 -0
- package/dist/isolate-runtime/override-process-cwd.js +8 -0
- package/dist/isolate-runtime/override-process-env.js +8 -0
- package/dist/isolate-runtime/require-setup.js +606 -0
- package/dist/isolate-runtime/set-commonjs-file-globals.js +36 -0
- package/dist/isolate-runtime/set-stdin-data.js +10 -0
- package/dist/isolate-runtime/setup-dynamic-import.js +64 -0
- package/dist/isolate-runtime/setup-fs-facade.js +40 -0
- package/dist/isolate.d.ts +1 -0
- package/dist/isolate.js +2 -0
- package/dist/module-resolver.d.ts +1 -0
- package/dist/module-resolver.js +2 -0
- package/dist/node/bridge-setup.d.ts +1 -0
- package/dist/node/bridge-setup.js +2 -0
- package/dist/node/driver.d.ts +2 -0
- package/dist/node/driver.js +2 -0
- package/dist/node/esm-compiler.d.ts +1 -0
- package/dist/node/esm-compiler.js +2 -0
- package/dist/node/execution-driver.d.ts +2 -0
- package/dist/node/execution-driver.js +2 -0
- package/dist/node/execution-lifecycle.d.ts +1 -0
- package/dist/node/execution-lifecycle.js +2 -0
- package/dist/node/isolate-bootstrap.d.ts +2 -0
- package/dist/node/isolate-bootstrap.js +1 -0
- package/dist/node/module-access.d.ts +2 -0
- package/dist/node/module-access.js +2 -0
- package/dist/node/module-resolver.d.ts +1 -0
- package/dist/node/module-resolver.js +2 -0
- package/dist/package-bundler.d.ts +2 -0
- package/dist/package-bundler.js +1 -0
- package/dist/polyfills.d.ts +1 -0
- package/dist/polyfills.js +2 -0
- package/dist/python-runtime.d.ts +2 -0
- package/dist/python-runtime.js +2 -0
- package/dist/runtime-driver.d.ts +1 -0
- package/dist/runtime-driver.js +1 -0
- package/dist/runtime.d.ts +2 -0
- package/dist/runtime.js +2 -0
- package/dist/shared/api-types.d.ts +1 -0
- package/dist/shared/api-types.js +1 -0
- package/dist/shared/bridge-contract.d.ts +2 -0
- package/dist/shared/bridge-contract.js +1 -0
- package/dist/shared/console-formatter.d.ts +2 -0
- package/dist/shared/console-formatter.js +1 -0
- package/dist/shared/errors.d.ts +2 -0
- package/dist/shared/errors.js +1 -0
- package/dist/shared/esm-utils.d.ts +1 -0
- package/dist/shared/esm-utils.js +2 -0
- package/dist/shared/global-exposure.d.ts +2 -0
- package/dist/shared/global-exposure.js +1 -0
- package/dist/shared/in-memory-fs.d.ts +1 -0
- package/dist/shared/in-memory-fs.js +2 -0
- package/dist/shared/permissions.d.ts +1 -0
- package/dist/shared/permissions.js +2 -0
- package/dist/shared/require-setup.d.ts +1 -0
- package/dist/shared/require-setup.js +2 -0
- package/dist/types.d.ts +2 -0
- package/dist/types.js +1 -0
- package/package.json +51 -4
- package/index.js +0 -1
|
@@ -0,0 +1,82 @@
|
|
|
1
|
+
export declare const POLYFILL_CODE_MAP: {
|
|
2
|
+
assert: string;
|
|
3
|
+
buffer: string;
|
|
4
|
+
child_process: string;
|
|
5
|
+
cluster: string;
|
|
6
|
+
console: string;
|
|
7
|
+
constants: string;
|
|
8
|
+
crypto: string;
|
|
9
|
+
dgram: string;
|
|
10
|
+
dns: string;
|
|
11
|
+
domain: string;
|
|
12
|
+
events: string;
|
|
13
|
+
fs: string;
|
|
14
|
+
http: string;
|
|
15
|
+
https: string;
|
|
16
|
+
http2: string;
|
|
17
|
+
module: string;
|
|
18
|
+
net: string;
|
|
19
|
+
os: string;
|
|
20
|
+
path: string;
|
|
21
|
+
punycode: string;
|
|
22
|
+
process: string;
|
|
23
|
+
querystring: string;
|
|
24
|
+
readline: string;
|
|
25
|
+
repl: string;
|
|
26
|
+
stream: string;
|
|
27
|
+
_stream_duplex: string;
|
|
28
|
+
_stream_passthrough: string;
|
|
29
|
+
_stream_readable: string;
|
|
30
|
+
_stream_transform: string;
|
|
31
|
+
_stream_writable: string;
|
|
32
|
+
string_decoder: string;
|
|
33
|
+
sys: string;
|
|
34
|
+
"timers/promises": string;
|
|
35
|
+
timers: string;
|
|
36
|
+
tls: string;
|
|
37
|
+
tty: string;
|
|
38
|
+
url: string;
|
|
39
|
+
util: string;
|
|
40
|
+
vm: string;
|
|
41
|
+
zlib: string;
|
|
42
|
+
"node:assert": string;
|
|
43
|
+
"node:buffer": string;
|
|
44
|
+
"node:child_process": string;
|
|
45
|
+
"node:cluster": string;
|
|
46
|
+
"node:console": string;
|
|
47
|
+
"node:constants": string;
|
|
48
|
+
"node:crypto": string;
|
|
49
|
+
"node:dgram": string;
|
|
50
|
+
"node:dns": string;
|
|
51
|
+
"node:domain": string;
|
|
52
|
+
"node:events": string;
|
|
53
|
+
"node:fs": string;
|
|
54
|
+
"node:http": string;
|
|
55
|
+
"node:https": string;
|
|
56
|
+
"node:http2": string;
|
|
57
|
+
"node:module": string;
|
|
58
|
+
"node:net": string;
|
|
59
|
+
"node:os": string;
|
|
60
|
+
"node:path": string;
|
|
61
|
+
"node:punycode": string;
|
|
62
|
+
"node:process": string;
|
|
63
|
+
"node:querystring": string;
|
|
64
|
+
"node:readline": string;
|
|
65
|
+
"node:repl": string;
|
|
66
|
+
"node:stream": string;
|
|
67
|
+
"node:_stream_duplex": string;
|
|
68
|
+
"node:_stream_passthrough": string;
|
|
69
|
+
"node:_stream_readable": string;
|
|
70
|
+
"node:_stream_transform": string;
|
|
71
|
+
"node:_stream_writable": string;
|
|
72
|
+
"node:string_decoder": string;
|
|
73
|
+
"node:sys": string;
|
|
74
|
+
"node:timers/promises": string;
|
|
75
|
+
"node:timers": string;
|
|
76
|
+
"node:tls": string;
|
|
77
|
+
"node:tty": string;
|
|
78
|
+
"node:url": string;
|
|
79
|
+
"node:util": string;
|
|
80
|
+
"node:vm": string;
|
|
81
|
+
"node:zlib": string;
|
|
82
|
+
};
|