@mutagent/sdk 0.2.21 → 0.2.24
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/commonjs/lib/config.d.ts +2 -2
- package/dist/commonjs/lib/config.js +2 -2
- package/dist/esm/lib/config.d.ts +2 -2
- package/dist/esm/lib/config.js +2 -2
- package/examples/node_modules/.package-lock.json +174 -0
- package/examples/node_modules/@esbuild/darwin-arm64/package.json +20 -0
- package/examples/node_modules/@types/node/assert/strict.d.ts +8 -0
- package/examples/node_modules/@types/node/assert.d.ts +1062 -0
- package/examples/node_modules/@types/node/async_hooks.d.ts +605 -0
- package/examples/node_modules/@types/node/buffer.buffer.d.ts +471 -0
- package/examples/node_modules/@types/node/buffer.d.ts +1936 -0
- package/examples/node_modules/@types/node/child_process.d.ts +1475 -0
- package/examples/node_modules/@types/node/cluster.d.ts +577 -0
- package/examples/node_modules/@types/node/compatibility/disposable.d.ts +16 -0
- package/examples/node_modules/@types/node/compatibility/index.d.ts +9 -0
- package/examples/node_modules/@types/node/compatibility/indexable.d.ts +20 -0
- package/examples/node_modules/@types/node/compatibility/iterators.d.ts +21 -0
- package/examples/node_modules/@types/node/console.d.ts +452 -0
- package/examples/node_modules/@types/node/constants.d.ts +21 -0
- package/examples/node_modules/@types/node/crypto.d.ts +4590 -0
- package/examples/node_modules/@types/node/dgram.d.ts +597 -0
- package/examples/node_modules/@types/node/diagnostics_channel.d.ts +578 -0
- package/examples/node_modules/@types/node/dns/promises.d.ts +479 -0
- package/examples/node_modules/@types/node/dns.d.ts +871 -0
- package/examples/node_modules/@types/node/domain.d.ts +170 -0
- package/examples/node_modules/@types/node/events.d.ts +977 -0
- package/examples/node_modules/@types/node/fs/promises.d.ts +1270 -0
- package/examples/node_modules/@types/node/fs.d.ts +4375 -0
- package/examples/node_modules/@types/node/globals.d.ts +172 -0
- package/examples/node_modules/@types/node/globals.typedarray.d.ts +38 -0
- package/examples/node_modules/@types/node/http.d.ts +2049 -0
- package/examples/node_modules/@types/node/http2.d.ts +2631 -0
- package/examples/node_modules/@types/node/https.d.ts +578 -0
- package/examples/node_modules/@types/node/index.d.ts +93 -0
- package/examples/node_modules/@types/node/inspector.generated.d.ts +3966 -0
- package/examples/node_modules/@types/node/module.d.ts +539 -0
- package/examples/node_modules/@types/node/net.d.ts +1012 -0
- package/examples/node_modules/@types/node/os.d.ts +506 -0
- package/examples/node_modules/@types/node/package.json +140 -0
- package/examples/node_modules/@types/node/path.d.ts +200 -0
- package/examples/node_modules/@types/node/perf_hooks.d.ts +961 -0
- package/examples/node_modules/@types/node/process.d.ts +1966 -0
- package/examples/node_modules/@types/node/punycode.d.ts +117 -0
- package/examples/node_modules/@types/node/querystring.d.ts +152 -0
- package/examples/node_modules/@types/node/readline/promises.d.ts +162 -0
- package/examples/node_modules/@types/node/readline.d.ts +589 -0
- package/examples/node_modules/@types/node/repl.d.ts +430 -0
- package/examples/node_modules/@types/node/sea.d.ts +153 -0
- package/examples/node_modules/@types/node/stream/consumers.d.ts +38 -0
- package/examples/node_modules/@types/node/stream/promises.d.ts +90 -0
- package/examples/node_modules/@types/node/stream/web.d.ts +533 -0
- package/examples/node_modules/@types/node/stream.d.ts +1675 -0
- package/examples/node_modules/@types/node/string_decoder.d.ts +67 -0
- package/examples/node_modules/@types/node/test.d.ts +1787 -0
- package/examples/node_modules/@types/node/timers/promises.d.ts +108 -0
- package/examples/node_modules/@types/node/timers.d.ts +286 -0
- package/examples/node_modules/@types/node/tls.d.ts +1259 -0
- package/examples/node_modules/@types/node/trace_events.d.ts +197 -0
- package/examples/node_modules/@types/node/ts5.6/buffer.buffer.d.ts +468 -0
- package/examples/node_modules/@types/node/ts5.6/globals.typedarray.d.ts +34 -0
- package/examples/node_modules/@types/node/ts5.6/index.d.ts +93 -0
- package/examples/node_modules/@types/node/tty.d.ts +208 -0
- package/examples/node_modules/@types/node/url.d.ts +964 -0
- package/examples/node_modules/@types/node/util.d.ts +2331 -0
- package/examples/node_modules/@types/node/v8.d.ts +809 -0
- package/examples/node_modules/@types/node/vm.d.ts +1001 -0
- package/examples/node_modules/@types/node/wasi.d.ts +181 -0
- package/examples/node_modules/@types/node/web-globals/abortcontroller.d.ts +34 -0
- package/examples/node_modules/@types/node/web-globals/domexception.d.ts +68 -0
- package/examples/node_modules/@types/node/web-globals/events.d.ts +97 -0
- package/examples/node_modules/@types/node/web-globals/fetch.d.ts +46 -0
- package/examples/node_modules/@types/node/worker_threads.d.ts +715 -0
- package/examples/node_modules/@types/node/zlib.d.ts +540 -0
- package/examples/node_modules/dotenv/config.d.ts +1 -0
- package/examples/node_modules/dotenv/config.js +9 -0
- package/examples/node_modules/dotenv/lib/cli-options.js +17 -0
- package/examples/node_modules/dotenv/lib/env-options.js +28 -0
- package/examples/node_modules/dotenv/lib/main.d.ts +162 -0
- package/examples/node_modules/dotenv/lib/main.js +386 -0
- package/examples/node_modules/dotenv/package.json +62 -0
- package/examples/node_modules/esbuild/install.js +289 -0
- package/examples/node_modules/esbuild/lib/main.d.ts +716 -0
- package/examples/node_modules/esbuild/lib/main.js +2242 -0
- package/examples/node_modules/esbuild/package.json +49 -0
- package/examples/node_modules/fsevents/fsevents.d.ts +46 -0
- package/examples/node_modules/fsevents/fsevents.js +83 -0
- package/examples/node_modules/fsevents/package.json +62 -0
- package/examples/node_modules/get-tsconfig/dist/index.mjs +7 -0
- package/examples/node_modules/get-tsconfig/package.json +46 -0
- package/examples/node_modules/resolve-pkg-maps/dist/index.mjs +1 -0
- package/examples/node_modules/resolve-pkg-maps/package.json +42 -0
- package/examples/node_modules/tsx/dist/cjs/api/index.mjs +1 -0
- package/examples/node_modules/tsx/dist/cjs/index.mjs +1 -0
- package/examples/node_modules/tsx/dist/cli.mjs +55 -0
- package/examples/node_modules/tsx/dist/client-BQVF1NaW.mjs +1 -0
- package/examples/node_modules/tsx/dist/esm/api/index.mjs +1 -0
- package/examples/node_modules/tsx/dist/esm/index.mjs +2 -0
- package/examples/node_modules/tsx/dist/get-pipe-path-BHW2eJdv.mjs +1 -0
- package/examples/node_modules/tsx/dist/index-7AaEi15b.mjs +14 -0
- package/examples/node_modules/tsx/dist/index-gbaejti9.mjs +1 -0
- package/examples/node_modules/tsx/dist/lexer-DQCqS3nf.mjs +3 -0
- package/examples/node_modules/tsx/dist/loader.mjs +1 -0
- package/examples/node_modules/tsx/dist/node-features-_8ZFwP_x.mjs +1 -0
- package/examples/node_modules/tsx/dist/package-CeBgXWuR.mjs +1 -0
- package/examples/node_modules/tsx/dist/patch-repl.mjs +1 -0
- package/examples/node_modules/tsx/dist/preflight.mjs +1 -0
- package/examples/node_modules/tsx/dist/register-B7jrtLTO.mjs +1 -0
- package/examples/node_modules/tsx/dist/register-CFH5oNdT.mjs +4 -0
- package/examples/node_modules/tsx/dist/repl.mjs +3 -0
- package/examples/node_modules/tsx/dist/require-DQxpCAr4.mjs +1 -0
- package/examples/node_modules/tsx/dist/suppress-warnings.mjs +1 -0
- package/examples/node_modules/tsx/dist/temporary-directory-CwHp0_NW.mjs +1 -0
- package/examples/node_modules/tsx/dist/types-Cxp8y2TL.d.ts +5 -0
- package/examples/node_modules/tsx/package.json +68 -0
- package/examples/node_modules/undici-types/agent.d.ts +31 -0
- package/examples/node_modules/undici-types/api.d.ts +43 -0
- package/examples/node_modules/undici-types/balanced-pool.d.ts +29 -0
- package/examples/node_modules/undici-types/cache.d.ts +36 -0
- package/examples/node_modules/undici-types/client.d.ts +108 -0
- package/examples/node_modules/undici-types/connector.d.ts +34 -0
- package/examples/node_modules/undici-types/content-type.d.ts +21 -0
- package/examples/node_modules/undici-types/cookies.d.ts +28 -0
- package/examples/node_modules/undici-types/diagnostics-channel.d.ts +66 -0
- package/examples/node_modules/undici-types/dispatcher.d.ts +256 -0
- package/examples/node_modules/undici-types/env-http-proxy-agent.d.ts +21 -0
- package/examples/node_modules/undici-types/errors.d.ts +149 -0
- package/examples/node_modules/undici-types/eventsource.d.ts +61 -0
- package/examples/node_modules/undici-types/fetch.d.ts +209 -0
- package/examples/node_modules/undici-types/file.d.ts +39 -0
- package/examples/node_modules/undici-types/filereader.d.ts +54 -0
- package/examples/node_modules/undici-types/formdata.d.ts +108 -0
- package/examples/node_modules/undici-types/global-dispatcher.d.ts +9 -0
- package/examples/node_modules/undici-types/global-origin.d.ts +7 -0
- package/examples/node_modules/undici-types/handlers.d.ts +15 -0
- package/examples/node_modules/undici-types/header.d.ts +4 -0
- package/examples/node_modules/undici-types/index.d.ts +71 -0
- package/examples/node_modules/undici-types/interceptors.d.ts +17 -0
- package/examples/node_modules/undici-types/mock-agent.d.ts +50 -0
- package/examples/node_modules/undici-types/mock-client.d.ts +25 -0
- package/examples/node_modules/undici-types/mock-errors.d.ts +12 -0
- package/examples/node_modules/undici-types/mock-interceptor.d.ts +93 -0
- package/examples/node_modules/undici-types/mock-pool.d.ts +25 -0
- package/examples/node_modules/undici-types/package.json +55 -0
- package/examples/node_modules/undici-types/patch.d.ts +33 -0
- package/examples/node_modules/undici-types/pool-stats.d.ts +19 -0
- package/examples/node_modules/undici-types/pool.d.ts +39 -0
- package/examples/node_modules/undici-types/proxy-agent.d.ts +28 -0
- package/examples/node_modules/undici-types/readable.d.ts +65 -0
- package/examples/node_modules/undici-types/retry-agent.d.ts +8 -0
- package/examples/node_modules/undici-types/retry-handler.d.ts +116 -0
- package/examples/node_modules/undici-types/util.d.ts +18 -0
- package/examples/node_modules/undici-types/webidl.d.ts +228 -0
- package/examples/node_modules/undici-types/websocket.d.ts +150 -0
- package/jsr.json +1 -1
- package/package.json +2 -6
- package/src/lib/config.ts +2 -2
|
@@ -35,8 +35,8 @@ export declare function serverURLFromOptions(options: SDKOptions): URL | null;
|
|
|
35
35
|
export declare const SDK_METADATA: {
|
|
36
36
|
readonly language: "typescript";
|
|
37
37
|
readonly openapiDocVersion: "2.0.0";
|
|
38
|
-
readonly sdkVersion: "0.2.
|
|
38
|
+
readonly sdkVersion: "0.2.24";
|
|
39
39
|
readonly genVersion: "2.812.2";
|
|
40
|
-
readonly userAgent: "speakeasy-sdk/typescript 0.2.
|
|
40
|
+
readonly userAgent: "speakeasy-sdk/typescript 0.2.24 2.812.2 2.0.0 @mutagent/sdk";
|
|
41
41
|
};
|
|
42
42
|
//# sourceMappingURL=config.d.ts.map
|
|
@@ -31,8 +31,8 @@ function serverURLFromOptions(options) {
|
|
|
31
31
|
exports.SDK_METADATA = {
|
|
32
32
|
language: "typescript",
|
|
33
33
|
openapiDocVersion: "2.0.0",
|
|
34
|
-
sdkVersion: "0.2.
|
|
34
|
+
sdkVersion: "0.2.24",
|
|
35
35
|
genVersion: "2.812.2",
|
|
36
|
-
userAgent: "speakeasy-sdk/typescript 0.2.
|
|
36
|
+
userAgent: "speakeasy-sdk/typescript 0.2.24 2.812.2 2.0.0 @mutagent/sdk",
|
|
37
37
|
};
|
|
38
38
|
//# sourceMappingURL=config.js.map
|
package/dist/esm/lib/config.d.ts
CHANGED
|
@@ -35,8 +35,8 @@ export declare function serverURLFromOptions(options: SDKOptions): URL | null;
|
|
|
35
35
|
export declare const SDK_METADATA: {
|
|
36
36
|
readonly language: "typescript";
|
|
37
37
|
readonly openapiDocVersion: "2.0.0";
|
|
38
|
-
readonly sdkVersion: "0.2.
|
|
38
|
+
readonly sdkVersion: "0.2.24";
|
|
39
39
|
readonly genVersion: "2.812.2";
|
|
40
|
-
readonly userAgent: "speakeasy-sdk/typescript 0.2.
|
|
40
|
+
readonly userAgent: "speakeasy-sdk/typescript 0.2.24 2.812.2 2.0.0 @mutagent/sdk";
|
|
41
41
|
};
|
|
42
42
|
//# sourceMappingURL=config.d.ts.map
|
package/dist/esm/lib/config.js
CHANGED
|
@@ -27,8 +27,8 @@ export function serverURLFromOptions(options) {
|
|
|
27
27
|
export const SDK_METADATA = {
|
|
28
28
|
language: "typescript",
|
|
29
29
|
openapiDocVersion: "2.0.0",
|
|
30
|
-
sdkVersion: "0.2.
|
|
30
|
+
sdkVersion: "0.2.24",
|
|
31
31
|
genVersion: "2.812.2",
|
|
32
|
-
userAgent: "speakeasy-sdk/typescript 0.2.
|
|
32
|
+
userAgent: "speakeasy-sdk/typescript 0.2.24 2.812.2 2.0.0 @mutagent/sdk",
|
|
33
33
|
};
|
|
34
34
|
//# sourceMappingURL=config.js.map
|
|
@@ -0,0 +1,174 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@mutagent/sdk-examples",
|
|
3
|
+
"version": "1.0.0",
|
|
4
|
+
"lockfileVersion": 3,
|
|
5
|
+
"requires": true,
|
|
6
|
+
"packages": {
|
|
7
|
+
"..": {
|
|
8
|
+
"name": "@mutagent/sdk",
|
|
9
|
+
"version": "0.1.1",
|
|
10
|
+
"dependencies": {
|
|
11
|
+
"zod": "^3.25.65 || ^4.0.0"
|
|
12
|
+
},
|
|
13
|
+
"devDependencies": {
|
|
14
|
+
"@eslint/js": "^9.26.0",
|
|
15
|
+
"eslint": "^9.26.0",
|
|
16
|
+
"globals": "^15.14.0",
|
|
17
|
+
"tshy": "^2.0.0",
|
|
18
|
+
"typescript": "~5.8.3",
|
|
19
|
+
"typescript-eslint": "^8.26.0"
|
|
20
|
+
}
|
|
21
|
+
},
|
|
22
|
+
"node_modules/@esbuild/darwin-arm64": {
|
|
23
|
+
"version": "0.27.2",
|
|
24
|
+
"resolved": "https://registry.npmjs.org/@esbuild/darwin-arm64/-/darwin-arm64-0.27.2.tgz",
|
|
25
|
+
"integrity": "sha512-davCD2Zc80nzDVRwXTcQP/28fiJbcOwvdolL0sOiOsbwBa72kegmVU0Wrh1MYrbuCL98Omp5dVhQFWRKR2ZAlg==",
|
|
26
|
+
"cpu": [
|
|
27
|
+
"arm64"
|
|
28
|
+
],
|
|
29
|
+
"dev": true,
|
|
30
|
+
"license": "MIT",
|
|
31
|
+
"optional": true,
|
|
32
|
+
"os": [
|
|
33
|
+
"darwin"
|
|
34
|
+
],
|
|
35
|
+
"engines": {
|
|
36
|
+
"node": ">=18"
|
|
37
|
+
}
|
|
38
|
+
},
|
|
39
|
+
"node_modules/@mutagent/sdk": {
|
|
40
|
+
"resolved": "..",
|
|
41
|
+
"link": true
|
|
42
|
+
},
|
|
43
|
+
"node_modules/@types/node": {
|
|
44
|
+
"version": "20.19.31",
|
|
45
|
+
"resolved": "https://registry.npmjs.org/@types/node/-/node-20.19.31.tgz",
|
|
46
|
+
"integrity": "sha512-5jsi0wpncvTD33Sh1UCgacK37FFwDn+EG7wCmEvs62fCvBL+n8/76cAYDok21NF6+jaVWIqKwCZyX7Vbu8eB3A==",
|
|
47
|
+
"dev": true,
|
|
48
|
+
"license": "MIT",
|
|
49
|
+
"dependencies": {
|
|
50
|
+
"undici-types": "~6.21.0"
|
|
51
|
+
}
|
|
52
|
+
},
|
|
53
|
+
"node_modules/dotenv": {
|
|
54
|
+
"version": "16.6.1",
|
|
55
|
+
"resolved": "https://registry.npmjs.org/dotenv/-/dotenv-16.6.1.tgz",
|
|
56
|
+
"integrity": "sha512-uBq4egWHTcTt33a72vpSG0z3HnPuIl6NqYcTrKEg2azoEyl2hpW0zqlxysq2pK9HlDIHyHyakeYaYnSAwd8bow==",
|
|
57
|
+
"dev": true,
|
|
58
|
+
"license": "BSD-2-Clause",
|
|
59
|
+
"engines": {
|
|
60
|
+
"node": ">=12"
|
|
61
|
+
},
|
|
62
|
+
"funding": {
|
|
63
|
+
"url": "https://dotenvx.com"
|
|
64
|
+
}
|
|
65
|
+
},
|
|
66
|
+
"node_modules/esbuild": {
|
|
67
|
+
"version": "0.27.2",
|
|
68
|
+
"resolved": "https://registry.npmjs.org/esbuild/-/esbuild-0.27.2.tgz",
|
|
69
|
+
"integrity": "sha512-HyNQImnsOC7X9PMNaCIeAm4ISCQXs5a5YasTXVliKv4uuBo1dKrG0A+uQS8M5eXjVMnLg3WgXaKvprHlFJQffw==",
|
|
70
|
+
"dev": true,
|
|
71
|
+
"hasInstallScript": true,
|
|
72
|
+
"license": "MIT",
|
|
73
|
+
"bin": {
|
|
74
|
+
"esbuild": "bin/esbuild"
|
|
75
|
+
},
|
|
76
|
+
"engines": {
|
|
77
|
+
"node": ">=18"
|
|
78
|
+
},
|
|
79
|
+
"optionalDependencies": {
|
|
80
|
+
"@esbuild/aix-ppc64": "0.27.2",
|
|
81
|
+
"@esbuild/android-arm": "0.27.2",
|
|
82
|
+
"@esbuild/android-arm64": "0.27.2",
|
|
83
|
+
"@esbuild/android-x64": "0.27.2",
|
|
84
|
+
"@esbuild/darwin-arm64": "0.27.2",
|
|
85
|
+
"@esbuild/darwin-x64": "0.27.2",
|
|
86
|
+
"@esbuild/freebsd-arm64": "0.27.2",
|
|
87
|
+
"@esbuild/freebsd-x64": "0.27.2",
|
|
88
|
+
"@esbuild/linux-arm": "0.27.2",
|
|
89
|
+
"@esbuild/linux-arm64": "0.27.2",
|
|
90
|
+
"@esbuild/linux-ia32": "0.27.2",
|
|
91
|
+
"@esbuild/linux-loong64": "0.27.2",
|
|
92
|
+
"@esbuild/linux-mips64el": "0.27.2",
|
|
93
|
+
"@esbuild/linux-ppc64": "0.27.2",
|
|
94
|
+
"@esbuild/linux-riscv64": "0.27.2",
|
|
95
|
+
"@esbuild/linux-s390x": "0.27.2",
|
|
96
|
+
"@esbuild/linux-x64": "0.27.2",
|
|
97
|
+
"@esbuild/netbsd-arm64": "0.27.2",
|
|
98
|
+
"@esbuild/netbsd-x64": "0.27.2",
|
|
99
|
+
"@esbuild/openbsd-arm64": "0.27.2",
|
|
100
|
+
"@esbuild/openbsd-x64": "0.27.2",
|
|
101
|
+
"@esbuild/openharmony-arm64": "0.27.2",
|
|
102
|
+
"@esbuild/sunos-x64": "0.27.2",
|
|
103
|
+
"@esbuild/win32-arm64": "0.27.2",
|
|
104
|
+
"@esbuild/win32-ia32": "0.27.2",
|
|
105
|
+
"@esbuild/win32-x64": "0.27.2"
|
|
106
|
+
}
|
|
107
|
+
},
|
|
108
|
+
"node_modules/fsevents": {
|
|
109
|
+
"version": "2.3.3",
|
|
110
|
+
"resolved": "https://registry.npmjs.org/fsevents/-/fsevents-2.3.3.tgz",
|
|
111
|
+
"integrity": "sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw==",
|
|
112
|
+
"dev": true,
|
|
113
|
+
"hasInstallScript": true,
|
|
114
|
+
"license": "MIT",
|
|
115
|
+
"optional": true,
|
|
116
|
+
"os": [
|
|
117
|
+
"darwin"
|
|
118
|
+
],
|
|
119
|
+
"engines": {
|
|
120
|
+
"node": "^8.16.0 || ^10.6.0 || >=11.0.0"
|
|
121
|
+
}
|
|
122
|
+
},
|
|
123
|
+
"node_modules/get-tsconfig": {
|
|
124
|
+
"version": "4.13.1",
|
|
125
|
+
"resolved": "https://registry.npmjs.org/get-tsconfig/-/get-tsconfig-4.13.1.tgz",
|
|
126
|
+
"integrity": "sha512-EoY1N2xCn44xU6750Sx7OjOIT59FkmstNc3X6y5xpz7D5cBtZRe/3pSlTkDJgqsOk3WwZPkWfonhhUJfttQo3w==",
|
|
127
|
+
"dev": true,
|
|
128
|
+
"license": "MIT",
|
|
129
|
+
"dependencies": {
|
|
130
|
+
"resolve-pkg-maps": "^1.0.0"
|
|
131
|
+
},
|
|
132
|
+
"funding": {
|
|
133
|
+
"url": "https://github.com/privatenumber/get-tsconfig?sponsor=1"
|
|
134
|
+
}
|
|
135
|
+
},
|
|
136
|
+
"node_modules/resolve-pkg-maps": {
|
|
137
|
+
"version": "1.0.0",
|
|
138
|
+
"resolved": "https://registry.npmjs.org/resolve-pkg-maps/-/resolve-pkg-maps-1.0.0.tgz",
|
|
139
|
+
"integrity": "sha512-seS2Tj26TBVOC2NIc2rOe2y2ZO7efxITtLZcGSOnHHNOQ7CkiUBfw0Iw2ck6xkIhPwLhKNLS8BO+hEpngQlqzw==",
|
|
140
|
+
"dev": true,
|
|
141
|
+
"license": "MIT",
|
|
142
|
+
"funding": {
|
|
143
|
+
"url": "https://github.com/privatenumber/resolve-pkg-maps?sponsor=1"
|
|
144
|
+
}
|
|
145
|
+
},
|
|
146
|
+
"node_modules/tsx": {
|
|
147
|
+
"version": "4.21.0",
|
|
148
|
+
"resolved": "https://registry.npmjs.org/tsx/-/tsx-4.21.0.tgz",
|
|
149
|
+
"integrity": "sha512-5C1sg4USs1lfG0GFb2RLXsdpXqBSEhAaA/0kPL01wxzpMqLILNxIxIOKiILz+cdg/pLnOUxFYOR5yhHU666wbw==",
|
|
150
|
+
"dev": true,
|
|
151
|
+
"license": "MIT",
|
|
152
|
+
"dependencies": {
|
|
153
|
+
"esbuild": "~0.27.0",
|
|
154
|
+
"get-tsconfig": "^4.7.5"
|
|
155
|
+
},
|
|
156
|
+
"bin": {
|
|
157
|
+
"tsx": "dist/cli.mjs"
|
|
158
|
+
},
|
|
159
|
+
"engines": {
|
|
160
|
+
"node": ">=18.0.0"
|
|
161
|
+
},
|
|
162
|
+
"optionalDependencies": {
|
|
163
|
+
"fsevents": "~2.3.3"
|
|
164
|
+
}
|
|
165
|
+
},
|
|
166
|
+
"node_modules/undici-types": {
|
|
167
|
+
"version": "6.21.0",
|
|
168
|
+
"resolved": "https://registry.npmjs.org/undici-types/-/undici-types-6.21.0.tgz",
|
|
169
|
+
"integrity": "sha512-iwDZqg0QAGrg9Rav5H4n0M64c3mkR59cJ6wQp+7C4nI0gsmExaedaYLNO44eT4AtBBwjbTiGPMlt2Md0T9H9JQ==",
|
|
170
|
+
"dev": true,
|
|
171
|
+
"license": "MIT"
|
|
172
|
+
}
|
|
173
|
+
}
|
|
174
|
+
}
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@esbuild/darwin-arm64",
|
|
3
|
+
"version": "0.27.2",
|
|
4
|
+
"description": "The macOS ARM 64-bit binary for esbuild, a JavaScript bundler.",
|
|
5
|
+
"repository": {
|
|
6
|
+
"type": "git",
|
|
7
|
+
"url": "git+https://github.com/evanw/esbuild.git"
|
|
8
|
+
},
|
|
9
|
+
"license": "MIT",
|
|
10
|
+
"preferUnplugged": true,
|
|
11
|
+
"engines": {
|
|
12
|
+
"node": ">=18"
|
|
13
|
+
},
|
|
14
|
+
"os": [
|
|
15
|
+
"darwin"
|
|
16
|
+
],
|
|
17
|
+
"cpu": [
|
|
18
|
+
"arm64"
|
|
19
|
+
]
|
|
20
|
+
}
|