workerd 0.0.1 → 1.20220926.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/README.md ADDED
@@ -0,0 +1,6 @@
1
+ # 👷 `workerd`, Cloudflare's JavaScript/Wasm Runtime
2
+
3
+ `workerd` is a JavaScript / Wasm server runtime based on the same code that powers
4
+ [Cloudflare Workers](https://workers.dev).
5
+
6
+ See https://github.com/cloudflare/workerd for details.
package/bin/workerd ADDED
@@ -0,0 +1,136 @@
1
+ #!/usr/bin/env node
2
+ var __create = Object.create;
3
+ var __defProp = Object.defineProperty;
4
+ var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
5
+ var __getOwnPropNames = Object.getOwnPropertyNames;
6
+ var __getProtoOf = Object.getPrototypeOf;
7
+ var __hasOwnProp = Object.prototype.hasOwnProperty;
8
+ var __copyProps = (to, from, except, desc) => {
9
+ if (from && typeof from === "object" || typeof from === "function") {
10
+ for (let key of __getOwnPropNames(from))
11
+ if (!__hasOwnProp.call(to, key) && key !== except)
12
+ __defProp(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable });
13
+ }
14
+ return to;
15
+ };
16
+ var __toESM = (mod, isNodeMode, target) => (target = mod != null ? __create(__getProtoOf(mod)) : {}, __copyProps(
17
+ isNodeMode || !mod || !mod.__esModule ? __defProp(target, "default", { value: mod, enumerable: true }) : target,
18
+ mod
19
+ ));
20
+
21
+ // npm/lib/node-platform.ts
22
+ var import_fs = __toESM(require("fs"));
23
+ var import_os = __toESM(require("os"));
24
+ var import_path = __toESM(require("path"));
25
+ var knownPackages = {
26
+ "darwin arm64 LE": "@cloudflare/workerd-darwin-arm64",
27
+ "darwin x64 LE": "@cloudflare/workerd-darwin-64",
28
+ "linux arm64 LE": "@cloudflare/workerd-linux-arm64",
29
+ "linux x64 LE": "@cloudflare/workerd-linux-64"
30
+ };
31
+ function pkgAndSubpathForCurrentPlatform() {
32
+ let pkg;
33
+ let subpath;
34
+ let platformKey = `${process.platform} ${import_os.default.arch()} ${import_os.default.endianness()}`;
35
+ if (platformKey in knownPackages) {
36
+ pkg = knownPackages[platformKey];
37
+ subpath = "bin/workerd";
38
+ } else {
39
+ throw new Error(`Unsupported platform: ${platformKey}`);
40
+ }
41
+ return { pkg, subpath };
42
+ }
43
+ function pkgForSomeOtherPlatform() {
44
+ const libMain = require.resolve("workerd");
45
+ const nodeModulesDirectory = import_path.default.dirname(
46
+ import_path.default.dirname(import_path.default.dirname(libMain))
47
+ );
48
+ if (import_path.default.basename(nodeModulesDirectory) === "node_modules") {
49
+ for (const unixKey in knownPackages) {
50
+ try {
51
+ const pkg = knownPackages[unixKey];
52
+ if (import_fs.default.existsSync(import_path.default.join(nodeModulesDirectory, pkg)))
53
+ return pkg;
54
+ } catch {
55
+ }
56
+ }
57
+ }
58
+ return null;
59
+ }
60
+ function downloadedBinPath(pkg, subpath) {
61
+ const libDir = import_path.default.dirname(require.resolve("workerd"));
62
+ return import_path.default.join(libDir, `downloaded-${pkg}-${import_path.default.basename(subpath)}`);
63
+ }
64
+ function generateBinPath() {
65
+ const { pkg, subpath } = pkgAndSubpathForCurrentPlatform();
66
+ let binPath2;
67
+ try {
68
+ binPath2 = require.resolve(`${pkg}/${subpath}`);
69
+ } catch (e) {
70
+ binPath2 = downloadedBinPath(pkg, subpath);
71
+ if (!import_fs.default.existsSync(binPath2)) {
72
+ try {
73
+ require.resolve(pkg);
74
+ } catch {
75
+ const otherPkg = pkgForSomeOtherPlatform();
76
+ if (otherPkg) {
77
+ throw new Error(`
78
+ You installed workerd on another platform than the one you're currently using.
79
+ This won't work because workerd is written with native code and needs to
80
+ install a platform-specific binary executable.
81
+
82
+ Specifically the "${otherPkg}" package is present but this platform
83
+ needs the "${pkg}" package instead. People often get into this
84
+ situation by installing workerd on macOS and copying "node_modules"
85
+ into a Docker image that runs Linux.
86
+
87
+ If you are installing with npm, you can try not copying the "node_modules"
88
+ directory when you copy the files over, and running "npm ci" or "npm install"
89
+ on the destination platform after the copy. Or you could consider using yarn
90
+ instead which has built-in support for installing a package on multiple
91
+ platforms simultaneously.
92
+
93
+ If you are installing with yarn, you can try listing both this platform and the
94
+ other platform in your ".yarnrc.yml" file using the "supportedArchitectures"
95
+ feature: https://yarnpkg.com/configuration/yarnrc/#supportedArchitectures
96
+ Keep in mind that this means multiple copies of workerd will be present.
97
+ `);
98
+ }
99
+ throw new Error(`The package "${pkg}" could not be found, and is needed by workerd.
100
+
101
+ If you are installing workerd with npm, make sure that you don't specify the
102
+ "--no-optional" flag. The "optionalDependencies" package.json feature is used
103
+ by workerd to install the correct binary executable for your current platform.`);
104
+ }
105
+ throw e;
106
+ }
107
+ }
108
+ let pnpapi;
109
+ try {
110
+ pnpapi = require("pnpapi");
111
+ } catch (e) {
112
+ }
113
+ if (pnpapi) {
114
+ const root = pnpapi.getPackageInformation(pnpapi.topLevel).packageLocation;
115
+ const binTargetPath = import_path.default.join(
116
+ root,
117
+ "node_modules",
118
+ ".cache",
119
+ "workerd",
120
+ `pnpapi-${pkg}-${WORKERD_VERSION}-${import_path.default.basename(subpath)}`
121
+ );
122
+ if (!import_fs.default.existsSync(binTargetPath)) {
123
+ import_fs.default.mkdirSync(import_path.default.dirname(binTargetPath), { recursive: true });
124
+ import_fs.default.copyFileSync(binPath2, binTargetPath);
125
+ import_fs.default.chmodSync(binTargetPath, 493);
126
+ }
127
+ return { binPath: binTargetPath };
128
+ }
129
+ return { binPath: binPath2 };
130
+ }
131
+
132
+ // npm/lib/node-shim.ts
133
+ var { binPath } = generateBinPath();
134
+ require("child_process").execFileSync(binPath, process.argv.slice(2), {
135
+ stdio: "inherit"
136
+ });
package/install.js ADDED
@@ -0,0 +1,216 @@
1
+ var __create = Object.create;
2
+ var __defProp = Object.defineProperty;
3
+ var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
4
+ var __getOwnPropNames = Object.getOwnPropertyNames;
5
+ var __getProtoOf = Object.getPrototypeOf;
6
+ var __hasOwnProp = Object.prototype.hasOwnProperty;
7
+ var __copyProps = (to, from, except, desc) => {
8
+ if (from && typeof from === "object" || typeof from === "function") {
9
+ for (let key of __getOwnPropNames(from))
10
+ if (!__hasOwnProp.call(to, key) && key !== except)
11
+ __defProp(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable });
12
+ }
13
+ return to;
14
+ };
15
+ var __toESM = (mod, isNodeMode, target) => (target = mod != null ? __create(__getProtoOf(mod)) : {}, __copyProps(
16
+ isNodeMode || !mod || !mod.__esModule ? __defProp(target, "default", { value: mod, enumerable: true }) : target,
17
+ mod
18
+ ));
19
+
20
+ // npm/lib/node-platform.ts
21
+ var import_os = __toESM(require("os"));
22
+ var import_path = __toESM(require("path"));
23
+ var knownPackages = {
24
+ "darwin arm64 LE": "@cloudflare/workerd-darwin-arm64",
25
+ "darwin x64 LE": "@cloudflare/workerd-darwin-64",
26
+ "linux arm64 LE": "@cloudflare/workerd-linux-arm64",
27
+ "linux x64 LE": "@cloudflare/workerd-linux-64"
28
+ };
29
+ function pkgAndSubpathForCurrentPlatform() {
30
+ let pkg;
31
+ let subpath;
32
+ let platformKey = `${process.platform} ${import_os.default.arch()} ${import_os.default.endianness()}`;
33
+ if (platformKey in knownPackages) {
34
+ pkg = knownPackages[platformKey];
35
+ subpath = "bin/workerd";
36
+ } else {
37
+ throw new Error(`Unsupported platform: ${platformKey}`);
38
+ }
39
+ return { pkg, subpath };
40
+ }
41
+ function downloadedBinPath(pkg, subpath) {
42
+ const libDir = import_path.default.dirname(require.resolve("workerd"));
43
+ return import_path.default.join(libDir, `downloaded-${pkg}-${import_path.default.basename(subpath)}`);
44
+ }
45
+
46
+ // npm/lib/node-install.ts
47
+ var import_fs = __toESM(require("fs"));
48
+ var import_path2 = __toESM(require("path"));
49
+ var import_zlib = __toESM(require("zlib"));
50
+ var import_https = __toESM(require("https"));
51
+ var import_child_process = __toESM(require("child_process"));
52
+ var WORKERD_VERSION2 = `1.${"2022-09-26".split("-").join("")}.0`;
53
+ var toPath = import_path2.default.join(__dirname, "bin", "workerd");
54
+ var isToPathJS = true;
55
+ function validateBinaryVersion(...command) {
56
+ command.push("--version");
57
+ const stdout = import_child_process.default.execFileSync(command.shift(), command, {
58
+ stdio: "pipe"
59
+ }).toString().trim();
60
+ if (stdout !== "2022-09-26") {
61
+ throw new Error(
62
+ `Expected ${JSON.stringify(
63
+ "2022-09-26"
64
+ )} but got ${JSON.stringify(stdout)}`
65
+ );
66
+ }
67
+ }
68
+ function isYarn() {
69
+ const { npm_config_user_agent } = process.env;
70
+ if (npm_config_user_agent) {
71
+ return /\byarn\//.test(npm_config_user_agent);
72
+ }
73
+ return false;
74
+ }
75
+ function fetch(url) {
76
+ return new Promise((resolve, reject) => {
77
+ import_https.default.get(url, (res) => {
78
+ if ((res.statusCode === 301 || res.statusCode === 302) && res.headers.location)
79
+ return fetch(res.headers.location).then(resolve, reject);
80
+ if (res.statusCode !== 200)
81
+ return reject(new Error(`Server responded with ${res.statusCode}`));
82
+ let chunks = [];
83
+ res.on("data", (chunk) => chunks.push(chunk));
84
+ res.on("end", () => resolve(Buffer.concat(chunks)));
85
+ }).on("error", reject);
86
+ });
87
+ }
88
+ function extractFileFromTarGzip(buffer, subpath) {
89
+ try {
90
+ buffer = import_zlib.default.unzipSync(buffer);
91
+ } catch (err) {
92
+ throw new Error(
93
+ `Invalid gzip data in archive: ${err && err.message || err}`
94
+ );
95
+ }
96
+ let str = (i, n) => String.fromCharCode(...buffer.subarray(i, i + n)).replace(/\0.*$/, "");
97
+ let offset = 0;
98
+ subpath = `package/${subpath}`;
99
+ while (offset < buffer.length) {
100
+ let name = str(offset, 100);
101
+ let size = parseInt(str(offset + 124, 12), 8);
102
+ offset += 512;
103
+ if (!isNaN(size)) {
104
+ if (name === subpath)
105
+ return buffer.subarray(offset, offset + size);
106
+ offset += size + 511 & ~511;
107
+ }
108
+ }
109
+ throw new Error(`Could not find ${JSON.stringify(subpath)} in archive`);
110
+ }
111
+ function installUsingNPM(pkg, subpath, binPath) {
112
+ const env = { ...process.env, npm_config_global: void 0 };
113
+ const libDir = import_path2.default.dirname(require.resolve("workerd"));
114
+ const installDir = import_path2.default.join(libDir, "npm-install");
115
+ import_fs.default.mkdirSync(installDir);
116
+ try {
117
+ import_fs.default.writeFileSync(import_path2.default.join(installDir, "package.json"), "{}");
118
+ import_child_process.default.execSync(
119
+ `npm install --loglevel=error --prefer-offline --no-audit --progress=false ${pkg}@${WORKERD_VERSION2}`,
120
+ { cwd: installDir, stdio: "pipe", env }
121
+ );
122
+ const installedBinPath = import_path2.default.join(
123
+ installDir,
124
+ "node_modules",
125
+ pkg,
126
+ subpath
127
+ );
128
+ import_fs.default.renameSync(installedBinPath, binPath);
129
+ } finally {
130
+ try {
131
+ removeRecursive(installDir);
132
+ } catch {
133
+ }
134
+ }
135
+ }
136
+ function removeRecursive(dir) {
137
+ for (const entry of import_fs.default.readdirSync(dir)) {
138
+ const entryPath = import_path2.default.join(dir, entry);
139
+ let stats;
140
+ try {
141
+ stats = import_fs.default.lstatSync(entryPath);
142
+ } catch {
143
+ continue;
144
+ }
145
+ if (stats.isDirectory())
146
+ removeRecursive(entryPath);
147
+ else
148
+ import_fs.default.unlinkSync(entryPath);
149
+ }
150
+ import_fs.default.rmdirSync(dir);
151
+ }
152
+ function maybeOptimizePackage(binPath) {
153
+ if (!isYarn()) {
154
+ const tempPath = import_path2.default.join(__dirname, "bin-workerd");
155
+ try {
156
+ import_fs.default.linkSync(binPath, tempPath);
157
+ import_fs.default.renameSync(tempPath, toPath);
158
+ isToPathJS = false;
159
+ import_fs.default.unlinkSync(tempPath);
160
+ } catch {
161
+ }
162
+ }
163
+ }
164
+ async function downloadDirectlyFromNPM(pkg, subpath, binPath) {
165
+ const url = `https://registry.npmjs.org/${pkg}/-/${pkg}-${WORKERD_VERSION2}.tgz`;
166
+ console.error(`[workerd] Trying to download ${JSON.stringify(url)}`);
167
+ try {
168
+ import_fs.default.writeFileSync(
169
+ binPath,
170
+ extractFileFromTarGzip(await fetch(url), subpath)
171
+ );
172
+ import_fs.default.chmodSync(binPath, 493);
173
+ } catch (e) {
174
+ console.error(
175
+ `[workerd] Failed to download ${JSON.stringify(url)}: ${e && e.message || e}`
176
+ );
177
+ throw e;
178
+ }
179
+ }
180
+ async function checkAndPreparePackage() {
181
+ const { pkg, subpath } = pkgAndSubpathForCurrentPlatform();
182
+ let binPath;
183
+ try {
184
+ binPath = require.resolve(`${pkg}/${subpath}`);
185
+ } catch (e) {
186
+ console.error(`[workerd] Failed to find package "${pkg}" on the file system
187
+
188
+ This can happen if you use the "--no-optional" flag. The "optionalDependencies"
189
+ package.json feature is used by workerd to install the correct binary executable
190
+ for your current platform. This install script will now attempt to work around
191
+ this. If that fails, you need to remove the "--no-optional" flag to use workerd.
192
+ `);
193
+ binPath = downloadedBinPath(pkg, subpath);
194
+ try {
195
+ console.error(`[workerd] Trying to install package "${pkg}" using npm`);
196
+ installUsingNPM(pkg, subpath, binPath);
197
+ } catch (e2) {
198
+ console.error(
199
+ `[workerd] Failed to install package "${pkg}" using npm: ${e2 && e2.message || e2}`
200
+ );
201
+ try {
202
+ await downloadDirectlyFromNPM(pkg, subpath, binPath);
203
+ } catch (e3) {
204
+ throw new Error(`Failed to install package "${pkg}"`);
205
+ }
206
+ }
207
+ }
208
+ maybeOptimizePackage(binPath);
209
+ }
210
+ checkAndPreparePackage().then(() => {
211
+ if (isToPathJS) {
212
+ validateBinaryVersion(process.execPath, toPath);
213
+ } else {
214
+ validateBinaryVersion(toPath);
215
+ }
216
+ });
package/lib/main.js ADDED
@@ -0,0 +1,148 @@
1
+ #!/usr/bin/env node
2
+ var __create = Object.create;
3
+ var __defProp = Object.defineProperty;
4
+ var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
5
+ var __getOwnPropNames = Object.getOwnPropertyNames;
6
+ var __getProtoOf = Object.getPrototypeOf;
7
+ var __hasOwnProp = Object.prototype.hasOwnProperty;
8
+ var __export = (target, all) => {
9
+ for (var name in all)
10
+ __defProp(target, name, { get: all[name], enumerable: true });
11
+ };
12
+ var __copyProps = (to, from, except, desc) => {
13
+ if (from && typeof from === "object" || typeof from === "function") {
14
+ for (let key of __getOwnPropNames(from))
15
+ if (!__hasOwnProp.call(to, key) && key !== except)
16
+ __defProp(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable });
17
+ }
18
+ return to;
19
+ };
20
+ var __toESM = (mod, isNodeMode, target) => (target = mod != null ? __create(__getProtoOf(mod)) : {}, __copyProps(
21
+ isNodeMode || !mod || !mod.__esModule ? __defProp(target, "default", { value: mod, enumerable: true }) : target,
22
+ mod
23
+ ));
24
+ var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: true }), mod);
25
+
26
+ // npm/lib/node-path.ts
27
+ var node_path_exports = {};
28
+ __export(node_path_exports, {
29
+ default: () => node_path_default
30
+ });
31
+ module.exports = __toCommonJS(node_path_exports);
32
+
33
+ // npm/lib/node-platform.ts
34
+ var import_fs = __toESM(require("fs"));
35
+ var import_os = __toESM(require("os"));
36
+ var import_path = __toESM(require("path"));
37
+ var knownPackages = {
38
+ "darwin arm64 LE": "@cloudflare/workerd-darwin-arm64",
39
+ "darwin x64 LE": "@cloudflare/workerd-darwin-64",
40
+ "linux arm64 LE": "@cloudflare/workerd-linux-arm64",
41
+ "linux x64 LE": "@cloudflare/workerd-linux-64"
42
+ };
43
+ function pkgAndSubpathForCurrentPlatform() {
44
+ let pkg;
45
+ let subpath;
46
+ let platformKey = `${process.platform} ${import_os.default.arch()} ${import_os.default.endianness()}`;
47
+ if (platformKey in knownPackages) {
48
+ pkg = knownPackages[platformKey];
49
+ subpath = "bin/workerd";
50
+ } else {
51
+ throw new Error(`Unsupported platform: ${platformKey}`);
52
+ }
53
+ return { pkg, subpath };
54
+ }
55
+ function pkgForSomeOtherPlatform() {
56
+ const libMain = require.resolve("workerd");
57
+ const nodeModulesDirectory = import_path.default.dirname(
58
+ import_path.default.dirname(import_path.default.dirname(libMain))
59
+ );
60
+ if (import_path.default.basename(nodeModulesDirectory) === "node_modules") {
61
+ for (const unixKey in knownPackages) {
62
+ try {
63
+ const pkg = knownPackages[unixKey];
64
+ if (import_fs.default.existsSync(import_path.default.join(nodeModulesDirectory, pkg)))
65
+ return pkg;
66
+ } catch {
67
+ }
68
+ }
69
+ }
70
+ return null;
71
+ }
72
+ function downloadedBinPath(pkg, subpath) {
73
+ const libDir = import_path.default.dirname(require.resolve("workerd"));
74
+ return import_path.default.join(libDir, `downloaded-${pkg}-${import_path.default.basename(subpath)}`);
75
+ }
76
+ function generateBinPath() {
77
+ const { pkg, subpath } = pkgAndSubpathForCurrentPlatform();
78
+ let binPath2;
79
+ try {
80
+ binPath2 = require.resolve(`${pkg}/${subpath}`);
81
+ } catch (e) {
82
+ binPath2 = downloadedBinPath(pkg, subpath);
83
+ if (!import_fs.default.existsSync(binPath2)) {
84
+ try {
85
+ require.resolve(pkg);
86
+ } catch {
87
+ const otherPkg = pkgForSomeOtherPlatform();
88
+ if (otherPkg) {
89
+ throw new Error(`
90
+ You installed workerd on another platform than the one you're currently using.
91
+ This won't work because workerd is written with native code and needs to
92
+ install a platform-specific binary executable.
93
+
94
+ Specifically the "${otherPkg}" package is present but this platform
95
+ needs the "${pkg}" package instead. People often get into this
96
+ situation by installing workerd on macOS and copying "node_modules"
97
+ into a Docker image that runs Linux.
98
+
99
+ If you are installing with npm, you can try not copying the "node_modules"
100
+ directory when you copy the files over, and running "npm ci" or "npm install"
101
+ on the destination platform after the copy. Or you could consider using yarn
102
+ instead which has built-in support for installing a package on multiple
103
+ platforms simultaneously.
104
+
105
+ If you are installing with yarn, you can try listing both this platform and the
106
+ other platform in your ".yarnrc.yml" file using the "supportedArchitectures"
107
+ feature: https://yarnpkg.com/configuration/yarnrc/#supportedArchitectures
108
+ Keep in mind that this means multiple copies of workerd will be present.
109
+ `);
110
+ }
111
+ throw new Error(`The package "${pkg}" could not be found, and is needed by workerd.
112
+
113
+ If you are installing workerd with npm, make sure that you don't specify the
114
+ "--no-optional" flag. The "optionalDependencies" package.json feature is used
115
+ by workerd to install the correct binary executable for your current platform.`);
116
+ }
117
+ throw e;
118
+ }
119
+ }
120
+ let pnpapi;
121
+ try {
122
+ pnpapi = require("pnpapi");
123
+ } catch (e) {
124
+ }
125
+ if (pnpapi) {
126
+ const root = pnpapi.getPackageInformation(pnpapi.topLevel).packageLocation;
127
+ const binTargetPath = import_path.default.join(
128
+ root,
129
+ "node_modules",
130
+ ".cache",
131
+ "workerd",
132
+ `pnpapi-${pkg}-${WORKERD_VERSION}-${import_path.default.basename(subpath)}`
133
+ );
134
+ if (!import_fs.default.existsSync(binTargetPath)) {
135
+ import_fs.default.mkdirSync(import_path.default.dirname(binTargetPath), { recursive: true });
136
+ import_fs.default.copyFileSync(binPath2, binTargetPath);
137
+ import_fs.default.chmodSync(binTargetPath, 493);
138
+ }
139
+ return { binPath: binTargetPath };
140
+ }
141
+ return { binPath: binPath2 };
142
+ }
143
+
144
+ // npm/lib/node-path.ts
145
+ var { binPath } = generateBinPath();
146
+ var node_path_default = binPath;
147
+ // Annotate the CommonJS export names for ESM import in node:
148
+ 0 && (module.exports = {});
package/package.json CHANGED
@@ -1,8 +1,21 @@
1
1
  {
2
2
  "name": "workerd",
3
- "description": "",
4
- "author": "",
5
- "version": "0.0.1",
3
+ "description": "👷 workerd, Cloudflare's JavaScript/Wasm Runtime",
4
+ "repository": "https://github.com/cloudflare/workerd",
5
+ "scripts": {},
6
+ "main": "lib/main.js",
7
+ "engines": {
8
+ "node": ">=16"
9
+ },
10
+ "bin": {
11
+ "workerd": "bin/workerd"
12
+ },
13
+ "optionalDependencies": {
14
+ "@cloudflare/workerd-darwin-arm64": "1.20220926.0",
15
+ "@cloudflare/workerd-darwin-64": "1.20220926.0",
16
+ "@cloudflare/workerd-linux-arm64": "1.20220926.0",
17
+ "@cloudflare/workerd-linux-64": "1.20220926.0"
18
+ },
6
19
  "license": "Apache-2.0",
7
- "main": "worker.js"
20
+ "version": "1.20220926.0"
8
21
  }