@netrojs/fnetro 0.1.6 → 0.2.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.1.6",
4
- "description": "Full-stack Hono framework — SSR, SPA, Vue-like reactivity, route groups, middleware and API routes",
3
+ "version": "0.2.0",
4
+ "description": "Full-stack Hono framework — SolidJS SSR/SPA, SEO, middleware, route groups, API routes",
5
5
  "type": "module",
6
6
  "license": "MIT",
7
7
  "author": "Netro Solutions<info@netrosolutions.com>",
@@ -17,19 +17,21 @@
17
17
  "keywords": [
18
18
  "fnetro",
19
19
  "hono",
20
+ "solid",
21
+ "solidjs",
20
22
  "framework",
21
23
  "fullstack",
22
24
  "ssr",
23
25
  "spa",
24
- "reactivity",
25
- "signals",
26
+ "seo",
26
27
  "jsx",
27
28
  "tsx",
28
29
  "node",
29
30
  "bun",
30
31
  "deno",
31
32
  "cloudflare-workers",
32
- "edge"
33
+ "edge",
34
+ "typescript"
33
35
  ],
34
36
  "exports": {
35
37
  ".": {
@@ -71,21 +73,28 @@
71
73
  "prepublishOnly": "npm run clean && npm run build && npm run typecheck"
72
74
  },
73
75
  "peerDependencies": {
76
+ "solid-js": ">=1.9.11",
74
77
  "hono": ">=4.0.0",
75
- "vite": ">=5.0.0"
78
+ "vite": ">=5.0.0",
79
+ "vite-plugin-solid": ">=2.11.11"
76
80
  },
77
81
  "peerDependenciesMeta": {
78
82
  "vite": {
79
83
  "optional": true
84
+ },
85
+ "vite-plugin-solid": {
86
+ "optional": true
80
87
  }
81
88
  },
82
89
  "devDependencies": {
83
90
  "@hono/node-server": "^1.19.11",
84
- "@types/node": "^25.5.0",
91
+ "@types/node": "^22.0.0",
85
92
  "hono": "^4.12.8",
86
93
  "rimraf": "^6.1.3",
94
+ "solid-js": "^1.9.11",
87
95
  "tsup": "^8.5.1",
88
96
  "typescript": "^5.9.3",
89
- "vite": "^8.0.0"
97
+ "vite": "^8.0.1",
98
+ "vite-plugin-solid": "^2.11.11"
90
99
  }
91
100
  }