-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1.54 KB
/
package.json
File metadata and controls
42 lines (42 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
{
"name": "auto-heal-locators",
"version": "0.2.0",
"description": "Auto-healing locator system for Playwright — one-command setup, real-time dashboard",
"main": "dist/cli/index.js",
"bin": {
"auto-heal": "dist/cli/index.js",
"auto-heal-locators": "dist/cli/index.js"
},
"exports": {
".": "./dist/cli/index.js",
"./adapter": "./dist/adapter/playwrightAdapter.js",
"./engine": "./dist/engine/healingEngine.js",
"./history": "./dist/history/historyStore.js",
"./ml": "./dist/ml/mlModel.js",
"./dashboard": "./dist/dashboard/server/dashboardServer.js",
"./scaffold": "./dist/scaffold/templates.js",
"./dist/engine/healingEngine": "./dist/engine/healingEngine.js",
"./dist/history/historyStore": "./dist/history/historyStore.js",
"./dist/adapter/playwrightAdapter": "./dist/adapter/playwrightAdapter.js",
"./dist/config/defaultConfig": "./dist/config/defaultConfig.js",
"./dist/report/jsonReporter": "./dist/report/jsonReporter.js",
"./dist/report/htmlReporter": "./dist/report/htmlReporter.js",
"./dist/registry/projectRegistry": "./dist/registry/projectRegistry.js",
"./dist/*": "./dist/*"
},
"scripts": {
"build": "tsc",
"start": "node dist/cli/index.js",
"dashboard": "node dist/cli/index.js dashboard",
"clean": "rm -rf dist"
},
"keywords": ["playwright", "auto-heal", "locator", "testing"],
"license": "MIT",
"devDependencies": {
"typescript": "^5.3.0",
"@types/node": "^20.10.0"
},
"peerDependencies": {
"@playwright/test": ">=1.30.0"
}
}