forked from empirical-run/appwright
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.43 KB
/
package.json
File metadata and controls
57 lines (57 loc) · 1.43 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
{
"name": "@tulip/appwright",
"version": "0.2.0",
"main": "dist/index.js",
"engines": {
"node": ">=20.19.0"
},
"bin": {
"appwright": "dist/bin/index.js"
},
"scripts": {
"lint": "eslint .",
"test": "vitest --config ./src/tests/vitest.config.mts",
"build": "tsc --build",
"prepare": "npm run build",
"changeset": "changeset",
"clean": "tsc --build --clean",
"release": "changeset publish",
"build:doc": "typedoc --out api-references src"
},
"repository": {
"type": "git",
"url": "https://github.com/tulip/appwright.git"
},
"keywords": [
"e2e",
"automation",
"ios",
"android",
"testing"
],
"license": "Apache-2.0",
"description": "E2E mobile app testing done right, with the Playwright test runner",
"dependencies": {
"@empiricalrun/llm": "^0.25.2",
"@ffmpeg-installer/ffmpeg": "^1.1.0",
"@playwright/test": "^1.58.1",
"appium": "^3.2.0",
"async-retry": "^1.3.3",
"fluent-ffmpeg": "^2.1.3",
"form-data": "4.0.5",
"node-fetch": "^3.3.2",
"picocolors": "^1.1.1",
"webdriver": "^9.23.2"
},
"devDependencies": {
"@changesets/cli": "^2.29.8",
"@empiricalrun/eslint-config": "^0.5.0",
"@empiricalrun/typescript-config": "^0.3.0",
"@types/async-retry": "^1.4.9",
"@types/fluent-ffmpeg": "^2.1.28",
"@types/node": "^25.1.0",
"eslint": "9.39.2",
"typedoc": "0.28.16",
"vitest": "^4.0.18"
}
}