-
-
Notifications
You must be signed in to change notification settings - Fork 38
Expand file tree
/
Copy pathpackage.json
More file actions
100 lines (100 loc) · 3.07 KB
/
Copy pathpackage.json
File metadata and controls
100 lines (100 loc) · 3.07 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
{
"name": "appium-remote-debugger",
"version": "17.1.0",
"description": "Appium proxy for Remote Debugger protocol",
"keywords": [
"appium"
],
"bugs": {
"url": "https://github.com/appium/appium-remote-debugger/issues"
},
"license": "Apache-2.0",
"author": "Appium Contributors",
"repository": {
"type": "git",
"url": "https://github.com/appium/appium-remote-debugger.git"
},
"bin": {},
"directories": {
"lib": "lib"
},
"files": [
"lib",
"build/lib",
"scripts",
"!scripts/ci/**",
"atoms",
"!atoms/src/**",
"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 tsconfig.atoms-tests.json",
"typecheck:atoms": "tsc -p tsconfig.atoms.json",
"typecheck:fixtures": "tsc -p tsconfig.fixtures.json",
"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 --test --enable-source-maps --test-force-exit --test-timeout=60000 \"./build/test/unit/**/*.spec.js\"",
"e2e-test": "node --test --enable-source-maps --test-force-exit --test-concurrency=1 --test-timeout=3600000 \"./build/test/functional/safari-e2e.spec.js\"",
"e2e-test:atoms": "node --enable-source-maps scripts/ci/run-e2e-atoms.mjs",
"inspect-safari": "node scripts/web_inspector_proxy.mjs",
"get-web-inspector-socket": "node scripts/get-web-inspector-socket.mjs",
"build:atoms": "node scripts/build-atoms.mjs"
},
"dependencies": {
"@appium/base-driver": "^10.0.0-rc.1",
"@appium/support": "^7.2.2",
"appium-ios-device": "^3.0.0",
"async-lock": "^1.4.1",
"asyncbox": "^6.3.0",
"teen_process": "^4.0.4"
},
"devDependencies": {
"@angular/common": "^22.1.1",
"@angular/compiler": "^22.1.1",
"@angular/core": "^22.1.1",
"@angular/platform-browser": "^22.1.1",
"@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/async-lock": "^1.4.2",
"@types/finalhandler": "^1.2.4",
"@types/jsdom": "^30.0.0",
"@types/node": "^26.0.0",
"@types/react": "^19.2.18",
"@types/react-dom": "^19.2.4",
"@types/serve-static": "^2.2.0",
"@types/sinon": "^22.0.0",
"appium-ios-simulator": "^9.0.0",
"esbuild": "^0.x",
"jsdom": "^30.0.1",
"node-simctl": "^9.0.0",
"react": "^19.2.8",
"react-dom": "^19.2.8",
"serve-static": "^2.2.0",
"sinon": "^22.0.0"
},
"optionalDependencies": {
"appium-ios-remotexpc": "^5.0.1"
},
"engines": {
"node": "^20.19.0 || ^22.12.0 || >=24.0.0",
"npm": ">=10"
}
}