-
-
Notifications
You must be signed in to change notification settings - Fork 29
Expand file tree
/
Copy pathpackage.json
More file actions
108 lines (108 loc) · 3.13 KB
/
Copy pathpackage.json
File metadata and controls
108 lines (108 loc) · 3.13 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
{
"name": "appium-mac2-driver",
"version": "4.3.1",
"description": "XCTest-based Appium driver for macOS apps automation",
"keywords": [
"XCTest",
"appium",
"mac"
],
"bugs": {
"url": "https://github.com/appium/appium-mac2-driver/issues"
},
"license": "Apache-2.0",
"author": "Appium Contributors",
"repository": {
"type": "git",
"url": "https://github.com/appium/appium-mac2-driver.git"
},
"bin": {},
"files": [
"lib",
"build/lib",
"scripts",
"!scripts/ci",
"WebDriverAgentMac/Scripts",
"WebDriverAgentMac/Cartfile",
"WebDriverAgentMac/Cartfile.resolved",
"WebDriverAgentMac/WebDriverAgentLib",
"WebDriverAgentMac/WebDriverAgentMac.xcodeproj",
"WebDriverAgentMac/WebDriverAgentRunner",
"WebDriverAgentMac/IntegrationTests",
"WebDriverAgentMac/WebDriverAgent",
"!.DS_Store",
"CHANGELOG.md",
"LICENSE",
"npm-shrinkwrap.json"
],
"type": "module",
"main": "./build/lib/index.js",
"types": "./build/lib/index.d.ts",
"exports": {
".": {
"types": "./build/lib/index.d.ts",
"import": "./build/lib/index.js"
},
"./package.json": "./package.json"
},
"scripts": {
"build": "tsc -b",
"clean": "npm run build -- --clean",
"rebuild": "npm run clean; npm run build",
"dev": "npm run build -- --watch",
"lint": "oxlint -c oxlint.config.mjs .",
"lint:fix": "oxlint -c oxlint.config.mjs --fix .",
"format": "oxfmt -c oxfmt.config.mjs .",
"format:check": "oxfmt -c oxfmt.config.mjs --check .",
"build:docs": "appium-docs build",
"dev:docs": "appium-docs build --serve",
"publish:docs": "appium-docs build --deploy --push -b docs-site -m 'docs: build docs for appium-mac2-driver@%s' --alias latest --use-prefixed-major-deploy-version",
"install-docs-deps": "appium-docs init --no-mkdocs",
"prepare": "npm run build",
"test": "node --enable-source-maps --test --test-timeout=60000 \"build/test/unit/**/*.test.js\"",
"e2e-test": "npm run build && node --enable-source-maps --test --test-concurrency=1 --test-timeout=600000 \"build/test/functional/**/*.test.js\""
},
"dependencies": {
"@appium/strongbox": "^1.0.0-rc.1",
"@colors/colors": "^1.6.0",
"appium-xcode": "^7.1.0",
"asyncbox": "^6.3.0",
"axios": "^1.16.0",
"portscanner": "^2.2.0",
"teen_process": "^4.0.4"
},
"devDependencies": {
"@appium/docutils": "^3.0.0",
"@appium/oxc-config": "^1.1.0",
"@appium/semantic-release-config": "^1.1.0",
"@appium/tsconfig": "^1.2.0",
"@appium/types": "^1.0.0-rc.1",
"@types/node": "^26.0.0",
"@types/portscanner": "^2.1.1",
"webdriverio": "^9.0.0"
},
"peerDependencies": {
"appium": "^3.0.0-rc.2"
},
"engines": {
"node": "^20.19.0 || ^22.12.0 || >=24.0.0",
"npm": ">=10"
},
"appium": {
"driverName": "mac2",
"automationName": "Mac2",
"platformNames": [
"Mac"
],
"mainClass": "Mac2Driver",
"scripts": {
"open-wda": "./scripts/open-wda.mjs"
},
"doctor": {
"checks": [
"./build/lib/doctor/required-checks.js",
"./build/lib/doctor/optional-checks.js"
]
}
}
}