-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathpackage.json
More file actions
77 lines (77 loc) · 2.19 KB
/
package.json
File metadata and controls
77 lines (77 loc) · 2.19 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
73
74
75
76
77
{
"name": "appclaw",
"version": "1.1.0",
"description": "Agentic AI layer for mobile automation via appium-mcp",
"type": "module",
"main": "dist/sdk/index.js",
"types": "dist/sdk/index.d.ts",
"exports": {
".": {
"import": "./dist/sdk/index.js",
"types": "./dist/sdk/index.d.ts"
},
"./cli": {
"import": "./dist/index.js"
}
},
"bin": {
"appclaw": "bin/appclaw.js"
},
"files": [
"dist",
"bin"
],
"scripts": {
"start": "npx tsx src/index.ts",
"dev": "npx tsx --watch src/index.ts",
"build": "tsc",
"typecheck": "tsc --noEmit",
"lint": "npm run typecheck",
"format": "prettier --write .",
"format:check": "prettier --check .",
"test": "vitest run tests/flow tests/sdk",
"test:e2e": "vitest run tests/e2e/",
"test:e2e:android": "MCP_DEBUG=1 vitest run tests/e2e/android.test.ts",
"test:watch": "vitest tests/flow tests/sdk",
"build:vsix": "cd vscode-extension && npm run build && npx vsce package",
"deploy:landing": "npm run deploy --prefix landing"
},
"dependencies": {
"@ai-sdk/anthropic": "^1.0.0",
"@ai-sdk/google": "^3.0.43",
"@ai-sdk/openai": "^1.0.0",
"@modelcontextprotocol/sdk": "^1.22.0",
"ai": "^6.0.72",
"ai-sdk-ollama": "3.8.3",
"boxen": "^8.0.1",
"chalk": "^5.6.2",
"cli-spinners": "^3.4.0",
"cli-table3": "^0.6.5",
"df-vision": "1.1.77",
"dotenv": "^17.3.1",
"fast-xml-parser": "^4.5.0",
"gradient-string": "^3.0.0",
"marked": "^15.0.12",
"marked-terminal": "^7.3.0",
"mjpeg-consumer": "2.0.0",
"sharp": "^0.33.5",
"yaml": "^2.8.3",
"zod": "^3.23.0"
},
"devDependencies": {
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/commit-analyzer": "^13.0.1",
"@semantic-release/git": "^10.0.1",
"@semantic-release/github": "^11.0.6",
"@semantic-release/npm": "^12.0.2",
"@semantic-release/release-notes-generator": "^14.1.0",
"@types/bun": "^1.1.0",
"@types/gradient-string": "^1.1.6",
"conventional-changelog-conventionalcommits": "^9.3.1",
"prettier": "^3.8.1",
"semantic-release": "^24.2.9",
"tsx": "^4.21.0",
"typescript": "^5.6.0",
"vitest": "^4.1.2"
}
}