@websublime/vite-plugin-open-api-server 0.24.0-next.4 → 0.24.0-next.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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@websublime/vite-plugin-open-api-server",
3
- "version": "0.24.0-next.4",
3
+ "version": "0.24.0-next.6",
4
4
  "description": "Vite plugin for OpenAPI mock server with DevTools integration",
5
5
  "keywords": [
6
6
  "vite",
@@ -23,32 +23,37 @@
23
23
  "directory": "packages/server"
24
24
  },
25
25
  "dependencies": {
26
- "fast-glob": "^3.3.3",
26
+ "picocolors": "^1.1.1",
27
27
  "chokidar": "^5.0.0",
28
28
  "@vue/devtools-api": "^8.0.6",
29
- "picocolors": "^1.1.1",
30
- "@websublime/vite-plugin-open-api-core": "0.14.0-next.5"
29
+ "fast-glob": "^3.3.3",
30
+ "@websublime/vite-plugin-open-api-core": "0.14.0-next.7"
31
31
  },
32
32
  "devDependencies": {
33
- "hono": "^4.11.4",
34
- "vue": "^3.5.27",
35
- "@types/node": "^20.17.10",
36
33
  "@scalar/openapi-types": "^0.5.3",
34
+ "vite": "^7.0.0",
37
35
  "typescript": "^5.9.0",
36
+ "vue": "^3.5.27",
37
+ "@types/node": "^20.17.10",
38
38
  "tsup": "^8.5.0",
39
- "vite": "^7.0.0",
40
39
  "@hono/node-server": "^1.14.3",
40
+ "@hono/node-ws": "^1.3.0",
41
+ "hono": "^4.11.4",
41
42
  "@websublime/vite-plugin-open-api-devtools": "0.8.5"
42
43
  },
43
44
  "peerDependencies": {
44
- "vue": "^3.0.0",
45
- "@hono/node-server": "^1.14.0",
46
45
  "hono": "^4.11.4",
47
- "vite": "^5.0.0 || ^6.0.0 || ^7.0.0"
46
+ "@hono/node-ws": "^1.3.0",
47
+ "@hono/node-server": "^1.14.0",
48
+ "vite": "^5.0.0 || ^6.0.0 || ^7.0.0",
49
+ "vue": "^3.0.0"
48
50
  },
49
51
  "peerDependenciesMeta": {
50
52
  "vue": {
51
53
  "optional": true
54
+ },
55
+ "@hono/node-ws": {
56
+ "optional": true
52
57
  }
53
58
  },
54
59
  "engines": {
@@ -65,9 +70,9 @@
65
70
  }
66
71
  },
67
72
  "scripts": {
68
- "dev": "tsup --watch",
69
- "copy:devtools-spa": "node scripts/copy-devtools-spa.mjs",
70
73
  "build": "tsup && pnpm run copy:devtools-spa",
71
- "typecheck": "tsc --noEmit"
74
+ "typecheck": "tsc --noEmit",
75
+ "copy:devtools-spa": "node scripts/copy-devtools-spa.mjs",
76
+ "dev": "tsup --watch"
72
77
  }
73
78
  }