create-rari-app 0.5.8 → 0.5.9

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": "create-rari-app",
3
3
  "type": "module",
4
- "version": "0.5.8",
4
+ "version": "0.5.9",
5
5
  "description": "Create Runtime Accelerated Rendering Infrastructure (rari) applications with no build configuration",
6
6
  "author": "Ryan Skinner",
7
7
  "license": "MIT",
@@ -43,9 +43,9 @@
43
43
  "@clack/prompts": "^1.4.0"
44
44
  },
45
45
  "devDependencies": {
46
- "@types/node": "^25.8.0",
47
- "@typescript/native-preview": "^7.0.0-dev.20260514.1",
48
- "vite-plus": "^0.1.21"
46
+ "@types/node": "^25.9.1",
47
+ "@typescript/native-preview": "^7.0.0-dev.20260522.1",
48
+ "vite-plus": "^0.1.22"
49
49
  },
50
50
  "scripts": {
51
51
  "build": "pnpm clean && pnpm typecheck && vp pack",
@@ -1,14 +1,13 @@
1
1
  # Dependencies
2
- node_modules/
3
- .pnpm-store/
2
+ node_modules
4
3
 
5
4
  # Production builds
6
- bin/
7
- dist/
8
- build/
5
+ bin
6
+ dist
7
+ build
9
8
 
10
9
  # Cache
11
- .cache/
10
+ .cache
12
11
 
13
12
  # Environment variables
14
13
  .env
@@ -43,7 +42,7 @@ Thumbs.db
43
42
 
44
43
 
45
44
  # Railway
46
- .railway/
45
+ .railway
47
46
 
48
47
  # Render
49
- .render/
48
+ .render
@@ -3,6 +3,7 @@
3
3
  "type": "module",
4
4
  "version": "0.1.0",
5
5
  "private": true,
6
+ "packageManager": "pnpm@11.2.2",
6
7
  "description": "A Runtime Accelerated Rendering Infrastructure (rari) application",
7
8
  "engines": {
8
9
  "node": ">=22.12.0"
@@ -23,11 +24,11 @@
23
24
  },
24
25
  "devDependencies": {
25
26
  "@tailwindcss/vite": "^4.3.0",
26
- "@types/node": "^25.8.0",
27
- "@types/react": "^19.2.14",
27
+ "@types/node": "^25.9.1",
28
+ "@types/react": "^19.2.15",
28
29
  "@types/react-dom": "^19.2.3",
29
- "@typescript/native-preview": "^7.0.0-dev.20260514.1",
30
+ "@typescript/native-preview": "^7.0.0-dev.20260522.1",
30
31
  "tailwindcss": "^4.3.0",
31
- "vite-plus": "^0.1.21"
32
+ "vite-plus": "^0.1.22"
32
33
  }
33
34
  }