@ramonclaudio/create-vexpo 0.1.2 → 0.1.3

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/dist/index.js CHANGED
@@ -11,7 +11,7 @@ import prompts from 'prompts';
11
11
 
12
12
  // package.json
13
13
  var package_default = {
14
- version: "0.1.2"};
14
+ version: "0.1.3"};
15
15
 
16
16
  // src/index.ts
17
17
  var here = dirname(fileURLToPath(import.meta.url));
@@ -71,6 +71,9 @@ Target ${target} already exists. Pick a different name.`));
71
71
  var NAME_RE = /^[a-z0-9][a-z0-9-]*$/;
72
72
  var NAME_HINT = "lowercase letters, numbers, dashes; must start alphanumeric";
73
73
  function validateNameSegment(target) {
74
+ if (target.startsWith("@")) {
75
+ return { ok: false, reason: "npm scopes are not directories; use a plain directory name" };
76
+ }
74
77
  const segment = basename(target);
75
78
  if (!NAME_RE.test(segment)) return { ok: false, reason: NAME_HINT };
76
79
  return { ok: true };
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "vexpo",
3
- "version": "0.1.2",
3
+ "version": "0.1.3",
4
4
  "private": true,
5
5
  "main": "expo-router/entry",
6
6
  "scripts": {
@@ -50,41 +50,41 @@
50
50
  "@convex-dev/rate-limiter": "^0.3.2",
51
51
  "@convex-dev/resend": "^0.2.4",
52
52
  "@expo/app-integrity": "~56.0.3",
53
- "@expo/ui": "~56.0.16",
53
+ "@expo/ui": "~56.0.17",
54
54
  "better-auth": "1.6.16",
55
55
  "cbor-x": "^1.6.4",
56
56
  "convex": "~1.40.0",
57
57
  "convex-helpers": "^0.1.118",
58
- "expo": "~56.0.9",
58
+ "expo": "~56.0.11",
59
59
  "expo-apple-authentication": "~56.0.4",
60
60
  "expo-application": "~56.0.3",
61
61
  "expo-asset": "~56.0.10",
62
62
  "expo-blur": "~56.0.3",
63
- "expo-build-properties": "~56.0.17",
63
+ "expo-build-properties": "~56.0.18",
64
64
  "expo-clipboard": "~56.0.4",
65
65
  "expo-constants": "~56.0.11",
66
- "expo-dev-client": "~56.0.19",
66
+ "expo-dev-client": "~56.0.20",
67
67
  "expo-device": "~56.0.4",
68
68
  "expo-font": "~56.0.4",
69
69
  "expo-glass-effect": "~56.0.4",
70
70
  "expo-haptics": "~56.0.3",
71
- "expo-image": "~56.0.10",
72
- "expo-image-picker": "~56.0.16",
73
- "expo-insights": "~56.0.16",
74
- "expo-linking": "~56.0.13",
71
+ "expo-image": "~56.0.11",
72
+ "expo-image-picker": "~56.0.17",
73
+ "expo-insights": "~56.0.17",
74
+ "expo-linking": "~56.0.14",
75
75
  "expo-local-authentication": "~56.0.4",
76
76
  "expo-network": "~56.0.5",
77
- "expo-notifications": "~56.0.16",
78
- "expo-router": "~56.2.9",
77
+ "expo-notifications": "~56.0.17",
78
+ "expo-router": "~56.2.10",
79
79
  "expo-secure-store": "~56.0.4",
80
- "expo-sharing": "~56.0.16",
80
+ "expo-sharing": "~56.0.17",
81
81
  "expo-splash-screen": "~56.0.10",
82
- "expo-sqlite": "~56.0.4",
82
+ "expo-sqlite": "~56.0.5",
83
83
  "expo-status-bar": "~56.0.4",
84
84
  "expo-symbols": "~56.0.6",
85
85
  "expo-system-ui": "~56.0.5",
86
- "expo-task-manager": "~56.0.17",
87
- "expo-updates": "~56.0.18",
86
+ "expo-task-manager": "~56.0.18",
87
+ "expo-updates": "~56.0.19",
88
88
  "expo-web-browser": "~56.0.5",
89
89
  "react": "19.2.3",
90
90
  "react-dom": "19.2.3",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ramonclaudio/create-vexpo",
3
- "version": "0.1.2",
3
+ "version": "0.1.3",
4
4
  "description": "Scaffold a new vexpo project. Expo SDK 56 + Convex + Better Auth + Resend, wired for iOS, real auth, real push, real OTA, real App Store submission.",
5
5
  "keywords": [
6
6
  "better-auth",