create-vite-extra 3.0.0 → 3.0.1

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.
Files changed (74) hide show
  1. package/index.js +2 -2
  2. package/package.json +2 -2
  3. package/template-deno-lit/deno.json +2 -2
  4. package/template-deno-lit/src/index.css +1 -1
  5. package/template-deno-lit-ts/deno.json +2 -2
  6. package/template-deno-lit-ts/src/index.css +1 -1
  7. package/template-deno-lit-ts/src/my-element.ts +0 -1
  8. package/template-deno-preact/deno.json +4 -4
  9. package/template-deno-preact/src/index.css +1 -1
  10. package/template-deno-preact-ts/deno.json +4 -4
  11. package/template-deno-preact-ts/src/app.tsx +0 -1
  12. package/template-deno-preact-ts/src/index.css +1 -1
  13. package/template-deno-react/deno.json +6 -6
  14. package/template-deno-react/src/App.jsx +0 -1
  15. package/template-deno-react/src/index.css +1 -1
  16. package/template-deno-react/src/main.jsx +0 -2
  17. package/template-deno-react-ts/deno.json +6 -6
  18. package/template-deno-react-ts/src/App.tsx +0 -2
  19. package/template-deno-react-ts/src/index.css +1 -1
  20. package/template-deno-react-ts/src/main.tsx +0 -2
  21. package/template-deno-solid/deno.json +4 -4
  22. package/template-deno-solid/src/index.css +1 -1
  23. package/template-deno-solid-ts/deno.json +4 -4
  24. package/template-deno-solid-ts/src/App.tsx +0 -1
  25. package/template-deno-solid-ts/src/index.css +1 -1
  26. package/template-deno-svelte/deno.json +4 -4
  27. package/template-deno-svelte/src/app.css +1 -1
  28. package/template-deno-svelte-ts/deno.json +4 -4
  29. package/template-deno-svelte-ts/src/app.css +1 -1
  30. package/template-deno-vanilla/deno.json +2 -2
  31. package/template-deno-vanilla/src/style.css +1 -1
  32. package/template-deno-vanilla-ts/deno.json +2 -2
  33. package/template-deno-vanilla-ts/src/style.css +1 -1
  34. package/template-deno-vue/deno.json +2 -2
  35. package/template-deno-vue/src/style.css +1 -1
  36. package/template-deno-vue-ts/deno.json +2 -2
  37. package/template-deno-vue-ts/src/style.css +1 -1
  38. package/template-library/package.json +1 -1
  39. package/template-library/style.css +1 -1
  40. package/template-library-ts/package.json +2 -2
  41. package/template-library-ts/src/style.css +1 -1
  42. package/template-ssr-preact/package.json +6 -6
  43. package/template-ssr-preact/src/index.css +1 -1
  44. package/template-ssr-preact-ts/package.json +8 -8
  45. package/template-ssr-preact-ts/src/index.css +1 -1
  46. package/template-ssr-react/package.json +7 -7
  47. package/template-ssr-react/src/index.css +1 -1
  48. package/template-ssr-react-streaming/package.json +5 -5
  49. package/template-ssr-react-streaming/src/index.css +1 -1
  50. package/template-ssr-react-streaming-ts/package.json +9 -9
  51. package/template-ssr-react-streaming-ts/src/index.css +1 -1
  52. package/template-ssr-react-ts/package.json +9 -9
  53. package/template-ssr-react-ts/src/index.css +1 -1
  54. package/template-ssr-solid/package.json +5 -5
  55. package/template-ssr-solid/src/index.css +1 -1
  56. package/template-ssr-solid-ts/package.json +6 -6
  57. package/template-ssr-solid-ts/src/index.css +1 -1
  58. package/template-ssr-svelte/package.json +5 -5
  59. package/template-ssr-svelte/src/app.css +1 -1
  60. package/template-ssr-svelte-ts/package.json +8 -8
  61. package/template-ssr-svelte-ts/src/app.css +1 -1
  62. package/template-ssr-transform/package.json +1 -1
  63. package/template-ssr-vanilla/package.json +3 -3
  64. package/template-ssr-vanilla/src/style.css +1 -1
  65. package/template-ssr-vanilla-ts/package.json +5 -5
  66. package/template-ssr-vanilla-ts/src/style.css +1 -1
  67. package/template-ssr-vue/package.json +3 -3
  68. package/template-ssr-vue/src/style.css +1 -1
  69. package/template-ssr-vue-streaming/package.json +3 -3
  70. package/template-ssr-vue-streaming/src/style.css +1 -1
  71. package/template-ssr-vue-streaming-ts/package.json +6 -6
  72. package/template-ssr-vue-streaming-ts/src/style.css +1 -1
  73. package/template-ssr-vue-ts/package.json +6 -6
  74. package/template-ssr-vue-ts/src/style.css +1 -1
package/index.js CHANGED
@@ -639,14 +639,14 @@ function setupReactSwc(root, { isTs, isDeno }) {
639
639
  editFile(path.resolve(root, 'deno.json'), (content) => {
640
640
  return content.replace(
641
641
  /"@vitejs\/plugin-react": ".+?"/,
642
- `"@vitejs/plugin-react-swc": "npm:@vitejs/plugin-react-swc@^3.7.1"`,
642
+ `"@vitejs/plugin-react-swc": "npm:@vitejs/plugin-react-swc@^3.8.0"`,
643
643
  )
644
644
  })
645
645
  } else {
646
646
  editFile(path.resolve(root, 'package.json'), (content) => {
647
647
  return content.replace(
648
648
  /"@vitejs\/plugin-react": ".+?"/,
649
- `"@vitejs/plugin-react-swc": "^3.7.1"`,
649
+ `"@vitejs/plugin-react-swc": "^3.8.0"`,
650
650
  )
651
651
  })
652
652
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "create-vite-extra",
3
- "version": "3.0.0",
3
+ "version": "3.0.1",
4
4
  "type": "module",
5
5
  "license": "MIT",
6
6
  "author": "Bjorn Lu",
@@ -34,7 +34,7 @@
34
34
  "prompts": "^2.4.2"
35
35
  },
