@netrojs/fnetro 0.2.20 → 0.3.0

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,7 +1,7 @@
1
1
  {
2
2
  "name": "@netrojs/fnetro",
3
- "version": "0.2.20",
4
- "description": "Full-stack Hono framework SolidJS SSR/SPA, SEO, middleware, route groups, API routes",
3
+ "version": "0.3.0",
4
+ "description": "Full-stack Hono + Vue 3 framework \u2014 Streaming SSR, SPA, code splitting, SEO, middleware",
5
5
  "type": "module",
6
6
  "license": "MIT",
7
7
  "author": "Netro Solutions<info@netrosolutions.com>",
@@ -17,22 +17,20 @@
17
17
  "keywords": [
18
18
  "fnetro",
19
19
  "hono",
20
- "solid",
21
- "solidjs",
22
- "framework",
20
+ "vue",
21
+ "vue3",
23
22
  "fullstack",
24
23
  "ssr",
24
+ "streaming",
25
25
  "spa",
26
26
  "seo",
27
- "jsx",
28
- "tsx",
27
+ "typescript",
29
28
  "node",
30
29
  "bun",
31
30
  "deno",
32
- "cloudflare-workers",
33
- "edge",
34
- "typescript"
31
+ "edge"
35
32
  ],
33
+ "sideEffects": false,
36
34
  "exports": {
37
35
  ".": {
38
36
  "types": "./dist/core.d.ts",
@@ -59,6 +57,7 @@
59
57
  "types": "./dist/core.d.ts",
60
58
  "files": [
61
59
  "dist",
60
+ "types.ts",
62
61
  "core.ts",
63
62
  "server.ts",
64
63
  "client.ts",
@@ -73,28 +72,32 @@
73
72
  "prepublishOnly": "npm run clean && npm run build && npm run typecheck"
74
73
  },
75
74
  "peerDependencies": {
76
- "solid-js": ">=1.9.11",
75
+ "vue": ">=3.5.0",
76
+ "vue-router": ">=4.4.0",
77
+ "@vue/server-renderer": ">=3.5.0",
77
78
  "hono": ">=4.0.0",
78
- "vite": ">=5.0.0",
79
- "vite-plugin-solid": ">=2.11.11"
79
+ "vite": ">=6.0.0",
80
+ "@vitejs/plugin-vue": ">=5.0.0"
80
81
  },
81
82
  "peerDependenciesMeta": {
82
83
  "vite": {
83
84
  "optional": true
84
85
  },
85
- "vite-plugin-solid": {
86
+ "@vitejs/plugin-vue": {
86
87
  "optional": true
87
88
  }
88
89
  },
89
90
  "devDependencies": {
90
91
  "@hono/node-server": "^1.19.11",
91
92
  "@types/node": "^22.0.0",
93
+ "@vitejs/plugin-vue": "^6.0.5",
94
+ "@vue/server-renderer": "^3.5.30",
92
95
  "hono": "^4.12.8",
93
96
  "rimraf": "^6.1.3",
94
- "solid-js": "^1.9.11",
95
97
  "tsup": "^8.5.1",
96
98
  "typescript": "^5.9.3",
97
99
  "vite": "^8.0.1",
98
- "vite-plugin-solid": "^2.11.11"
99
- }
100
- }
100
+ "vue": "^3.5.30",
101
+ "vue-router": "^5.0.4"
102
+ }
103
+ }