@kubb/agent 5.0.0-alpha.70 → 5.0.0-alpha.72
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/.output/nitro.json +1 -1
- package/.output/server/chunks/nitro/nitro.mjs +98 -16
- package/.output/server/chunks/routes/api/health.get.mjs +1 -1
- package/.output/server/index.mjs +1 -1
- package/.output/server/node_modules/@rolldown/binding-linux-x64-gnu/package.json +40 -0
- package/.output/server/node_modules/@rolldown/binding-linux-x64-gnu/rolldown-binding.linux-x64-gnu.node +0 -0
- package/.output/server/node_modules/@rolldown/pluginutils/dist/filter/composable-filters.js +256 -0
- package/.output/server/node_modules/@rolldown/pluginutils/dist/filter/filter-vite-plugins.js +75 -0
- package/.output/server/node_modules/@rolldown/pluginutils/dist/filter/index.js +3 -0
- package/.output/server/node_modules/@rolldown/pluginutils/dist/filter/simple-filters.js +70 -0
- package/.output/server/node_modules/@rolldown/pluginutils/dist/index.js +1 -0
- package/.output/server/node_modules/@rolldown/pluginutils/dist/utils.js +17 -0
- package/.output/server/node_modules/@rolldown/pluginutils/package.json +37 -0
- package/.output/server/node_modules/remeda/dist/isDeepEqual.js +1 -1
- package/.output/server/node_modules/remeda/package.json +14 -14
- package/.output/server/node_modules/rolldown/dist/index.mjs +50 -0
- package/.output/server/node_modules/rolldown/dist/parse-ast-index.mjs +60 -0
- package/.output/server/node_modules/rolldown/dist/shared/binding-BeU_1iEk.mjs +582 -0
- package/.output/server/node_modules/rolldown/dist/shared/bindingify-input-options-DbbBhzky.mjs +2211 -0
- package/.output/server/node_modules/rolldown/dist/shared/define-config-DJOr6Iwt.mjs +6 -0
- package/.output/server/node_modules/rolldown/dist/shared/error-DL-e8-oE.mjs +85 -0
- package/.output/server/node_modules/rolldown/dist/shared/logs-D80CXhvg.mjs +180 -0
- package/.output/server/node_modules/rolldown/dist/shared/misc-DJYbNKZX.mjs +21 -0
- package/.output/server/node_modules/rolldown/dist/shared/normalize-string-or-regex-CbQQ69gT.mjs +66 -0
- package/.output/server/node_modules/rolldown/dist/shared/parse-B_ZnWxLZ.mjs +74 -0
- package/.output/server/node_modules/rolldown/dist/shared/prompt-U5ajztzG.mjs +847 -0
- package/.output/server/node_modules/rolldown/dist/shared/rolldown-D3JZ9rMt.mjs +40 -0
- package/.output/server/node_modules/rolldown/dist/shared/rolldown-build-DSxL8qiP.mjs +3325 -0
- package/.output/server/node_modules/rolldown/dist/shared/watch-Bd8v9ewv.mjs +374 -0
- package/.output/server/node_modules/rolldown/package.json +153 -0
- package/.output/server/node_modules/unrun/dist/index.mjs +2 -0
- package/.output/server/node_modules/unrun/dist/src-GU5PtktT.mjs +887 -0
- package/.output/server/node_modules/unrun/package.json +125 -0
- package/.output/server/package.json +6 -3
- package/package.json +7 -7
- package/.output/server/node_modules/jiti/dist/jiti.cjs +0 -1
- package/.output/server/node_modules/jiti/lib/jiti.mjs +0 -29
- package/.output/server/node_modules/jiti/package.json +0 -133
|
@@ -1,29 +0,0 @@
|
|
|
1
|
-
import { createRequire } from "node:module";
|
|
2
|
-
import _createJiti from "../dist/jiti.cjs";
|
|
3
|
-
|
|
4
|
-
function onError(err) {
|
|
5
|
-
throw err; /* ↓ Check stack trace ↓ */
|
|
6
|
-
}
|
|
7
|
-
|
|
8
|
-
const nativeImport = (id) => import(id);
|
|
9
|
-
|
|
10
|
-
let _transform;
|
|
11
|
-
function lazyTransform(...args) {
|
|
12
|
-
if (!_transform) {
|
|
13
|
-
_transform = createRequire(import.meta.url)("../dist/babel.cjs");
|
|
14
|
-
}
|
|
15
|
-
return _transform(...args);
|
|
16
|
-
}
|
|
17
|
-
|
|
18
|
-
export function createJiti(id, opts = {}) {
|
|
19
|
-
if (!opts.transform) {
|
|
20
|
-
opts = { ...opts, transform: lazyTransform };
|
|
21
|
-
}
|
|
22
|
-
return _createJiti(id, opts, {
|
|
23
|
-
onError,
|
|
24
|
-
nativeImport,
|
|
25
|
-
createRequire,
|
|
26
|
-
});
|
|
27
|
-
}
|
|
28
|
-
|
|
29
|
-
export default createJiti;
|
|
@@ -1,133 +0,0 @@
|
|
|
1
|
-
{
|
|
2
|
-
"name": "jiti",
|
|
3
|
-
"version": "2.6.1",
|
|
4
|
-
"description": "Runtime typescript and ESM support for Node.js",
|
|
5
|
-
"repository": "unjs/jiti",
|
|
6
|
-
"license": "MIT",
|
|
7
|
-
"type": "module",
|
|
8
|
-
"exports": {
|
|
9
|
-
".": {
|
|
10
|
-
"import": {
|
|
11
|
-
"types": "./lib/jiti.d.mts",
|
|
12
|
-
"default": "./lib/jiti.mjs"
|
|
13
|
-
},
|
|
14
|
-
"require": {
|
|
15
|
-
"types": "./lib/jiti.d.cts",
|
|
16
|
-
"default": "./lib/jiti.cjs"
|
|
17
|
-
}
|
|
18
|
-
},
|
|
19
|
-
"./register": {
|
|
20
|
-
"types": "./lib/jiti-register.d.mts",
|
|
21
|
-
"import": "./lib/jiti-register.mjs"
|
|
22
|
-
},
|
|
23
|
-
"./native": {
|
|
24
|
-
"types": "./lib/jiti.d.mts",
|
|
25
|
-
"import": "./lib/jiti-native.mjs"
|
|
26
|
-
},
|
|
27
|
-
"./package.json": "./package.json"
|
|
28
|
-
},
|
|
29
|
-
"main": "./lib/jiti.cjs",
|
|
30
|
-
"module": "./lib/jiti.mjs",
|
|
31
|
-
"types": "./lib/jiti.d.cts",
|
|
32
|
-
"typesVersions": {
|
|
33
|
-
"*": {
|
|
34
|
-
"register": [
|
|
35
|
-
"./lib/jiti-register.d.mts"
|
|
36
|
-
],
|
|
37
|
-
"native": [
|
|
38
|
-
"./lib/jiti.d.mts"
|
|
39
|
-
]
|
|
40
|
-
}
|
|
41
|
-
},
|
|
42
|
-
"bin": {
|
|
43
|
-
"jiti": "./lib/jiti-cli.mjs"
|
|
44
|
-
},
|
|
45
|
-
"files": [
|
|
46
|
-
"lib",
|
|
47
|
-
"dist",
|
|
48
|
-
"register.cjs"
|
|
49
|
-
],
|
|
50
|
-
"scripts": {
|
|
51
|
-
"bench": "node test/bench.mjs && deno -A test/bench.mjs && bun --bun test/bench.mjs",
|
|
52
|
-
"build": "pnpm clean && pnpm rspack",
|
|
53
|
-
"clean": "rm -rf dist",
|
|
54
|
-
"dev": "pnpm clean && pnpm rspack --watch",
|
|
55
|
-
"jiti": "JITI_DEBUG=1 JITI_JSX=1 lib/jiti-cli.mjs",
|
|
56
|
-
"lint": "eslint . && prettier -c src lib test stubs",
|
|
57
|
-
"lint:fix": "eslint --fix . && prettier -w src lib test stubs",
|
|
58
|
-
"prepack": "pnpm build",
|
|
59
|
-
"release": "pnpm build && pnpm test && changelogen --release --push --publish",
|
|
60
|
-
"test": "pnpm lint && pnpm test:types && vitest run --coverage && pnpm test:node-register && pnpm test:bun && pnpm test:native",
|
|
61
|
-
"test:bun": "bun --bun test test/bun",
|
|
62
|
-
"test:native": "pnpm test:native:bun && pnpm test:native:node && pnpm test:native:deno",
|
|
63
|
-
"test:native:bun": "bun --bun test test/native/bun.test.ts",
|
|
64
|
-
"test:native:deno": "deno test -A --no-check test/native/deno.test.ts",
|
|
65
|
-
"test:native:node": "node --test --experimental-strip-types test/native/node.test.ts",
|
|
66
|
-
"test:node-register": "JITI_JSX=1 node --test test/node-register.test.mjs",
|
|
67
|
-
"test:types": "tsc --noEmit"
|
|
68
|
-
},
|
|
69
|
-
"devDependencies": {
|
|
70
|
-
"@babel/core": "^7.28.4",
|
|
71
|
-
"@babel/helper-module-imports": "^7.27.1",
|
|
72
|
-
"@babel/helper-module-transforms": "^7.28.3",
|
|
73
|
-
"@babel/helper-plugin-utils": "^7.27.1",
|
|
74
|
-
"@babel/helper-simple-access": "^7.27.1",
|
|
75
|
-
"@babel/plugin-proposal-decorators": "^7.28.0",
|
|
76
|
-
"@babel/plugin-syntax-class-properties": "^7.12.13",
|
|
77
|
-
"@babel/plugin-syntax-import-assertions": "^7.27.1",
|
|
78
|
-
"@babel/plugin-syntax-jsx": "^7.27.1",
|
|
79
|
-
"@babel/plugin-transform-export-namespace-from": "^7.27.1",
|
|
80
|
-
"@babel/plugin-transform-react-jsx": "^7.27.1",
|
|
81
|
-
"@babel/plugin-transform-typescript": "^7.28.0",
|
|
82
|
-
"@babel/preset-typescript": "^7.27.1",
|
|
83
|
-
"@babel/template": "^7.27.2",
|
|
84
|
-
"@babel/traverse": "^7.28.4",
|
|
85
|
-
"@babel/types": "^7.28.4",
|
|
86
|
-
"@rspack/cli": "^1.5.8",
|
|
87
|
-
"@rspack/core": "^1.5.8",
|
|
88
|
-
"@types/babel__core": "^7.20.5",
|
|
89
|
-
"@types/babel__helper-module-imports": "^7.18.3",
|
|
90
|
-
"@types/babel__helper-plugin-utils": "^7.10.3",
|
|
91
|
-
"@types/babel__template": "^7.4.4",
|
|
92
|
-
"@types/babel__traverse": "^7.28.0",
|
|
93
|
-
"@types/node": "^24.6.1",
|
|
94
|
-
"@vitest/coverage-v8": "^3.2.4",
|
|
95
|
-
"acorn": "^8.15.0",
|
|
96
|
-
"babel-plugin-parameter-decorator": "^1.0.16",
|
|
97
|
-
"changelogen": "^0.6.2",
|
|
98
|
-
"config": "^4.1.1",
|
|
99
|
-
"consola": "^3.4.2",
|
|
100
|
-
"defu": "^6.1.4",
|
|
101
|
-
"destr": "^2.0.5",
|
|
102
|
-
"escape-string-regexp": "^5.0.0",
|
|
103
|
-
"eslint": "^9.36.0",
|
|
104
|
-
"eslint-config-unjs": "^0.5.0",
|
|
105
|
-
"estree-walker": "^3.0.3",
|
|
106
|
-
"etag": "^1.8.1",
|
|
107
|
-
"fast-glob": "^3.3.3",
|
|
108
|
-
"is-installed-globally": "^1.0.0",
|
|
109
|
-
"mime": "^4.1.0",
|
|
110
|
-
"mlly": "^1.8.0",
|
|
111
|
-
"moment-timezone": "^0.6.0",
|
|
112
|
-
"nano-jsx": "^0.2.0",
|
|
113
|
-
"pathe": "^2.0.3",
|
|
114
|
-
"pkg-types": "^2.3.0",
|
|
115
|
-
"preact": "^10.27.2",
|
|
116
|
-
"preact-render-to-string": "^6.6.2",
|
|
117
|
-
"prettier": "^3.6.2",
|
|
118
|
-
"react": "^19.1.1",
|
|
119
|
-
"react-dom": "^19.1.1",
|
|
120
|
-
"reflect-metadata": "^0.2.2",
|
|
121
|
-
"solid-js": "^1.9.9",
|
|
122
|
-
"std-env": "^3.9.0",
|
|
123
|
-
"terser-webpack-plugin": "^5.3.14",
|
|
124
|
-
"tinyexec": "^1.0.1",
|
|
125
|
-
"ts-loader": "^9.5.4",
|
|
126
|
-
"typescript": "^5.9.3",
|
|
127
|
-
"vitest": "^3.2.4",
|
|
128
|
-
"vue": "^3.5.22",
|
|
129
|
-
"yoctocolors": "^2.1.2",
|
|
130
|
-
"zod": "^4.1.11"
|
|
131
|
-
},
|
|
132
|
-
"packageManager": "pnpm@10.17.1"
|
|
133
|
-
}
|