shopstack 0.1.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.
package/README.md ADDED
@@ -0,0 +1,25 @@
1
+ # shopstack
2
+
3
+ Shopstack CLI is currently in pre-launch.
4
+
5
+ When installed, it tells users:
6
+
7
+ > Wow you're fast! Apply for access at https://shopstack.ai
8
+
9
+ ## Install
10
+
11
+ ```bash
12
+ npm install -g shopstack
13
+ ```
14
+
15
+ ## What it does now
16
+
17
+ This package is intentionally in a pre-launch placeholder state.
18
+
19
+ If you run the command directly:
20
+
21
+ ```bash
22
+ shopstack
23
+ ```
24
+
25
+ You will see the same access message.
package/bin/shopstack ADDED
@@ -0,0 +1,3 @@
1
+ #!/usr/bin/env node
2
+
3
+ console.log("Wow you're fast! Apply for access at https://shopstack.ai");
package/package.json ADDED
@@ -0,0 +1,21 @@
1
+ {
2
+ "name": "shopstack",
3
+ "version": "0.1.0",
4
+ "description": "Shopstack CLI placeholder package while access is being rolled out.",
5
+ "bin": {
6
+ "shopstack": "./bin/shopstack"
7
+ },
8
+ "scripts": {
9
+ "postinstall": "node ./scripts/postinstall.js",
10
+ "shopstack": "node ./bin/shopstack"
11
+ },
12
+ "engines": {
13
+ "node": ">=18"
14
+ },
15
+ "license": "MIT",
16
+ "keywords": [
17
+ "shopstack",
18
+ "cli",
19
+ "coming-soon"
20
+ ]
21
+ }
@@ -0,0 +1,6 @@
1
+ #!/usr/bin/env node
2
+
3
+ const message =
4
+ "Wow you're fast! Apply for access at https://shopstack.ai";
5
+
6
+ console.log(message);