@tai2/aco 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 +203 -0
- package/dist/cli.js +6022 -0
- package/dist/cli.js.map +1 -0
- package/package.json +84 -0
package/package.json
ADDED
|
@@ -0,0 +1,84 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@tai2/aco",
|
|
3
|
+
"version": "0.1.0",
|
|
4
|
+
"description": "Appium Command-line Operator — drive an Appium session from the shell, one command at a time.",
|
|
5
|
+
"type": "module",
|
|
6
|
+
"license": "MIT",
|
|
7
|
+
"author": "tai2",
|
|
8
|
+
"homepage": "https://github.com/tai2/aco#readme",
|
|
9
|
+
"repository": {
|
|
10
|
+
"type": "git",
|
|
11
|
+
"url": "git+https://github.com/tai2/aco.git"
|
|
12
|
+
},
|
|
13
|
+
"bugs": {
|
|
14
|
+
"url": "https://github.com/tai2/aco/issues"
|
|
15
|
+
},
|
|
16
|
+
"keywords": [
|
|
17
|
+
"appium",
|
|
18
|
+
"cli",
|
|
19
|
+
"mobile",
|
|
20
|
+
"ios",
|
|
21
|
+
"android",
|
|
22
|
+
"webdriver",
|
|
23
|
+
"automation",
|
|
24
|
+
"e2e"
|
|
25
|
+
],
|
|
26
|
+
"bin": {
|
|
27
|
+
"aco": "./dist/cli.js"
|
|
28
|
+
},
|
|
29
|
+
"files": [
|
|
30
|
+
"dist"
|
|
31
|
+
],
|
|
32
|
+
"engines": {
|
|
33
|
+
"node": ">=20"
|
|
34
|
+
},
|
|
35
|
+
"publishConfig": {
|
|
36
|
+
"access": "public"
|
|
37
|
+
},
|
|
38
|
+
"dependencies": {
|
|
39
|
+
"@appium/logger": "^2.0.8",
|
|
40
|
+
"@commander-js/extra-typings": "^12.0.0",
|
|
41
|
+
"@xmldom/xmldom": "^0.9.10",
|
|
42
|
+
"appium-adb": "^15.0.0",
|
|
43
|
+
"appium-ios-device": "^3.1.14",
|
|
44
|
+
"commander": "^12.0.0",
|
|
45
|
+
"webdriverio": "^9.27.2",
|
|
46
|
+
"xpath": "^0.0.34"
|
|
47
|
+
},
|
|
48
|
+
"devDependencies": {
|
|
49
|
+
"@biomejs/biome": "^1.9.0",
|
|
50
|
+
"@types/node": "^20.0.0",
|
|
51
|
+
"appium-uiautomator2-driver": "^7.5.2",
|
|
52
|
+
"appium-xcuitest-driver": "^11.9.0",
|
|
53
|
+
"tsup": "^8.0.0",
|
|
54
|
+
"tsx": "^4.0.0",
|
|
55
|
+
"typescript": "^5.4.0",
|
|
56
|
+
"vitest": "^1.0.0"
|
|
57
|
+
},
|
|
58
|
+
"scripts": {
|
|
59
|
+
"dev": "tsx src/cli.ts",
|
|
60
|
+
"dev:watch": "tsx watch src/cli.ts",
|
|
61
|
+
"build": "tsup",
|
|
62
|
+
"typecheck": "tsc --noEmit && tsc -p e2e/tsconfig.json --noEmit",
|
|
63
|
+
"test": "vitest run",
|
|
64
|
+
"test:watch": "vitest",
|
|
65
|
+
"test:e2e": "vitest run --config vitest.e2e.config.ts",
|
|
66
|
+
"e2e:ios": "pnpm run build && ACO_E2E_PLATFORM=ios pnpm run test:e2e",
|
|
67
|
+
"e2e:android": "pnpm run build && ACO_E2E_PLATFORM=android pnpm run test:e2e",
|
|
68
|
+
"format": "biome format --write .",
|
|
69
|
+
"format:check": "biome format .",
|
|
70
|
+
"lint": "biome lint .",
|
|
71
|
+
"lint:fix": "biome lint --write .",
|
|
72
|
+
"check": "biome check .",
|
|
73
|
+
"verify": "pnpm run check && pnpm run typecheck && pnpm run test && pnpm run build",
|
|
74
|
+
"aut:install": "pnpm --dir aut install",
|
|
75
|
+
"aut:prebuild": "pnpm --dir aut run prebuild",
|
|
76
|
+
"aut:start": "pnpm --dir aut run start",
|
|
77
|
+
"aut:build:ios": "pnpm --dir aut run build:ios",
|
|
78
|
+
"aut:build:android": "pnpm --dir aut run build:android",
|
|
79
|
+
"gen:extensions": "node --import tsx/esm scripts/generate-extensions.ts",
|
|
80
|
+
"release:patch": "npm version patch -m \"Release %s\" && git push --follow-tags",
|
|
81
|
+
"release:minor": "npm version minor -m \"Release %s\" && git push --follow-tags",
|
|
82
|
+
"release:major": "npm version major -m \"Release %s\" && git push --follow-tags"
|
|
83
|
+
}
|
|
84
|
+
}
|