metantel-forge 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 (2) hide show
  1. package/index.mjs +3 -0
  2. package/package.json +14 -0
package/index.mjs ADDED
@@ -0,0 +1,3 @@
1
+ #!/usr/bin/env node
2
+ // Name-squat guard (PLANS/02 §5): the real package is scoped.
3
+ console.log("Metantel Forge lives at @metantel/forge — run:\n\n npx @metantel/forge <workspace>\n\nDocs: https://metantel.com/forge");
package/package.json ADDED
@@ -0,0 +1,14 @@
1
+ {
2
+ "name": "metantel-forge",
3
+ "version": "1.0.0",
4
+ "description": "Pointer package. The real CLI is @metantel/forge — run: npx @metantel/forge",
5
+ "license": "UNLICENSED",
6
+ "type": "module",
7
+ "bin": {
8
+ "metantel-forge-stub": "index.mjs"
9
+ },
10
+ "scripts": {
11
+ "postinstall-NOTE": "deliberately no postinstall (X-11); this package only prints the real command"
12
+ },
13
+ "dependencies": {}
14
+ }