graphcoder 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,3 @@
1
+ # graphcoder
2
+
3
+ Placeholder package reserving the `graphcoder` name. The real CLI release is coming soon.
@@ -0,0 +1,4 @@
1
+ #!/usr/bin/env node
2
+ // Placeholder release. The real Graphcoder CLI is not published yet.
3
+ console.error("graphcoder: this is a placeholder release. A real version is coming soon.");
4
+ process.exit(1);
package/package.json ADDED
@@ -0,0 +1,13 @@
1
+ {
2
+ "name": "graphcoder",
3
+ "version": "0.0.0",
4
+ "description": "Graphcoder CLI (placeholder — reserving the name; real release coming soon).",
5
+ "license": "UNLICENSED",
6
+ "bin": {
7
+ "graphcoder": "bin/graphcoder.js"
8
+ },
9
+ "files": [
10
+ "bin",
11
+ "README.md"
12
+ ]
13
+ }