layout-qa 0.1.2

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.
Files changed (3) hide show
  1. package/README.md +14 -0
  2. package/index.js +3 -0
  3. package/package.json +41 -0
package/README.md ADDED
@@ -0,0 +1,14 @@
1
+ # layout-qa
2
+
3
+ `layout-qa` is a convenience alias for the canonical package `@trylayout/qa`.
4
+
5
+ Both commands are equivalent:
6
+
7
+ ```bash
8
+ npx layout-qa run --target-url http://localhost:5173 --scenario happy_path --open
9
+ npx @trylayout/qa run --target-url http://localhost:5173 --scenario happy_path --open
10
+ ```
11
+
12
+ Use the main README for full documentation:
13
+
14
+ https://github.com/Layout-App/layout-qa#readme
package/index.js ADDED
@@ -0,0 +1,3 @@
1
+ #!/usr/bin/env node
2
+
3
+ require('@trylayout/qa/build/cli/layoutQa.js');
package/package.json ADDED
@@ -0,0 +1,41 @@
1
+ {
2
+ "name": "layout-qa",
3
+ "version": "0.1.2",
4
+ "description": "Convenience alias for @trylayout/qa.",
5
+ "license": "MIT",
6
+ "author": "Layout",
7
+ "homepage": "https://github.com/Layout-App/layout-qa#readme",
8
+ "repository": {
9
+ "type": "git",
10
+ "url": "git+https://github.com/Layout-App/layout-qa.git",
11
+ "directory": "packages/layout-qa"
12
+ },
13
+ "bugs": {
14
+ "url": "https://github.com/Layout-App/layout-qa/issues"
15
+ },
16
+ "keywords": [
17
+ "layout",
18
+ "qa",
19
+ "playwright",
20
+ "frontend",
21
+ "visual-testing",
22
+ "ai-agents"
23
+ ],
24
+ "bin": {
25
+ "layout-qa": "index.js",
26
+ "trylayout": "index.js"
27
+ },
28
+ "files": [
29
+ "index.js",
30
+ "README.md"
31
+ ],
32
+ "publishConfig": {
33
+ "access": "public"
34
+ },
35
+ "engines": {
36
+ "node": ">=18"
37
+ },
38
+ "dependencies": {
39
+ "@trylayout/qa": "^0.1.2"
40
+ }
41
+ }