@kubb/agent 4.25.0 → 4.25.2
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 +12 -6
- package/.output/server/chunks/routes/api/health.get.mjs +1 -0
- package/.output/server/chunks/routes/api/health.get.mjs.map +1 -1
- package/.output/server/index.mjs +1 -0
- package/.output/server/index.mjs.map +1 -1
- package/.output/server/node_modules/.nitro/jiti@2.5.1/dist/babel.cjs +246 -0
- package/.output/server/node_modules/.nitro/jiti@2.5.1/dist/jiti.cjs +1 -0
- package/.output/server/node_modules/.nitro/jiti@2.5.1/lib/jiti.mjs +22 -0
- package/.output/server/node_modules/.nitro/jiti@2.5.1/package.json +134 -0
- package/.output/server/package.json +3 -3
- package/package.json +5 -3
- /package/.output/server/node_modules/{jiti → .nitro/jiti@2.6.1}/dist/jiti.cjs +0 -0
- /package/.output/server/node_modules/{jiti → .nitro/jiti@2.6.1}/lib/jiti.mjs +0 -0
- /package/.output/server/node_modules/{jiti → .nitro/jiti@2.6.1}/package.json +0 -0
|
@@ -0,0 +1,134 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "jiti",
|
|
3
|
+
"version": "2.5.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
|
+
"build": "pnpm clean && NODE_ENV=production pnpm webpack",
|
|
52
|
+
"clean": "rm -rf dist",
|
|
53
|
+
"dev": "pnpm clean && pnpm webpack --watch",
|
|
54
|
+
"jiti": "JITI_DEBUG=1 JITI_JSX=1 lib/jiti-cli.mjs",
|
|
55
|
+
"lint": "eslint . && prettier -c src lib test stubs",
|
|
56
|
+
"lint:fix": "eslint --fix . && prettier -w src lib test stubs",
|
|
57
|
+
"prepack": "pnpm build",
|
|
58
|
+
"release": "pnpm build && pnpm test && changelogen --release --push --publish",
|
|
59
|
+
"test": "pnpm lint && pnpm test:types && vitest run --coverage && pnpm test:node-register && pnpm test:bun && pnpm test:native",
|
|
60
|
+
"test:bun": "bun --bun test test/bun",
|
|
61
|
+
"test:native": "pnpm test:native:bun && pnpm test:native:node && pnpm test:native:deno",
|
|
62
|
+
"test:native:bun": "bun --bun test test/native/bun.test.ts",
|
|
63
|
+
"test:native:deno": "deno test -A --no-check test/native/deno.test.ts",
|
|
64
|
+
"test:native:node": "node --test --experimental-strip-types test/native/node.test.ts",
|
|
65
|
+
"test:node-register": "JITI_JSX=1 node --test test/node-register.test.mjs",
|
|
66
|
+
"test:types": "tsc --noEmit"
|
|
67
|
+
},
|
|
68
|
+
"devDependencies": {
|
|
69
|
+
"@babel/core": "^7.28.0",
|
|
70
|
+
"@babel/helper-module-imports": "^7.27.1",
|
|
71
|
+
"@babel/helper-module-transforms": "^7.27.3",
|
|
72
|
+
"@babel/helper-plugin-utils": "^7.27.1",
|
|
73
|
+
"@babel/helper-simple-access": "^7.27.1",
|
|
74
|
+
"@babel/plugin-proposal-decorators": "^7.28.0",
|
|
75
|
+
"@babel/plugin-syntax-class-properties": "^7.12.13",
|
|
76
|
+
"@babel/plugin-syntax-import-assertions": "^7.27.1",
|
|
77
|
+
"@babel/plugin-syntax-jsx": "^7.27.1",
|
|
78
|
+
"@babel/plugin-transform-export-namespace-from": "^7.27.1",
|
|
79
|
+
"@babel/plugin-transform-react-jsx": "^7.27.1",
|
|
80
|
+
"@babel/plugin-transform-typescript": "^7.28.0",
|
|
81
|
+
"@babel/preset-typescript": "^7.27.1",
|
|
82
|
+
"@babel/template": "^7.27.2",
|
|
83
|
+
"@babel/traverse": "^7.28.0",
|
|
84
|
+
"@babel/types": "^7.28.1",
|
|
85
|
+
"@types/babel__core": "^7.20.5",
|
|
86
|
+
"@types/babel__helper-module-imports": "^7.18.3",
|
|
87
|
+
"@types/babel__helper-plugin-utils": "^7.10.3",
|
|
88
|
+
"@types/babel__template": "^7.4.4",
|
|
89
|
+
"@types/babel__traverse": "^7.20.7",
|
|
90
|
+
"@types/node": "^24.1.0",
|
|
91
|
+
"@vitest/coverage-v8": "^3.2.4",
|
|
92
|
+
"acorn": "^8.15.0",
|
|
93
|
+
"babel-plugin-parameter-decorator": "^1.0.16",
|
|
94
|
+
"changelogen": "^0.6.2",
|
|
95
|
+
"config": "^4.0.1",
|
|
96
|
+
"consola": "^3.4.2",
|
|
97
|
+
"defu": "^6.1.4",
|
|
98
|
+
"destr": "^2.0.5",
|
|
99
|
+
"escape-string-regexp": "^5.0.0",
|
|
100
|
+
"eslint": "^9.31.0",
|
|
101
|
+
"eslint-config-unjs": "^0.5.0",
|
|
102
|
+
"estree-walker": "^3.0.3",
|
|
103
|
+
"etag": "^1.8.1",
|
|
104
|
+
"fast-glob": "^3.3.3",
|
|
105
|
+
"is-installed-globally": "^1.0.0",
|
|
106
|
+
"mime": "^4.0.7",
|
|
107
|
+
"mlly": "^1.7.4",
|
|
108
|
+
"moment-timezone": "^0.6.0",
|
|
109
|
+
"nano-jsx": "^0.1.0",
|
|
110
|
+
"pathe": "^2.0.3",
|
|
111
|
+
"pkg-types": "^2.2.0",
|
|
112
|
+
"preact": "^10.26.9",
|
|
113
|
+
"preact-render-to-string": "^6.5.13",
|
|
114
|
+
"prettier": "^3.6.2",
|
|
115
|
+
"react": "^19.1.0",
|
|
116
|
+
"react-dom": "^19.1.0",
|
|
117
|
+
"reflect-metadata": "^0.2.2",
|
|
118
|
+
"solid-js": "^1.9.7",
|
|
119
|
+
"std-env": "^3.9.0",
|
|
120
|
+
"terser-webpack-plugin": "^5.3.14",
|
|
121
|
+
"tinyexec": "^1.0.1",
|
|
122
|
+
"ts-loader": "^9.5.2",
|
|
123
|
+
"typescript": "^5.8.3",
|
|
124
|
+
"vitest": "^3.2.4",
|
|
125
|
+
"vue": "^3.5.18",
|
|
126
|
+
"webpack": "^5.100.2",
|
|
127
|
+
"webpack-bundle-analyzer": "^4.10.2",
|
|
128
|
+
"webpack-cli": "^6.0.1",
|
|
129
|
+
"webpack-license-plugin": "^4.5.1",
|
|
130
|
+
"yoctocolors": "^2.1.1",
|
|
131
|
+
"zod": "^4.0.5"
|
|
132
|
+
},
|
|
133
|
+
"packageManager": "pnpm@10.6.1"
|
|
134
|
+
}
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@kubb/agent-prod",
|
|
3
|
-
"version": "4.25.
|
|
3
|
+
"version": "4.25.2",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"private": true,
|
|
6
6
|
"dependencies": {
|
|
@@ -27,7 +27,7 @@
|
|
|
27
27
|
"is-stream": "4.0.1",
|
|
28
28
|
"is-unicode-supported": "2.1.0",
|
|
29
29
|
"isexe": "2.0.0",
|
|
30
|
-
"jiti": "2.
|
|
30
|
+
"jiti": "2.5.1",
|
|
31
31
|
"js-runtime": "0.0.8",
|
|
32
32
|
"jsonfile": "6.2.0",
|
|
33
33
|
"mime-db": "1.33.0",
|
|
@@ -59,7 +59,7 @@
|
|
|
59
59
|
"unicorn-magic": "0.3.0",
|
|
60
60
|
"universalify": "2.0.1",
|
|
61
61
|
"which": "2.0.2",
|
|
62
|
-
"ws": "8.
|
|
62
|
+
"ws": "8.19.0",
|
|
63
63
|
"yocto-queue": "1.2.2",
|
|
64
64
|
"yoctocolors": "2.1.2"
|
|
65
65
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@kubb/agent",
|
|
3
|
-
"version": "4.25.
|
|
3
|
+
"version": "4.25.2",
|
|
4
4
|
"description": "Agent server for Kubb, enabling HTTP-based access to code generation capabilities.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"agent",
|
|
@@ -40,13 +40,15 @@
|
|
|
40
40
|
"dependencies": {
|
|
41
41
|
"@kubb/fabric-core": "0.12.11",
|
|
42
42
|
"execa": "^9.6.1",
|
|
43
|
-
"jiti": "
|
|
43
|
+
"jiti": "2.5.1",
|
|
44
44
|
"nitropack": "^2.13.1",
|
|
45
45
|
"picocolors": "^1.1.1",
|
|
46
46
|
"string-argv": "^0.3.2",
|
|
47
|
-
"
|
|
47
|
+
"ws": "^8.19.0",
|
|
48
|
+
"@kubb/core": "4.25.2"
|
|
48
49
|
},
|
|
49
50
|
"devDependencies": {
|
|
51
|
+
"@types/ws": "^8.18.1",
|
|
50
52
|
"msw": "^2.6.10",
|
|
51
53
|
"vite": "^7.3.1"
|
|
52
54
|
},
|
|
File without changes
|
|
File without changes
|
|
File without changes
|