create-strayl-app 1.0.1 → 1.0.2

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": "create-strayl-app",
3
- "version": "1.0.1",
3
+ "version": "1.0.2",
4
4
  "description": "Scaffold a new Strayl web application",
5
5
  "type": "module",
6
6
  "bin": {
@@ -8,30 +8,30 @@
8
8
  "start": "node .output/server/index.mjs"
9
9
  },
10
10
  "dependencies": {
11
- "@base-ui/react": "^1.5.0",
12
- "@fontsource-variable/geist": "^5.1.1",
13
- "@radix-ui/react-slot": "^1.2.0",
14
- "@tailwindcss/vite": "^4.1.4",
15
- "@tanstack/react-router": "^1.159.5",
16
- "@tanstack/react-start": "^1.159.5",
17
- "@tanstack/router-plugin": "^1.159.5",
11
+ "@base-ui/react": "^1.1.0",
12
+ "@fontsource-variable/geist": "^5.2.8",
13
+ "@radix-ui/react-slot": "^1.1.1",
14
+ "@tailwindcss/vite": "^4.0.6",
15
+ "@tanstack/react-router": "^1.132.0",
16
+ "@tanstack/react-start": "^1.132.0",
17
+ "@tanstack/router-plugin": "^1.132.0",
18
18
  "class-variance-authority": "^0.7.1",
19
19
  "clsx": "^2.1.1",
20
- "lucide-react": "^0.475.0",
20
+ "lucide-react": "^0.561.0",
21
21
  "next-themes": "^0.4.6",
22
- "react": "^19.1.0",
23
- "react-dom": "^19.1.0",
24
- "tailwind-merge": "^3.0.2",
25
- "tailwindcss": "^4.1.4",
26
- "tw-animate-css": "^1.2.9",
27
- "vite-tsconfig-paths": "^4.3.2"
22
+ "nitro": "npm:nitro-nightly@latest",
23
+ "react": "^19.2.0",
24
+ "react-dom": "^19.2.0",
25
+ "tailwind-merge": "^2.6.0",
26
+ "tailwindcss": "^4.0.6",
27
+ "tw-animate-css": "^1.4.0",
28
+ "vite-tsconfig-paths": "^6.0.2"
28
29
  },
29
30
  "devDependencies": {
30
- "@types/react": "^19.1.2",
31
- "@types/react-dom": "^19.1.2",
32
- "@vitejs/plugin-react": "^4.4.1",
33
- "typescript": "^5.7.3",
34
- "vite": "^7.0.0",
35
- "vite-plugin-nitro": "^0.0.0-nightly-20250327-0404e32"
31
+ "@types/react": "^19.2.0",
32
+ "@types/react-dom": "^19.2.0",
33
+ "@vitejs/plugin-react": "^5.0.4",
34
+ "typescript": "^5.7.2",
35
+ "vite": "^7.1.7"
36
36
  }
37
37
  }
@@ -1,14 +1,16 @@
1
1
  import { tanstackStart } from "@tanstack/react-start/plugin/vite";
2
2
  import tailwindcss from "@tailwindcss/vite";
3
3
  import { defineConfig } from "vite";
4
- import nitro from "vite-plugin-nitro";
4
+ import { nitro } from "nitro/vite";
5
5
  import viteReact from "@vitejs/plugin-react";
6
6
  import viteTsConfigPaths from "vite-tsconfig-paths";
7
7
 
8
8
  export default defineConfig({
9
9
  plugins: [
10
10
  nitro(),
11
- viteTsConfigPaths(),
11
+ viteTsConfigPaths({
12
+ projects: ["./tsconfig.json"],
13
+ }),
12
14
  tailwindcss(),
13
15
  tanstackStart(),
14
16
  viteReact(),