@forklaunch/express 0.10.5 → 0.10.6

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/lib/index.js CHANGED
@@ -2248,7 +2248,7 @@ var Application = class extends import_http3.ForklaunchExpressLikeApplication {
2248
2248
  }
2249
2249
  );
2250
2250
  this.internal.get(
2251
- `/api/${process.env.VERSION ?? "v1"}/openapi-hash`,
2251
+ `/api${process.env.VERSION ? `/${process.env.VERSION}` : ""}/openapi-hash`,
2252
2252
  async (_, res) => {
2253
2253
  const hash = await import_crypto.default.createHash("sha256").update((0, import_common4.safeStringify)(openApi)).digest("hex");
2254
2254
  res.send(hash);
package/lib/index.mjs CHANGED
@@ -2224,7 +2224,7 @@ var Application = class extends ForklaunchExpressLikeApplication {
2224
2224
  }
2225
2225
  );
2226
2226
  this.internal.get(
2227
- `/api/${process.env.VERSION ?? "v1"}/openapi-hash`,
2227
+ `/api${process.env.VERSION ? `/${process.env.VERSION}` : ""}/openapi-hash`,
2228
2228
  async (_, res) => {
2229
2229
  const hash = await crypto2.createHash("sha256").update(safeStringify2(openApi)).digest("hex");
2230
2230
  res.send(hash);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@forklaunch/express",
3
- "version": "0.10.5",
3
+ "version": "0.10.6",
4
4
  "description": "Forklaunch framework for express.",
5
5
  "homepage": "https://github.com/forklaunch/forklaunch-js#readme",
6
6
  "bugs": {
@@ -25,45 +25,45 @@
25
25
  "lib/**"
26
26
  ],
27
27
  "dependencies": {
28
- "@modelcontextprotocol/sdk": "^1.26.0",
29
- "@scalar/express-api-reference": "^0.8.40",
28
+ "@modelcontextprotocol/sdk": "^1.27.0",
29
+ "@scalar/express-api-reference": "^0.8.44",
30
30
  "@types/multer": "^2.0.0",
31
31
  "body-parser": "^2.2.2",
32
32
  "busboy": "^1.6.0",
33
33
  "cors": "^2.8.6",
34
34
  "express": "^5.2.1",
35
- "fastmcp": "^3.31.0",
35
+ "fastmcp": "^3.33.0",
36
36
  "multer": "2.0.2",
37
- "qs": "^6.14.1",
37
+ "qs": "^6.15.0",
38
38
  "range-parser": "^1.2.1",
39
39
  "swagger-ui-express": "^5.0.1",
40
- "@forklaunch/common": "0.6.28",
41
- "@forklaunch/core": "0.18.1",
42
- "@forklaunch/validator": "0.10.28"
40
+ "@forklaunch/common": "0.6.29",
41
+ "@forklaunch/core": "0.18.2",
42
+ "@forklaunch/validator": "0.10.29"
43
43
  },
44
44
  "devDependencies": {
45
- "@eslint/js": "^9.39.2",
45
+ "@eslint/js": "^10.0.1",
46
46
  "@types/body-parser": "^1.19.6",
47
- "@types/bun": "^1.3.8",
47
+ "@types/bun": "^1.3.9",
48
48
  "@types/busboy": "^1.5.4",
49
49
  "@types/cors": "^2.8.19",
50
50
  "@types/express": "^5.0.6",
51
51
  "@types/express-serve-static-core": "^5.1.1",
52
52
  "@types/jest": "^30.0.0",
53
- "@types/node": "^25.2.0",
53
+ "@types/node": "^25.3.0",
54
54
  "@types/qs": "^6.14.0",
55
55
  "@types/range-parser": "^1.2.7",
56
56
  "@types/swagger-ui-express": "^4.1.8",
57
- "@typescript/native-preview": "7.0.0-dev.20260204.1",
57
+ "@typescript/native-preview": "7.0.0-dev.20260223.1",
58
58
  "jest": "^30.2.0",
59
59
  "kill-port-process": "^3.2.1",
60
60
  "prettier": "^3.8.1",
61
61
  "ts-jest": "^29.4.6",
62
62
  "ts-node": "^10.9.2",
63
63
  "tsup": "^8.5.1",
64
- "typedoc": "^0.28.16",
64
+ "typedoc": "^0.28.17",
65
65
  "typescript": "^5.9.3",
66
- "typescript-eslint": "^8.54.0"
66
+ "typescript-eslint": "^8.56.1"
67
67
  },
68
68
  "scripts": {
69
69
  "build": "tsgo --noEmit && tsup index.ts --format cjs,esm --no-splitting --tsconfig tsconfig.json --outDir lib --dts --clean",