@yasserkhanorg/e2e-agents 1.0.0 → 1.0.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +8 -6
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@yasserkhanorg/e2e-agents",
|
|
3
|
-
"version": "1.0.
|
|
4
|
-
"description": "
|
|
3
|
+
"version": "1.0.1",
|
|
4
|
+
"description": "AI-powered E2E test impact analysis, generation, and healing. Analyzes code changes to identify affected Playwright tests, detects coverage gaps, and generates or repairs specs using pluggable LLM providers (Claude, OpenAI, Ollama). Includes MCP server, traceability, and CI/CD integration.",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"module": "dist/esm/index.js",
|
|
7
7
|
"types": "dist/index.d.ts",
|
|
@@ -41,11 +41,13 @@
|
|
|
41
41
|
"build:cjs": "tsc -p tsconfig.json",
|
|
42
42
|
"build:esm": "tsc -p tsconfig.esm.json && node scripts/write-esm-package.js",
|
|
43
43
|
"clean": "rm -rf dist",
|
|
44
|
-
"
|
|
45
|
-
"impact:
|
|
44
|
+
"build:scripts": "tsc -p tsconfig.scripts.json",
|
|
45
|
+
"impact:checklist": "node scripts-dist/impact-checklist.js",
|
|
46
|
+
"impact:local": "node scripts-dist/local-impact-workflow.js",
|
|
46
47
|
"prebuild": "npm run clean",
|
|
47
|
-
"
|
|
48
|
-
"
|
|
48
|
+
"build:test": "tsc -p tsconfig.test.json --noCheck",
|
|
49
|
+
"pretest": "npm run build && npm run build:scripts && npm run build:test",
|
|
50
|
+
"test": "node --test test-dist/*.test.js",
|
|
49
51
|
"lint": "tsc -p tsconfig.json --noEmit",
|
|
50
52
|
"mcp:server": "node dist/mcp-server.js"
|
|
51
53
|
},
|