-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 1.62 KB
/
package.json
File metadata and controls
63 lines (63 loc) · 1.62 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
{
"name": "appwright",
"version": "0.1.46",
"publishConfig": {
"registry": "https://registry.npmjs.org/",
"access": "public"
},
"main": "dist/index.js",
"engines": {
"node": ">=18.20.4"
},
"bin": {
"appwright": "dist/bin/index.js"
},
"scripts": {
"lint": "eslint .",
"test": "vitest --config ./src/tests/vitest.config.mts",
"build": "tsc --build",
"changeset": "changeset",
"clean": "tsc --build --clean",
"release": "changeset publish",
"build:doc": "typedoc --out api-references src"
},
"repository": {
"type": "git",
"url": "https://github.com/empirical-run/appwright.git"
},
"keywords": [
"e2e",
"automation",
"ios",
"android",
"testing"
],
"author": "Empirical Team <hey@empirical.run>",
"license": "Apache-2.0",
"description": "E2E mobile app testing done right, with the Playwright test runner",
"dependencies": {
"@empiricalrun/llm": "^0.9.25",
"@ffmpeg-installer/ffmpeg": "^1.1.0",
"@playwright/test": "^1.47.1",
"appium": "^2.6.0",
"appium-uiautomator2-driver": "^3.8.0",
"appium-xcuitest-driver": "^7.27.0",
"async-retry": "^1.3.3",
"fluent-ffmpeg": "^2.1.3",
"form-data": "4.0.0",
"node-fetch": "^3.3.2",
"picocolors": "^1.1.0",
"webdriver": "^8.36.1"
},
"devDependencies": {
"@changesets/cli": "^2.27.8",
"@empiricalrun/eslint-config": "^0.4.1",
"@empiricalrun/typescript-config": "^0.3.0",
"@types/async-retry": "^1.4.8",
"@types/fluent-ffmpeg": "^2.1.26",
"@types/node": "^22.5.2",
"eslint": "8.57.0",
"typedoc": "0.26.7",
"vitest": "^2.1.3"
}
}