@starkscan/cli 0.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.
package/README.md ADDED
@@ -0,0 +1,10 @@
1
+ # @starkscan/cli
2
+
3
+ The stable Starkscan CLI channel is not released yet.
4
+
5
+ Use the beta explicitly:
6
+
7
+ ```bash
8
+ npx -y @starkscan/cli@alpha
9
+ ```
10
+
@@ -0,0 +1,5 @@
1
+ #!/usr/bin/env node
2
+ console.error("The stable @starkscan/cli channel is not released yet.");
3
+ console.error("Use the beta explicitly: npx -y @starkscan/cli@alpha");
4
+ process.exit(1);
5
+
package/package.json ADDED
@@ -0,0 +1,16 @@
1
+ {
2
+ "name": "@starkscan/cli",
3
+ "version": "0.0.0",
4
+ "description": "Stable placeholder for the Starkscan CLI. Use @starkscan/cli@alpha for the current beta.",
5
+ "type": "module",
6
+ "bin": {
7
+ "starkscan": "./bin/starkscan.js"
8
+ },
9
+ "files": [
10
+ "README.md",
11
+ "bin"
12
+ ],
13
+ "publishConfig": {
14
+ "access": "public"
15
+ }
16
+ }