@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.
- package/README.md +116 -0
- package/dist/asc-reviews-OPKN34SB.js +2 -0
- package/dist/chunk-5JSZTHAP.js +68 -0
- package/dist/chunk-A43VGOE3.js +61 -0
- package/dist/chunk-PYXH4J77.js +68 -0
- package/dist/chunk-QFP5R25M.js +70 -0
- package/dist/cli.js +6017 -0
- package/dist/eas-integrations-TIYBWWKC.js +4 -0
- package/dist/index.js +7 -0
- package/dist/pkg-manager-PU7UPAID.js +2 -0
- package/dist/proc-TEOPRZZ2.js +2 -0
- package/package.json +69 -0
package/dist/index.js
ADDED
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
|
+
}
|