bostrat-node 0.0.1

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 (2) hide show
  1. package/cli.js +4 -0
  2. package/package.json +8 -0
package/cli.js ADDED
@@ -0,0 +1,4 @@
1
+ #!/usr/bin/env node
2
+ console.log("bostrat-node: this is a placeholder release reserving the package name.");
3
+ console.log("The installable node runtime ships with Bostrat plane P2.");
4
+ console.log("Until then, follow the setup steps at https://bostrat.ai");
package/package.json ADDED
@@ -0,0 +1,8 @@
1
+ {
2
+ "name": "bostrat-node",
3
+ "version": "0.0.1",
4
+ "description": "Bostrat node runtime — installer placeholder. The published runtime lands with plane P2. https://bostrat.ai",
5
+ "bin": { "bostrat-node": "cli.js" },
6
+ "license": "SEE LICENSE AT https://bostrat.ai",
7
+ "files": ["cli.js"]
8
+ }