@dijji/cli 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/LICENSE +21 -0
- package/README.md +146 -0
- package/dist/dijji.js +25195 -0
- package/package.json +58 -0
package/package.json
ADDED
|
@@ -0,0 +1,58 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@dijji/cli",
|
|
3
|
+
"version": "0.1.0",
|
|
4
|
+
"description": "Runs a Dijji pipeline's mobile (Android/iOS) end-to-end test jobs on a developer machine: takes the job, builds the app with your team's recipe, runs the Maestro flows on an emulator or simulator and reports the evidence back.",
|
|
5
|
+
"license": "MIT",
|
|
6
|
+
"keywords": [
|
|
7
|
+
"dijji",
|
|
8
|
+
"mobile",
|
|
9
|
+
"e2e",
|
|
10
|
+
"maestro",
|
|
11
|
+
"android",
|
|
12
|
+
"ios",
|
|
13
|
+
"cli"
|
|
14
|
+
],
|
|
15
|
+
"homepage": "https://dijji.ai",
|
|
16
|
+
"repository": {
|
|
17
|
+
"type": "git",
|
|
18
|
+
"url": "git+https://github.com/umuplus/dijji-ai.git",
|
|
19
|
+
"directory": "packages/cli"
|
|
20
|
+
},
|
|
21
|
+
"bugs": {
|
|
22
|
+
"url": "https://github.com/umuplus/dijji-ai/issues"
|
|
23
|
+
},
|
|
24
|
+
"publishConfig": {
|
|
25
|
+
"access": "public"
|
|
26
|
+
},
|
|
27
|
+
"type": "module",
|
|
28
|
+
"bin": {
|
|
29
|
+
"dijji": "dist/dijji.js"
|
|
30
|
+
},
|
|
31
|
+
"files": [
|
|
32
|
+
"dist/dijji.js",
|
|
33
|
+
"README.md"
|
|
34
|
+
],
|
|
35
|
+
"engines": {
|
|
36
|
+
"node": ">=24.0.0"
|
|
37
|
+
},
|
|
38
|
+
"devDependencies": {
|
|
39
|
+
"@types/js-yaml": "^4.0.9",
|
|
40
|
+
"@types/node": "^22.10.0",
|
|
41
|
+
"esbuild": "^0.27.4",
|
|
42
|
+
"fast-xml-parser": "^5.2.0",
|
|
43
|
+
"js-yaml": "^4.1.0",
|
|
44
|
+
"jszip": "^3.10.1",
|
|
45
|
+
"typescript": "^5.7.0",
|
|
46
|
+
"vitest": "^3.0.0",
|
|
47
|
+
"zod": "^3.24.0",
|
|
48
|
+
"@dijji/shared": "0.0.0"
|
|
49
|
+
},
|
|
50
|
+
"scripts": {
|
|
51
|
+
"build": "tsc --noEmit && node esbuild.config.mjs",
|
|
52
|
+
"dev": "tsc --noEmit --watch",
|
|
53
|
+
"lint": "eslint src/",
|
|
54
|
+
"typecheck": "tsc --noEmit",
|
|
55
|
+
"test": "vitest run",
|
|
56
|
+
"clean": "rm -rf dist .turbo"
|
|
57
|
+
}
|
|
58
|
+
}
|