-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
68 lines (68 loc) · 1.82 KB
/
Copy pathpackage.json
File metadata and controls
68 lines (68 loc) · 1.82 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
{
"name": "node-devicectl",
"version": "2.1.0",
"description": "Node.js wrapper around Apple's devicectl tool",
"keywords": [
"apple",
"device",
"devicectl",
"ios",
"xcode"
],
"bugs": {
"url": "https://github.com/appium/node-devicectl/issues"
},
"license": "Apache-2.0",
"author": "Appium Contributors",
"repository": {
"type": "git",
"url": "https://github.com/appium/node-devicectl.git"
},
"bin": {},
"directories": {
"lib": "./lib"
},
"files": [
"lib",
"build/lib",
"CHANGELOG.md"
],
"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 .",
"prepare": "npm run build",
"test": "node --enable-source-maps --test --test-timeout=60000 \"./build/test/unit/**/*.spec.js\"",
"e2e-test": "node --enable-source-maps --test --test-force-exit --test-concurrency=1 --test-timeout=300000 \"./build/test/e2e/**/*.spec.js\""
},
"dependencies": {
"@appium/logger": "^2.0.0-rc.1",
"teen_process": "^4.1.0"
},
"devDependencies": {
"@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.1.0"
},
"engines": {
"node": "^20.19.0 || ^22.12.0 || >=24.0.0",
"npm": ">=10"
}
}