36
36
  "devDependencies": {
37
- "prettier": "^3.4.1"
37
+ "prettier": "^3.5.1"
38
38
  },
39
39
  "scripts": {
40
40
  "format": "prettier --write .",
@@ -7,8 +7,8 @@
7
7
  "lib": ["ES2020", "DOM", "DOM.Iterable"]
8
8
  },
9
9
  "imports": {
10
- "@deno/vite-plugin": "npm:@deno/vite-plugin@^1.0.0",
10
+ "@deno/vite-plugin": "npm:@deno/vite-plugin@^1.0.4",
11
11
  "lit": "npm:lit@^3.2.1",
12
- "vite": "npm:vite@^6.0.1"
12
+ "vite": "npm:vite@^6.1.1"
13
13
  }
14
14
  }
@@ -1,5 +1,5 @@
1
1
  :root {
2
- font-family: Inter, system-ui, Avenir, Helvetica, Arial, sans-serif;
2
+ font-family: system-ui, Avenir, Helvetica, Arial, sans-serif;
3
3
  line-height: 1.5;
4
4
  font-weight: 400;
5
5
 
@@ -8,8 +8,8 @@
8
8
  "experimentalDecorators": true
9
9
  },
10
10
  "imports": {
11
- "@deno/vite-plugin": "npm:@deno/vite-plugin@^1.0.0",
11
+ "@deno/vite-plugin": "npm:@deno/vite-plugin@^1.0.4",
12
12
  "lit": "npm:lit@^3.2.1",
13
- "vite": "npm:vite@^6.0.1"
13
+ "vite": "npm:vite@^6.1.1"
14
14
  }
15
15
  }
