-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
57 lines (57 loc) · 1.34 KB
/
package.json
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": "@onslip/automation",
"version": "1.3.0",
"description": "Remote-control any old Android or iOS WebView in a Playwright-inspired way",
"license": "Apache-2.0",
"author": "Martin Blom <[email protected]>",
"repository": "https://github.com/Onslip/automation.git",
"main": "build/src/index.js",
"types": "build/src/index.d.ts",
"exports": {
".": {
"types": "./build/src/index.d.ts",
"default": "./build/src/index.js"
},
"./test": {
"types": "./build/src/test.d.ts",
"default": "./build/src/test.js"
},
"./build/src/test": {
"types": "./build/src/test.d.ts",
"default": "./build/src/test.js"
}
},
"files": [
"CHANGELOG.md",
"build/*.js",
"build/src",
"src"
],
"dependencies": {
"@divine/synchronization": "^1.2.1",
"@types/chrome-remote-interface": "~0.31.14",
"chrome-remote-interface": "~0.33.2",
"jimp": "~0.22.12"
},
"devDependencies": {
"@changesets/cli": "^2.27.7",
"@types/node": "^22.5.0",
"typedoc": "^0.26.6",
"typedoc-plugin-markdown": "^4.2.6",
"typescript": "~5.5.4"
},
"peerDependencies": {
"@playwright/test": "*"
},
"peerDependenciesMeta": {
"@playwright/test": {
"optional": true
}
},
"pnpm": {
"onlyBuiltDependencies": []
},
"engines": {
"node": ">= 12.4"
}
}