-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
63 lines (63 loc) · 1.42 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
58
59
60
61
62
63
{
"name": "appium-llm-plugin",
"description": "An Appium 2 plugin that uses LLMs to find elements",
"tags": [
"appium",
"unity"
],
"version": "0.0.5",
"author": "Jonathan Lipps <[email protected]>",
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "https://github.com/headspinio/appium-llm-plugin"
},
"bugs": {
"url": "https://github.com/headspinio/appium-llm-plugin/issues"
},
"engines": {
"node": ">=18.0.0",
"npm": ">=8"
},
"appium": {
"pluginName": "llm",
"mainClass": "LLMPlugin"
},
"main": "./index.mjs",
"directories": {
"src": "./lib"
},
"files": [
"lib",
"index.mjs",
"!test",
"README.md",
"LICENSE"
],
"scripts": {
"clean": "rm -rf package-lock.json && rm -rf node_modules && npm install",
"test:unit": "mocha ./test/unit/**/*.test.mjs",
"test:e2e": "mocha ./test/e2e/**/*.test.mjs",
"test": "mocha ./test/**/*.test.js"
},
"devDependencies": {
"@appium/types": "^0.17.0",
"@eslint/js": "^9.3.0",
"@types/lodash": "^4.17.4",
"@types/mocha": "^10.0.6",
"appium-uiautomator2-driver": "^3.5.2",
"eslint": "^9.3.0",
"expect": "^29.7.0",
"mocha": "^10.4.0",
"webdriverio": "^8.38.0"
},
"peerDependencies": {
"appium": "^2.5.0"
},
"dependencies": {
"@appium/support": "^4.2.6",
"lodash": "^4.17.21",
"lru-cache": "^10.2.2",
"openai": "^4.47.1"
}
}