-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
72 lines (72 loc) · 1.54 KB
/
Copy pathpackage.json
File metadata and controls
72 lines (72 loc) · 1.54 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
{
"name": "appcrawl",
"version": "0.2.1",
"description": "AI-powered app testing. Let an LLM explore and test your mobile or web app autonomously. Bring your own API key.",
"type": "module",
"bin": {
"appcrawl": "./dist/index.js"
},
"files": [
"dist/",
"README.md",
"LICENSE"
],
"homepage": "https://appcrawl.dev",
"repository": {
"type": "git",
"url": "git+https://github.com/dadcod/appcrawl.git"
},
"bugs": {
"url": "https://github.com/dadcod/appcrawl/issues"
},
"author": "DadCod <dadcod.blog@gmail.com>",
"license": "MIT",
"keywords": [
"testing",
"e2e",
"ai",
"llm",
"ios",
"android",
"mobile",
"web",
"playwright",
"maestro",
"qa",
"automation",
"agent"
],
"engines": {
"node": ">=20"
},
"scripts": {
"dev": "tsx src/index.ts",
"build": "tsc",
"start": "node dist/index.js",
"prepublishOnly": "npm run build"
},
"dependencies": {
"@ai-sdk/anthropic": "^1.0.0",
"@ai-sdk/google": "^1.0.0",
"@ai-sdk/openai": "^1.0.0",
"@clack/prompts": "^1.2.0",
"@modelcontextprotocol/sdk": "^1.29.0",
"@openrouter/ai-sdk-provider": "^2.5.1",
"ai": "^4.0.0",
"commander": "^13.0.0",
"ollama-ai-provider": "^1.2.0",
"pixelmatch": "^7.1.0",
"pngjs": "^7.0.0",
"yaml": "^2.8.3",
"zod": "^3.23.0"
},
"optionalDependencies": {
"playwright": "^1.59.1"
},
"devDependencies": {
"@types/node": "^22.0.0",
"@types/pngjs": "^6.0.5",
"tsx": "^4.0.0",
"typescript": "^5.9.0"
}
}