-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 1.04 KB
/
package.json
File metadata and controls
40 lines (40 loc) · 1.04 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
{
"name": "testchimp-runner-action",
"version": "1.0.20",
"description": "GitHub Action for TestChimp AI test repair",
"main": "dist/index.js",
"scripts": {
"build": "tsc && npm run package",
"package": "ncc build src/index.ts -o dist --source-map --license licenses.txt --minify --external playwright --external @playwright/test",
"watch": "tsc --watch",
"clean": "rm -rf dist"
},
"dependencies": {
"@actions/core": "^1.10.1",
"@actions/exec": "^1.1.1",
"@actions/github": "^6.0.0",
"@actions/glob": "^0.4.0",
"@octokit/rest": "^20.0.0",
"@playwright/test": "^1.55.1",
"axios": "^1.12.2",
"dotenv": "^17.2.2",
"esbuild": "^0.25.10",
"playwright": "^1.55.1",
"testchimp-runner-core": "^0.1.5"
},
"devDependencies": {
"@types/node": "^20.10.0",
"@vercel/ncc": "^0.38.1",
"ts-node": "^10.9.0",
"typescript": "^5.3.0"
},
"keywords": [
"github-action",
"testchimp",
"playwright",
"ai",
"test-automation"
],
"author": "TestChimp",
"license": "MIT"
}