-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 976 Bytes
/
Copy pathpackage.json
File metadata and controls
34 lines (34 loc) · 976 Bytes
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
{
"name": "@autospec-ai/android-action",
"version": "0.1.0",
"description": "AI-powered Android E2E test generation from commit diffs (Maestro/Espresso)",
"main": "dist/index.js",
"scripts": {
"build": "ncc build src/index.ts -o dist --source-map --license licenses.txt",
"lint": "eslint src/",
"test": "jest",
"dev": "ts-node src/index.ts"
},
"dependencies": {
"@actions/artifact": "^6.2.0",
"@actions/core": "^1.10.1",
"@actions/exec": "^1.1.1",
"@actions/github": "^6.0.0",
"@anthropic-ai/sdk": "^0.30.0",
"glob": "^10.3.10",
"minimatch": "^9.0.3",
"openai": "^4.60.0"
},
"devDependencies": {
"@types/jest": "^29.5.11",
"@types/node": "^20.11.0",
"@typescript-eslint/eslint-plugin": "^8.56.1",
"@typescript-eslint/parser": "^8.56.1",
"@vercel/ncc": "^0.38.1",
"eslint": "^8.56.0",
"jest": "^29.7.0",
"ts-jest": "^29.1.1",
"typescript": "^5.9.3"
},
"license": "MIT"
}