@appspacer/cli 1.0.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/LICENSE +21 -0
- package/README.md +271 -0
- package/dist/__tests__/api.test.d.ts +1 -0
- package/dist/__tests__/api.test.js +142 -0
- package/dist/__tests__/config.test.d.ts +1 -0
- package/dist/__tests__/config.test.js +109 -0
- package/dist/__tests__/hash.test.d.ts +1 -0
- package/dist/__tests__/hash.test.js +47 -0
- package/dist/__tests__/setup-injections.test.d.ts +1 -0
- package/dist/__tests__/setup-injections.test.js +238 -0
- package/dist/__tests__/zip.test.d.ts +1 -0
- package/dist/__tests__/zip.test.js +62 -0
- package/dist/api.d.ts +6 -0
- package/dist/api.js +52 -0
- package/dist/commands/deployments.d.ts +2 -0
- package/dist/commands/deployments.js +39 -0
- package/dist/commands/envsync.d.ts +2 -0
- package/dist/commands/envsync.js +230 -0
- package/dist/commands/login.d.ts +2 -0
- package/dist/commands/login.js +41 -0
- package/dist/commands/release-flutter.d.ts +2 -0
- package/dist/commands/release-flutter.js +176 -0
- package/dist/commands/release-react-native.d.ts +2 -0
- package/dist/commands/release-react-native.js +143 -0
- package/dist/commands/release.d.ts +2 -0
- package/dist/commands/release.js +106 -0
- package/dist/commands/rollback.d.ts +2 -0
- package/dist/commands/rollback.js +43 -0
- package/dist/commands/setup.d.ts +22 -0
- package/dist/commands/setup.js +575 -0
- package/dist/commands/vault.d.ts +2 -0
- package/dist/commands/vault.js +292 -0
- package/dist/commands/whoami.d.ts +2 -0
- package/dist/commands/whoami.js +16 -0
- package/dist/config.d.ts +8 -0
- package/dist/config.js +45 -0
- package/dist/index.d.ts +2 -0
- package/dist/index.js +25 -0
- package/dist/utils/bundle.d.ts +8 -0
- package/dist/utils/bundle.js +59 -0
- package/dist/utils/hash.d.ts +4 -0
- package/dist/utils/hash.js +9 -0
- package/dist/utils/ui.d.ts +19 -0
- package/dist/utils/ui.js +43 -0
- package/dist/utils/validators.d.ts +25 -0
- package/dist/utils/validators.js +65 -0
- package/dist/utils/zip.d.ts +5 -0
- package/dist/utils/zip.js +17 -0
- package/package.json +66 -0
package/package.json
ADDED
|
@@ -0,0 +1,66 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@appspacer/cli",
|
|
3
|
+
"version": "1.0.0",
|
|
4
|
+
"description": "Professional-grade Over-The-Air (OTA) update CLI for React Native. Deploy JavaScript bundles and assets instantly — no app store review required.",
|
|
5
|
+
"type": "module",
|
|
6
|
+
"bin": {
|
|
7
|
+
"appspacer": "./dist/index.js"
|
|
8
|
+
},
|
|
9
|
+
"files": [
|
|
10
|
+
"dist",
|
|
11
|
+
"LICENSE",
|
|
12
|
+
"README.md"
|
|
13
|
+
],
|
|
14
|
+
"scripts": {
|
|
15
|
+
"build": "tsc",
|
|
16
|
+
"dev": "tsx src/index.ts",
|
|
17
|
+
"typecheck": "tsc --noEmit",
|
|
18
|
+
"test": "vitest run",
|
|
19
|
+
"test:watch": "vitest"
|
|
20
|
+
},
|
|
21
|
+
"keywords": [
|
|
22
|
+
"appspacer",
|
|
23
|
+
"codepush",
|
|
24
|
+
"ota",
|
|
25
|
+
"react-native",
|
|
26
|
+
"cli",
|
|
27
|
+
"over-the-air",
|
|
28
|
+
"hot-update",
|
|
29
|
+
"mobile",
|
|
30
|
+
"app-update",
|
|
31
|
+
"bundle-update",
|
|
32
|
+
"javascript-update",
|
|
33
|
+
"expo",
|
|
34
|
+
"react-native-ota",
|
|
35
|
+
"live-update",
|
|
36
|
+
"deploy",
|
|
37
|
+
"push-update",
|
|
38
|
+
"no-app-store",
|
|
39
|
+
"instant-update",
|
|
40
|
+
"ios",
|
|
41
|
+
"android"
|
|
42
|
+
],
|
|
43
|
+
"author": "appspacer",
|
|
44
|
+
"license": "MIT",
|
|
45
|
+
"engines": {
|
|
46
|
+
"node": ">=18"
|
|
47
|
+
},
|
|
48
|
+
"homepage": "https://appspacer.com",
|
|
49
|
+
"dependencies": {
|
|
50
|
+
"@inquirer/prompts": "^8.4.1",
|
|
51
|
+
"archiver": "^7.0.1",
|
|
52
|
+
"chalk": "^5.4.1",
|
|
53
|
+
"commander": "^13.1.0",
|
|
54
|
+
"dotenv": "^17.4.2",
|
|
55
|
+
"ora": "^9.3.0",
|
|
56
|
+
"yaml": "^2.8.3"
|
|
57
|
+
},
|
|
58
|
+
"devDependencies": {
|
|
59
|
+
"@types/archiver": "^7.0.0",
|
|
60
|
+
"@types/cli-progress": "^3.11.6",
|
|
61
|
+
"@types/node": "^25.4.0",
|
|
62
|
+
"tsx": "^4.21.0",
|
|
63
|
+
"typescript": "^5.9.3",
|
|
64
|
+
"vitest": "^2.1.9"
|
|
65
|
+
}
|
|
66
|
+
}
|