@toolstackhq/create-qa-patterns 1.0.0

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 (4) hide show
  1. package/LICENSE +21 -0
  2. package/README.md +24 -0
  3. package/index.js +3 -0
  4. package/package.json +29 -0
package/LICENSE ADDED
@@ -0,0 +1,21 @@
1
+ MIT License
2
+
3
+ Copyright (c) 2026 ToolstackHQ
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in all
13
+ copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
+ SOFTWARE.
package/README.md ADDED
@@ -0,0 +1,24 @@
1
+ # @toolstackhq/create-qa-patterns
2
+
3
+ This package is the future scaffolding entrypoint for the `qa-patterns` repository.
4
+
5
+ ## Current status
6
+
7
+ The package is intentionally minimal today. It exists so the repository can reserve the CLI name and publish a stable install target while the scaffold commands evolve.
8
+
9
+ ## Usage
10
+
11
+ ```bash
12
+ npm install -g @toolstackhq/create-qa-patterns
13
+ create-qa-patterns
14
+ ```
15
+
16
+ Current output:
17
+
18
+ - prints a placeholder message
19
+
20
+ Planned direction:
21
+
22
+ - scaffold a Playwright automation framework
23
+ - scaffold reference demo applications
24
+ - generate standardized config, lint, CI, and reporting assets
package/index.js ADDED
@@ -0,0 +1,3 @@
1
+ #!/usr/bin/env node
2
+
3
+ console.log("create-qa-patterns is reserved for future repository scaffolding workflows.");
package/package.json ADDED
@@ -0,0 +1,29 @@
1
+ {
2
+ "name": "@toolstackhq/create-qa-patterns",
3
+ "version": "1.0.0",
4
+ "description": "Placeholder CLI for future test framework scaffolding.",
5
+ "license": "MIT",
6
+ "repository": {
7
+ "type": "git",
8
+ "url": "git+https://github.com/toolstackhq/qa-patterns.git"
9
+ },
10
+ "homepage": "https://github.com/toolstackhq/qa-patterns",
11
+ "bugs": {
12
+ "url": "https://github.com/toolstackhq/qa-patterns/issues"
13
+ },
14
+ "publishConfig": {
15
+ "access": "public"
16
+ },
17
+ "files": [
18
+ "index.js",
19
+ "README.md",
20
+ "LICENSE"
21
+ ],
22
+ "bin": {
23
+ "create-qa-patterns": "./index.js"
24
+ },
25
+ "scripts": {
26
+ "start": "node ./index.js",
27
+ "test": "node ./index.js"
28
+ }
29
+ }