@@ -1,5 +1,5 @@
1
1
  :root {
2
- font-family: Inter, system-ui, Avenir, Helvetica, Arial, sans-serif;
2
+ font-family: system-ui, Avenir, Helvetica, Arial, sans-serif;
3
3
  line-height: 1.5;
4
4
  font-weight: 400;
5
5
 
@@ -1,6 +1,5 @@
1
1
  import { LitElement, css, html } from 'lit'
2
2
  import { customElement, property } from 'lit/decorators.js'
3
- // @ts-expect-error Unable to infer type at the moment
4
3
  import litLogo from './assets/lit.svg'
5
4
 
6
5
  /**
@@ -11,9 +11,9 @@
11
11
  "jsxImportSource": "preact"
12
12
  },
13
13
  "imports": {
14
- "@deno/vite-plugin": "npm:@deno/vite-plugin@^1.0.0",
15
- "@preact/preset-vite": "npm:@preact/preset-vite@^2.9.1",
16
- "preact": "npm:preact@^10.25.0",
17
- "vite": "npm:vite@^6.0.1"
14
+ "@deno/vite-plugin": "npm:@deno/vite-plugin@^1.0.4",
15
+ "@preact/preset-vite": "npm:@preact/preset-vite@^2.10.1",
16
+ "preact": "npm:preact@^10.26.2",
17
+ "vite": "npm:vite@^6.1.1"
18
18
  }
19
19
  }
@@ -1,5 +1,5 @@
1
1
  :root {
2
- font-family: Inter, system-ui, Avenir, Helvetica, Arial, sans-serif;
2
+ font-family: system-ui, Avenir, Helvetica, Arial, sans-serif;
3
3
  line-height: 1.5;
4
4
  font-weight: 400;
5
5
 
@@ -11,9 +11,9 @@
11
11
  "jsxImportSource": "preact"
12
12
  },
13
13
  "imports": {
14
- "@deno/vite-plugin": "npm:@deno/vite-plugin@^1.0.0",
15
- "@preact/preset-vite": "npm:@preact/preset-vite@^2.9.1",
16
- "preact": "npm:preact@^10.25.0",
17
- "vite": "npm:vite@^6.0.1"
14
+ "@deno/vite-plugin": "npm:@deno/vite-plugin@^1.0.4",
15
+ "@preact/preset-vite": "npm:@preact/preset-vite@^2.10.1",
16
+ "preact": "npm:preact@^10.26.2",
17
+ "vite": "npm:vite@^6.1.1"
18
18
  }
19
19
  }
@@ -1,6 +1,5 @@
1
1
  import './app.css'
2
2
  import { useState } from 'preact/hooks'
3
- // @ts-expect-error Unable to infer type at the moment
4
3
  import preactLogo from './assets/preact.svg'
5
4
 
6
5
  export function App() {
@@ -1,5 +1,5 @@
1
1
  :root {
2
- font-family: Inter, system-ui, Avenir, Helvetica, Arial, sans-serif;
2
+ font-family: system-ui, Avenir, Helvetica, Arial, sans-serif;
3
3
  line-height: 1.5;
4
4
  font-weight: 400;
5
5
 
@@ -12,12 +12,12 @@
12
12
  "jsxImportSourceTypes": "@types/react"
13
13
  },
14
14
  "imports": {
15
- "@deno/vite-plugin": "npm:@deno/vite-plugin@^1.0.0",
16
- "@types/react": "npm:@types/react@^18.3.12",
17
- "@types/react-dom": "npm:@types/react-dom@^18.3.1",
15
+ "@deno/vite-plugin": "npm:@deno/vite-plugin@^1.0.4",
16
+ "@types/react": "npm:@types/react@^19.0.10",
17
+ "@types/react-dom": "npm:@types/react-dom@^19.0.4",
18
18
  "@vitejs/plugin-react": "npm:@vitejs/plugin-react@^4.3.4",
19
- "react": "npm:react@^18.3.1",
20
- "react-dom": "npm:react-dom@^18.3.1",
21
- "vite": "npm:vite@^6.0.1"
19
+ "react": "npm:react@^19.0.0",
20
+ "react-dom": "npm:react-dom@^19.0.0",
21
+ "vite": "npm:vite@^6.1.1"
22
22
  }
23
23
  }
@@ -1,5 +1,4 @@
1
1
  import './App.css'
2
- // @deno-types="@types/react"
3
2
  import { useState } from 'react'
4
3
  import reactLogo from './assets/react.svg'
5
4
 
@@ -1,5 +1,5 @@
1
1
  :root {
2
- font-family: Inter, system-ui, Avenir, Helvetica, Arial, sans-serif;
2
+ font-family: system-ui, Avenir, Helvetica, Arial, sans-serif;
3
3
  line-height: 1.5;
4
4
  font-weight: 400;
5
5
 
@@ -1,7 +1,5 @@
1
1
  import './index.css'
2
- // @deno-types="@types/react"
3
2
  import { StrictMode } from 'react'
4
- // @deno-types="@types/react-dom/client"
5
3
  import { createRoot } from 'react-dom/client'
6
4
  import App from './App.jsx'
7
5
 
@@ -12,12 +12,12 @@
12
12
  "jsxImportSourceTypes": "@types/react"
13
13
  },
14
14
  "imports": {
15
- "@deno/vite-plugin": "npm:@deno/vite-plugin@^1.0.0",
16
- "@types/react": "npm:@types/react@^18.3.12",
17
- "@types/react-dom": "npm:@types/react-dom@^18.3.1",
15
+ "@deno/vite-plugin": "npm:@deno/vite-plugin@^1.0.4",
16
+ "@types/react": "npm:@types/react@^19.0.10",
17
+ "@types/react-dom": "npm:@types/react-dom@^19.0.4",
18
18
  "@vitejs/plugin-react": "npm:@vitejs/plugin-react@^4.3.4",
19
- "react": "npm:react@^18.3.1",
20
- "react-dom": "npm:react-dom@^18.3.1",
21
- "vite": "npm:vite@^6.0.1"
19
+ "react": "npm:react@^19.0.0",
20
+ "react-dom": "npm:react-dom@^19.0.0",
21
+ "vite": "npm:vite@^6.1.1"
22
22
  }
23
23
  }
@@ -1,7 +1,5 @@
1
1
  import './App.css'
2
- // @deno-types="@types/react"
3
2
  import { useState } from 'react'
4
- // @ts-expect-error Unable to infer type at the moment
5
3
  import reactLogo from './assets/react.svg'
6
4
 
7
5
  function App() {
@@ -1,5 +1,5 @@
1
1
  :root {
2
- font-family: Inter, system-ui, Avenir, Helvetica, Arial, sans-serif;
2
+ font-family: system-ui, Avenir, Helvetica, Arial, sans-serif;
3
3
  line-height: 1.5;
4
4
  font-weight: 400;
5
5
 
@@ -1,7 +1,5 @@
1
1
  import './index.css'
2
- // @deno-types="@types/react"
3
2
  import { StrictMode } from 'react'
4
- // @deno-types="@types/react-dom/client"
5
3
  import { createRoot } from 'react-dom/client'
6
4
  import App from './App.tsx'
7
5
 
@@ -11,9 +11,9 @@
11
11
  "jsxImportSource": "solid-js"
12
12
  },
13
13
  "imports": {
14
- "@deno/vite-plugin": "npm:@deno/vite-plugin@^1.0.0",
15
- "solid-js": "npm:solid-js@^1.9.3",
16
- "vite": "npm:vite@^6.0.1",
17
- "vite-plugin-solid": "npm:vite-plugin-solid@^2.11.0"
14
+ "@deno/vite-plugin": "npm:@deno/vite-plugin@^1.0.4",
15
+ "solid-js": "npm:solid-js@^1.9.4",
16
+ "vite": "npm:vite@^6.1.1",
17
+ "vite-plugin-solid": "npm:vite-plugin-solid@^2.11.2"
18
18
  }
19
19
  }
@@ -1,5 +1,5 @@
1
1
  :root {
2
- font-family: Inter, system-ui, Avenir, Helvetica, Arial, sans-serif;
2
+ font-family: system-ui, Avenir, Helvetica, Arial, sans-serif;
3
3
  line-height: 1.5;
4
4
  font-weight: 400;
5
5
 
@@ -11,9 +11,9 @@
11
11
  "jsxImportSource": "solid-js"
12
12
  },
13
13
  "imports": {
14
- "@deno/vite-plugin": "npm:@deno/vite-plugin@^1.0.0",
15
- "solid-js": "npm:solid-js@^1.9.3",
16
- "vite": "npm:vite@^6.0.1",
17
- "vite-plugin-solid": "npm:vite-plugin-solid@^2.11.0"
14
+ "@deno/vite-plugin": "npm:@deno/vite-plugin@^1.0.4",
15
+ "solid-js": "npm:solid-js@^1.9.4",
16
+ "vite": "npm:vite@^6.1.1",
17
+ "vite-plugin-solid": "npm:vite-plugin-solid@^2.11.2"
18
18
  }
19
19
  }
@@ -1,6 +1,5 @@
1
1
  import './App.css'
2
2
  import { createSignal } from 'solid-js'
3
- // @ts-expect-error Unable to infer type at the moment
4
3
  import solidLogo from './assets/solid.svg'
5
4
 
6
5
  function App() {
@@ -1,5 +1,5 @@
1
1
  :root {
2
- font-family: Inter, system-ui, Avenir, Helvetica, Arial, sans-serif;
2
+ font-family: system-ui, Avenir, Helvetica, Arial, sans-serif;
3
3
  line-height: 1.5;
4
4
  font-weight: 400;
5
5
 
@@ -9,9 +9,9 @@
9
9
  "lib": ["ES2020", "DOM", "DOM.Iterable"]
10
10
  },
11
11
  "imports": {
12
- "@deno/vite-plugin": "npm:@deno/vite-plugin@^1.0.0",
13
- "@sveltejs/vite-plugin-svelte": "npm:@sveltejs/vite-plugin-svelte@^5.0.1",
14
- "svelte": "npm:svelte@^5.2.9",
15
- "vite": "npm:vite@^6.0.1"
12
+ "@deno/vite-plugin": "npm:@deno/vite-plugin@^1.0.4",
13
+ "@sveltejs/vite-plugin-svelte": "npm:@sveltejs/vite-plugin-svelte@^5.0.3",
14
+ "svelte": "npm:svelte@^5.20.2",
15
+ "vite": "npm:vite@^6.1.1"
16
16
  }
17
17
  }
@@ -1,5 +1,5 @@
1
1
  :root {
2
- font-family: Inter, system-ui, Avenir, Helvetica, Arial, sans-serif;
2
+ font-family: system-ui, Avenir, Helvetica, Arial, sans-serif;
3
3
  line-height: 1.5;
4
4
  font-weight: 400;
5
5
 
@@ -9,9 +9,9 @@
9
9
  "lib": ["ES2020", "DOM", "DOM.Iterable"]
10
10
  },
11
11
  "imports": {
12
- "@deno/vite-plugin": "npm:@deno/vite-plugin@^1.0.0",
13
- "@sveltejs/vite-plugin-svelte": "npm:@sveltejs/vite-plugin-svelte@^5.0.1",
14
- "svelte": "npm:svelte@^5.2.9",
15
- "vite": "npm:vite@^6.0.1"
12
+ "@deno/vite-plugin": "npm:@deno/vite-plugin@^1.0.4",
13
+ "@sveltejs/vite-plugin-svelte": "npm:@sveltejs/vite-plugin-svelte@^5.0.3",
14
+ "svelte": "npm:svelte@^5.20.2",
15
+ "vite": "npm:vite@^6.1.1"
16
16
  }
17
17
  }
@@ -1,5 +1,5 @@
1
1
  :root {
2
- font-family: Inter, system-ui, Avenir, Helvetica, Arial, sans-serif;
2
+ font-family: system-ui, Avenir, Helvetica, Arial, sans-serif;
3
3
  line-height: 1.5;
4
4
  font-weight: 400;
5
5
 
@@ -9,7 +9,7 @@
9
9
  "lib": ["ES2020", "DOM", "DOM.Iterable"]
10
10
  },
11
11
  "imports": {
12
- "@deno/vite-plugin": "npm:@deno/vite-plugin@^1.0.0",
13
- "vite": "npm:vite@^6.0.1"
12
+ "@deno/vite-plugin": "npm:@deno/vite-plugin@^1.0.4",
13
+ "vite": "npm:vite@^6.1.1"
14
14
  }
15
15
  }
@@ -1,5 +1,5 @@
1
1
  :root {
2
- font-family: Inter, system-ui, Avenir, Helvetica, Arial, sans-serif;
2
+ font-family: system-ui, Avenir, Helvetica, Arial, sans-serif;
3
3
  line-height: 1.5;
4
4
  font-weight: 400;
5
5
 
@@ -9,7 +9,7 @@
9
9
  "lib": ["ES2020", "DOM", "DOM.Iterable"]
10
10
  },
11
11
  "imports": {
12
- "@deno/vite-plugin": "npm:@deno/vite-plugin@^1.0.0",
13
- "vite": "npm:vite@^6.0.1"
12
+ "@deno/vite-plugin": "npm:@deno/vite-plugin@^1.0.4",
13
+ "vite": "npm:vite@^6.1.1"
14
14
  }
15
15
  }
@@ -1,5 +1,5 @@
1
1
  :root {
2
- font-family: Inter, system-ui, Avenir, Helvetica, Arial, sans-serif;
2
+ font-family: system-ui, Avenir, Helvetica, Arial, sans-serif;
3
3
  line-height: 1.5;
4
4
  font-weight: 400;
5
5
 
@@ -9,9 +9,9 @@
9
9
  "lib": ["ES2020", "DOM", "DOM.Iterable"]
10
10
  },
11
11
  "imports": {
12
- "@deno/vite-plugin": "npm:@deno/vite-plugin@^1.0.0",
12
+ "@deno/vite-plugin": "npm:@deno/vite-plugin@^1.0.4",
13
13
  "@vitejs/plugin-vue": "npm:@vitejs/plugin-vue@^5.2.1",
14
- "vite": "npm:vite@^6.0.1",
14
+ "vite": "npm:vite@^6.1.1",
15
15
  "vue": "npm:vue@^3.5.13"
16
16
  }
17
17
  }
@@ -1,5 +1,5 @@
1
1
  :root {
2
- font-family: Inter, system-ui, Avenir, Helvetica, Arial, sans-serif;
2
+ font-family: system-ui, Avenir, Helvetica, Arial, sans-serif;
3
3
  line-height: 1.5;
4
4
  font-weight: 400;
5
5
 
@@ -9,9 +9,9 @@
9
9
  "lib": ["ES2020", "DOM", "DOM.Iterable"]
10
10
  },
11
11
  "imports": {
12
- "@deno/vite-plugin": "npm:@deno/vite-plugin@^1.0.0",
12
+ "@deno/vite-plugin": "npm:@deno/vite-plugin@^1.0.4",
13
13
  "@vitejs/plugin-vue": "npm:@vitejs/plugin-vue@^5.2.1",
14
- "vite": "npm:vite@^6.0.1",
14
+ "vite": "npm:vite@^6.1.1",
15
15
  "vue": "npm:vue@^3.5.13"
16
16
  }
17
17
  }
@@ -1,5 +1,5 @@
1
1
  :root {
2
- font-family: Inter, system-ui, Avenir, Helvetica, Arial, sans-serif;
2
+ font-family: system-ui, Avenir, Helvetica, Arial, sans-serif;
3
3
  line-height: 1.5;
4
4
  font-weight: 400;
5
5
 
@@ -20,6 +20,6 @@
20
20
  "build": "vite build"
21
21
  },
22
22
  "devDependencies": {
23
- "vite": "^6.0.1"
23
+ "vite": "^6.1.1"
24
24
  }
25
25
  }
@@ -1,5 +1,5 @@
1
1
  :root {
2
- font-family: Inter, system-ui, Avenir, Helvetica, Arial, sans-serif;
2
+ font-family: system-ui, Avenir, Helvetica, Arial, sans-serif;
3
3
  line-height: 1.5;
4
4
  font-weight: 400;
5
5
 
@@ -20,7 +20,7 @@
20
20
  "build": "tsc && vite build"
21
21
  },
22
22
  "devDependencies": {
23
- "typescript": "~5.7.2",
24
- "vite": "^6.0.1"
23
+ "typescript": "~5.7.3",
24
+ "vite": "^6.1.1"
25
25
  }
26
26
  }
@@ -1,5 +1,5 @@
1
1
  :root {
2
- font-family: Inter, system-ui, Avenir, Helvetica, Arial, sans-serif;
2
+ font-family: system-ui, Avenir, Helvetica, Arial, sans-serif;
3
3
  line-height: 1.5;
4
4
  font-weight: 400;
5
5
 
@@ -11,15 +11,15 @@
11
11
  "preview": "cross-env NODE_ENV=production node server"
12
12
  },
13
13
  "dependencies": {
14
- "compression": "^1.7.5",
14
+ "compression": "^1.8.0",
15
15
  "express": "^5.0.1",
16
- "preact": "^10.25.0",
17
- "preact-render-to-string": "^6.5.11",
18
- "sirv": "^3.0.0"
16
+ "preact": "^10.26.2",
17
+ "preact-render-to-string": "^6.5.13",
18
+ "sirv": "^3.0.1"
19
19
  },
20
20
  "devDependencies": {
21
- "@preact/preset-vite": "^2.9.1",
21
+ "@preact/preset-vite": "^2.10.1",
22
22
  "cross-env": "^7.0.3",
23
- "vite": "^6.0.1"
23
+ "vite": "^6.1.1"
24
24
  }
25
25
  }
@@ -1,5 +1,5 @@
1
1
  :root {
2
- font-family: Inter, system-ui, Avenir, Helvetica, Arial, sans-serif;
2
+ font-family: system-ui, Avenir, Helvetica, Arial, sans-serif;
3
3
  line-height: 1.5;
4
4
  font-weight: 400;
5
5
 
@@ -11,18 +11,18 @@
11
11
  "preview": "cross-env NODE_ENV=production node server"
12
12
  },
13
13
  "dependencies": {
14
- "compression": "^1.7.5",
14
+ "compression": "^1.8.0",
15
15
  "express": "^5.0.1",
16
- "preact": "^10.25.0",
17
- "preact-render-to-string": "^6.5.11",
18
- "sirv": "^3.0.0"
16
+ "preact": "^10.26.2",
17
+ "preact-render-to-string": "^6.5.13",
18
+ "sirv": "^3.0.1"
19
19
  },
20
20
  "devDependencies": {
21
- "@preact/preset-vite": "^2.9.1",
21
+ "@preact/preset-vite": "^2.10.1",
22
22
  "@types/express": "^5.0.0",
23
- "@types/node": "^22.10.0",
23
+ "@types/node": "^22.13.4",
24
24
  "cross-env": "^7.0.3",
25
- "typescript": "~5.7.2",
26
- "vite": "^6.0.1"
25
+ "typescript": "~5.7.3",
26
+ "vite": "^6.1.1"
27
27
  }
28
28
  }
@@ -1,5 +1,5 @@
1
1
  :root {
2
- font-family: Inter, system-ui, Avenir, Helvetica, Arial, sans-serif;
2
+ font-family: system-ui, Avenir, Helvetica, Arial, sans-serif;
3
3
  line-height: 1.5;
4
4
  font-weight: 400;
5
5
 
@@ -11,17 +11,17 @@
11
11
  "preview": "cross-env NODE_ENV=production node server"
12
12
  },
13
13
  "dependencies": {
14
- "compression": "^1.7.5",
14
+ "compression": "^1.8.0",
15
15
  "express": "^5.0.1",
16
- "react": "^18.3.1",
17
- "react-dom": "^18.3.1",
18
- "sirv": "^3.0.0"
16
+ "react": "^19.0.0",
17
+ "react-dom": "^19.0.0",
18
+ "sirv": "^3.0.1"
19
19
  },
20
20
  "devDependencies": {
21
- "@types/react": "^18.3.12",
22
- "@types/react-dom": "^18.3.1",
21
+ "@types/react": "^19.0.10",
22
+ "@types/react-dom": "^19.0.4",
23
23
  "@vitejs/plugin-react": "^4.3.4",
24
24
  "cross-env": "^7.0.3",
25
- "vite": "^6.0.1"
25
+ "vite": "^6.1.1"
26
26
  }
27
27
  }
@@ -1,5 +1,5 @@
1
1
  :root {
2
- font-family: Inter, system-ui, Avenir, Helvetica, Arial, sans-serif;
2
+ font-family: system-ui, Avenir, Helvetica, Arial, sans-serif;
3
3
  line-height: 1.5;
4
4
  font-weight: 400;
5
5
 
@@ -11,15 +11,15 @@
11
11
  "preview": "cross-env NODE_ENV=production node server"
12
12
  },
13
13
  "dependencies": {
14
- "compression": "^1.7.5",
14
+ "compression": "^1.8.0",
15
15
  "express": "^5.0.1",
16
- "react": "^18.3.1",
17
- "react-dom": "^18.3.1",
18
- "sirv": "^3.0.0"
16
+ "react": "^19.0.0",
17
+ "react-dom": "^19.0.0",
18
+ "sirv": "^3.0.1"
19
19
  },
20
20
  "devDependencies": {
21
21
  "@vitejs/plugin-react": "^4.3.4",
22
22
  "cross-env": "^7.0.3",
23
- "vite": "^6.0.1"
23
+ "vite": "^6.1.1"
24
24
  }
25
25
  }
@@ -1,5 +1,5 @@
1
1
  :root {
2
- font-family: Inter, system-ui, Avenir, Helvetica, Arial, sans-serif;
2
+ font-family: system-ui, Avenir, Helvetica, Arial, sans-serif;
3
3
  line-height: 1.5;
4
4
  font-weight: 400;
5
5
 
@@ -11,20 +11,20 @@
11
11
  "preview": "cross-env NODE_ENV=production node server"
12
12
  },
13
13
  "dependencies": {
14
- "compression": "^1.7.5",
14
+ "compression": "^1.8.0",
15
15
  "express": "^5.0.1",
16
- "react": "^18.3.1",
17
- "react-dom": "^18.3.1",
18
- "sirv": "^3.0.0"
16
+ "react": "^19.0.0",
17
+ "react-dom": "^19.0.0",
18
+ "sirv": "^3.0.1"
19
19
  },
20
20
  "devDependencies": {
21
21
  "@types/express": "^5.0.0",
22
- "@types/node": "^22.10.0",
23
- "@types/react": "^18.3.12",
24
- "@types/react-dom": "^18.3.1",
22
+ "@types/node": "^22.13.4",
23
+ "@types/react": "^19.0.10",
24
+ "@types/react-dom": "^19.0.4",
25
25
  "@vitejs/plugin-react": "^4.3.4",
26
26
  "cross-env": "^7.0.3",
27
- "typescript": "~5.7.2",
28
- "vite": "^6.0.1"
27
+ "typescript": "~5.7.3",
28
+ "vite": "^6.1.1"
29
29
  }
30
30
  }
@@ -1,5 +1,5 @@
1
1
  :root {
2
- font-family: Inter, system-ui, Avenir, Helvetica, Arial, sans-serif;
2
+ font-family: system-ui, Avenir, Helvetica, Arial, sans-serif;
3
3
  line-height: 1.5;
4
4
  font-weight: 400;
5
5
 
@@ -11,20 +11,20 @@
11
11
  "preview": "cross-env NODE_ENV=production node server"
12
12
  },
13
13
  "dependencies": {
14
- "compression": "^1.7.5",
14
+ "compression": "^1.8.0",
15
15
  "express": "^5.0.1",
16
- "react": "^18.3.1",
17
- "react-dom": "^18.3.1",
18
- "sirv": "^3.0.0"
16
+ "react": "^19.0.0",
17
+ "react-dom": "^19.0.0",
18
+ "sirv": "^3.0.1"
19
19
  },
20
20
  "devDependencies": {
21
21
  "@types/express": "^5.0.0",
22
- "@types/node": "^22.10.0",
23
- "@types/react": "^18.3.12",
24
- "@types/react-dom": "^18.3.1",
22
+ "@types/node": "^22.13.4",
23
+ "@types/react": "^19.0.10",
24
+ "@types/react-dom": "^19.0.4",
25
25
  "@vitejs/plugin-react": "^4.3.4",
26
26
  "cross-env": "^7.0.3",
27
- "typescript": "~5.7.2",
28
- "vite": "^6.0.1"
27
+ "typescript": "~5.7.3",
28
+ "vite": "^6.1.1"
29
29
  }
30
30
  }
@@ -1,5 +1,5 @@
1
1
  :root {
2
- font-family: Inter, system-ui, Avenir, Helvetica, Arial, sans-serif;
2
+ font-family: system-ui, Avenir, Helvetica, Arial, sans-serif;
3
3
  line-height: 1.5;
4
4
  font-weight: 400;
5
5
 
@@ -11,14 +11,14 @@
11
11
  "preview": "cross-env NODE_ENV=production node server"
12
12
  },
13
13
  "dependencies": {
14
- "compression": "^1.7.5",
14
+ "compression": "^1.8.0",
15
15
  "express": "^5.0.1",
16
- "sirv": "^3.0.0",
17
- "solid-js": "^1.9.3"
16
+ "sirv": "^3.0.1",
17
+ "solid-js": "^1.9.4"
18
18
  },
19
19
  "devDependencies": {
20
20
  "cross-env": "^7.0.3",
21
- "vite": "^6.0.1",
22
- "vite-plugin-solid": "^2.11.0"
21
+ "vite": "^6.1.1",
22
+ "vite-plugin-solid": "^2.11.2"
23
23
  }
24
24
  }
@@ -1,5 +1,5 @@
1
1
  :root {
2
- font-family: Inter, system-ui, Avenir, Helvetica, Arial, sans-serif;
2
+ font-family: system-ui, Avenir, Helvetica, Arial, sans-serif;
3
3
  line-height: 1.5;
4
4
  font-weight: 400;
5
5
 
@@ -11,16 +11,16 @@
11
11
  "preview": "cross-env NODE_ENV=production node server"
12
12
  },
13
13
  "dependencies": {
14
- "compression": "^1.7.5",
14
+ "compression": "^1.8.0",
15
15
  "express": "^5.0.1",
16
- "sirv": "^3.0.0",
17
- "solid-js": "^1.9.3"
16
+ "sirv": "^3.0.1",
17
+ "solid-js": "^1.9.4"
18
18
  },
19
19
  "devDependencies": {
20
20
  "@types/express": "^5.0.0",
21
- "@types/node": "^22.10.0",
21
+ "@types/node": "^22.13.4",
22
22
  "cross-env": "^7.0.3",
23
- "vite": "^6.0.1",
24
- "vite-plugin-solid": "^2.11.0"
23
+ "vite": "^6.1.1",
24
+ "vite-plugin-solid": "^2.11.2"
25
25
  }
26
26
  }
@@ -1,5 +1,5 @@
1
1
  :root {
2
- font-family: Inter, system-ui, Avenir, Helvetica, Arial, sans-serif;
2
+ font-family: system-ui, Avenir, Helvetica, Arial, sans-serif;
3
3
  line-height: 1.5;
4
4
  font-weight: 400;
5
5
 
@@ -11,14 +11,14 @@
11
11
  "preview": "cross-env NODE_ENV=production node server"
12
12
  },
13
13
  "dependencies": {
14
- "compression": "^1.7.5",
14
+ "compression": "^1.8.0",
15
15
  "express": "^5.0.1",
16
- "sirv": "^3.0.0"
16
+ "sirv": "^3.0.1"
17
17
  },
18
18
  "devDependencies": {
19
- "@sveltejs/vite-plugin-svelte": "^5.0.1",
19
+ "@sveltejs/vite-plugin-svelte": "^5.0.3",
20
20
  "cross-env": "^7.0.3",
21
- "svelte": "^5.2.9",
22
- "vite": "^6.0.1"
21
+ "svelte": "^5.20.2",
22
+ "vite": "^6.1.1"
23
23
  }
24
24
  }
@@ -1,5 +1,5 @@
1
1
  :root {
2
- font-family: Inter, system-ui, Avenir, Helvetica, Arial, sans-serif;
2
+ font-family: system-ui, Avenir, Helvetica, Arial, sans-serif;
3
3
  line-height: 1.5;
4
4
  font-weight: 400;
5
5
 
@@ -12,20 +12,20 @@
12
12
  "check": "svelte-check"
13
13
  },
14
14
  "dependencies": {
15
- "compression": "^1.7.5",
15
+ "compression": "^1.8.0",
16
16
  "express": "^5.0.1",
17
- "sirv": "^3.0.0"
17
+ "sirv": "^3.0.1"
18
18
  },
19
19
  "devDependencies": {
20
- "@sveltejs/vite-plugin-svelte": "^5.0.1",
20
+ "@sveltejs/vite-plugin-svelte": "^5.0.3",
21
21
  "@tsconfig/svelte": "^5.0.4",
22
22
  "@types/express": "^5.0.0",
23
- "@types/node": "^22.10.0",
23
+ "@types/node": "^22.13.4",
24
24
  "cross-env": "^7.0.3",
25
- "svelte": "^5.2.9",
26
- "svelte-check": "^4.1.0",
25
+ "svelte": "^5.20.2",
26
+ "svelte-check": "^4.1.4",
27
27
  "tslib": "^2.8.1",
28
- "typescript": "~5.7.2",
29
- "vite": "^6.0.1"
28
+ "typescript": "~5.7.3",
29
+ "vite": "^6.1.1"
30
30
  }
31
31
  }
@@ -1,5 +1,5 @@
1
1
  :root {
2
- font-family: Inter, system-ui, Avenir, Helvetica, Arial, sans-serif;
2
+ font-family: system-ui, Avenir, Helvetica, Arial, sans-serif;
3
3
  line-height: 1.5;
4
4
  font-weight: 400;
5
5
 
@@ -7,6 +7,6 @@
7
7
  "test": "node test"
8
8
  },
9
9
  "devDependencies": {
10
- "vite": "^6.0.1"
10
+ "vite": "^6.1.1"
11
11
  }
12
12
  }
@@ -11,12 +11,12 @@
11
11
  "preview": "cross-env NODE_ENV=production node server"
12
12
  },
13
13
  "dependencies": {
14
- "compression": "^1.7.5",
14
+ "compression": "^1.8.0",
15
15
  "express": "^5.0.1",
16
- "sirv": "^3.0.0"
16
+ "sirv": "^3.0.1"
17
17
  },
18
18
  "devDependencies": {
19
19
  "cross-env": "^7.0.3",
20
- "vite": "^6.0.1"
20
+ "vite": "^6.1.1"
21
21
  }
22
22
  }
@@ -1,5 +1,5 @@
1
1
  :root {
2
- font-family: Inter, system-ui, Avenir, Helvetica, Arial, sans-serif;
2
+ font-family: system-ui, Avenir, Helvetica, Arial, sans-serif;
3
3
  line-height: 1.5;
4
4
  font-weight: 400;
5
5
 
@@ -11,15 +11,15 @@
11
11
  "preview": "cross-env NODE_ENV=production node server"
12
12
  },
13
13
  "dependencies": {
14
- "compression": "^1.7.5",
14
+ "compression": "^1.8.0",
15
15
  "express": "^5.0.1",
16
- "sirv": "^3.0.0"
16
+ "sirv": "^3.0.1"
17
17
  },
18
18
  "devDependencies": {
19
19
  "@types/express": "^5.0.0",
20
- "@types/node": "^22.10.0",
20
+ "@types/node": "^22.13.4",
21
21
  "cross-env": "^7.0.3",
22
- "typescript": "~5.7.2",
23
- "vite": "^6.0.1"
22
+ "typescript": "~5.7.3",
23
+ "vite": "^6.1.1"
24
24
  }
25
25
  }
@@ -1,5 +1,5 @@
1
1
  :root {
2
- font-family: Inter, system-ui, Avenir, Helvetica, Arial, sans-serif;
2
+ font-family: system-ui, Avenir, Helvetica, Arial, sans-serif;
3
3
  line-height: 1.5;
4
4
  font-weight: 400;
5
5
 
@@ -11,14 +11,14 @@
11
11
  "preview": "cross-env NODE_ENV=production node server"
12
12
  },
13
13
  "dependencies": {
14
- "compression": "^1.7.5",
14
+ "compression": "^1.8.0",
15
15
  "express": "^5.0.1",
16
- "sirv": "^3.0.0",
16
+ "sirv": "^3.0.1",
17
17
  "vue": "^3.5.13"
18
18
  },
19
19
  "devDependencies": {
20
20
  "@vitejs/plugin-vue": "^5.2.1",
21
21
  "cross-env": "^7.0.3",
22
- "vite": "^6.0.1"
22
+ "vite": "^6.1.1"
23
23
  }
24
24
  }
@@ -1,5 +1,5 @@
1
1
  :root {
2
- font-family: Inter, system-ui, Avenir, Helvetica, Arial, sans-serif;
2
+ font-family: system-ui, Avenir, Helvetica, Arial, sans-serif;
3
3
  line-height: 1.5;
4
4
  font-weight: 400;
5
5
 
@@ -11,14 +11,14 @@
11
11
  "preview": "cross-env NODE_ENV=production node server"
12
12
  },
13
13
  "dependencies": {
14
- "compression": "^1.7.5",
14
+ "compression": "^1.8.0",
15
15
  "express": "^5.0.1",
16
- "sirv": "^3.0.0",
16
+ "sirv": "^3.0.1",
17
17
  "vue": "^3.5.13"
18
18
  },
19
19
  "devDependencies": {
20
20
  "@vitejs/plugin-vue": "^5.2.1",
21
21
  "cross-env": "^7.0.3",
22
- "vite": "^6.0.1"
22
+ "vite": "^6.1.1"
23
23
  }
24
24
  }
@@ -1,5 +1,5 @@
1
1
  :root {
2
- font-family: Inter, system-ui, Avenir, Helvetica, Arial, sans-serif;
2
+ font-family: system-ui, Avenir, Helvetica, Arial, sans-serif;
3
3
  line-height: 1.5;
4
4
  font-weight: 400;
5
5
 
@@ -11,18 +11,18 @@
11
11
  "preview": "cross-env NODE_ENV=production node server"
12
12
  },
13
13
  "dependencies": {
14
- "compression": "^1.7.5",
14
+ "compression": "^1.8.0",
15
15
  "express": "^5.0.1",
16
- "sirv": "^3.0.0",
16
+ "sirv": "^3.0.1",
17
17
  "vue": "^3.5.13"
18
18
  },
19
19
  "devDependencies": {
20
20
  "@types/express": "^5.0.0",
21
- "@types/node": "^22.10.0",
21
+ "@types/node": "^22.13.4",
22
22
  "@vitejs/plugin-vue": "^5.2.1",
23
23
  "cross-env": "^7.0.3",
24
- "typescript": "~5.7.2",
25
- "vite": "^6.0.1",
26
- "vue-tsc": "^2.1.10"
24
+ "typescript": "~5.7.3",
25
+ "vite": "^6.1.1",
26
+ "vue-tsc": "^2.2.2"
27
27
  }
28
28
  }
@@ -1,5 +1,5 @@
1
1
  :root {
2
- font-family: Inter, system-ui, Avenir, Helvetica, Arial, sans-serif;
2
+ font-family: system-ui, Avenir, Helvetica, Arial, sans-serif;
3
3
  line-height: 1.5;
4
4
  font-weight: 400;
5
5
 
@@ -12,18 +12,18 @@
12
12
  "check": "vue-tsc"
13
13
  },
14
14
  "dependencies": {
15
- "compression": "^1.7.5",
15
+ "compression": "^1.8.0",
16
16
  "express": "^5.0.1",
17
- "sirv": "^3.0.0",
17
+ "sirv": "^3.0.1",
18
18
  "vue": "^3.5.13"
19
19
  },
20
20
  "devDependencies": {
21
21
  "@types/express": "^5.0.0",
22
- "@types/node": "^22.10.0",
22
+ "@types/node": "^22.13.4",
23
23
  "@vitejs/plugin-vue": "^5.2.1",
24
24
  "cross-env": "^7.0.3",
25
- "typescript": "~5.7.2",
26
- "vite": "^6.0.1",
27
- "vue-tsc": "^2.1.10"
25
+ "typescript": "~5.7.3",
26
+ "vite": "^6.1.1",
27
+ "vue-tsc": "^2.2.2"
28
28
  }
29
29
  }
@@ -1,5 +1,5 @@
1
1
  :root {
2
- font-family: Inter, system-ui, Avenir, Helvetica, Arial, sans-serif;
2
+ font-family: system-ui, Avenir, Helvetica, Arial, sans-serif;
3
3
  line-height: 1.5;
4
4
  font-weight: 400;
5
5