@ramonclaudio/vexpo 0.1.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.
@@ -0,0 +1,4 @@
1
+ #!/usr/bin/env node
2
+ export { ascConnect, ascStatus } from './chunk-A43VGOE3.js';
3
+ import './chunk-PYXH4J77.js';
4
+ import './chunk-QFP5R25M.js';
package/dist/index.js ADDED
@@ -0,0 +1,7 @@
1
+ #!/usr/bin/env node
2
+ // src/index.ts
3
+ var REPO_URL = "https://github.com/ramonclaudio/vexpo";
4
+ var CREATE_COMMAND = "bunx create-vexpo@latest";
5
+ var NPM_CREATE_COMMAND = "npm create vexpo@latest";
6
+
7
+ export { CREATE_COMMAND, NPM_CREATE_COMMAND, REPO_URL };
@@ -0,0 +1,2 @@
1
+ #!/usr/bin/env node
2
+ export { currentRuntime, currentRuntimeVersion, detectPackageManager, dlx, dlxFor, installCmdFor, runCmdFor } from './chunk-PYXH4J77.js';
@@ -0,0 +1,2 @@
1
+ #!/usr/bin/env node
2
+ export { run, spawn, spawnSync, streamText } from './chunk-QFP5R25M.js';
package/package.json ADDED
@@ -0,0 +1,69 @@
1
+ {
2
+ "name": "@ramonclaudio/vexpo",
3
+ "version": "0.1.0",
4
+ "description": "Operational CLI for vexpo projects: setup orchestration, drift detection, env sync, Apple JWT signing, ASC API integration.",
5
+ "keywords": [
6
+ "apple-sign-in",
7
+ "better-auth",
8
+ "cli",
9
+ "convex",
10
+ "eas",
11
+ "expo",
12
+ "resend",
13
+ "setup",
14
+ "vexpo"
15
+ ],
16
+ "homepage": "https://github.com/ramonclaudio/vexpo/tree/main/packages/vexpo#readme",
17
+ "bugs": {
18
+ "url": "https://github.com/ramonclaudio/vexpo/issues"
19
+ },
20
+ "license": "MIT",
21
+ "author": "Ramon Claudio <hello@ramonclaudio.com> (https://github.com/ramonclaudio)",
22
+ "repository": {
23
+ "type": "git",
24
+ "url": "git+https://github.com/ramonclaudio/vexpo.git",
25
+ "directory": "packages/vexpo"
26
+ },
27
+ "bin": {
28
+ "vexpo": "./dist/cli.js"
29
+ },
30
+ "files": [
31
+ "dist"
32
+ ],
33
+ "type": "module",
34
+ "exports": {
35
+ ".": "./dist/index.js",
36
+ "./package.json": "./package.json"
37
+ },
38
+ "publishConfig": {
39
+ "access": "public",
40
+ "provenance": true,
41
+ "registry": "https://registry.npmjs.org/"
42
+ },
43
+ "scripts": {
44
+ "build": "tsup",
45
+ "dev": "tsup --watch",
46
+ "typecheck": "tsc --noEmit",
47
+ "test": "vitest run",
48
+ "test:watch": "vitest",
49
+ "test:e2e": "bun run build && __tests__/e2e/run.sh",
50
+ "test:all": "bun run test && bun run test:e2e"
51
+ },
52
+ "dependencies": {
53
+ "commander": "^14.0.3",
54
+ "execa": "^9.6.1",
55
+ "kleur": "^4.1.5",
56
+ "ora": "^9.4.0",
57
+ "prompts": "^2.4.2"
58
+ },
59
+ "devDependencies": {
60
+ "@types/node": "^25.6.0",
61
+ "@types/prompts": "^2.4.9",
62
+ "tsup": "^8.5.1",
63
+ "typescript": "^6.0.3",
64
+ "vitest": "^4.1.5"
65
+ },
66
+ "engines": {
67
+ "node": ">=20.10"
68
+ }
69
+ }