create-intaj 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.
Files changed (3) hide show
  1. package/README.md +6 -0
  2. package/index.mjs +4 -0
  3. package/package.json +10 -0
package/README.md ADDED
@@ -0,0 +1,6 @@
1
+ # create-intaj
2
+
3
+ Placeholder. **intaj** (إنتاج — "production") is a modular full-stack
4
+ framework in development; this name is reserved for its scaffolder.
5
+
6
+ Watch <https://github.com/intaj-dev> for the first release.
package/index.mjs ADDED
@@ -0,0 +1,4 @@
1
+ #!/usr/bin/env node
2
+ console.log('intaj (إنتاج) is in development — this name is reserved for its scaffolder.')
3
+ console.log('Watch https://github.com/intaj-dev for the first release.')
4
+ process.exit(1)
package/package.json ADDED
@@ -0,0 +1,10 @@
1
+ {
2
+ "name": "create-intaj",
3
+ "version": "0.0.0",
4
+ "description": "Scaffolder for intaj (إنتاج) — name reserved; the framework is in development",
5
+ "type": "module",
6
+ "bin": { "create-intaj": "./index.mjs" },
7
+ "files": ["index.mjs"],
8
+ "homepage": "https://github.com/intaj-dev",
9
+ "engines": { "node": ">=20" }
10
+ }