create-june-app 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/bin.mjs +4 -0
  2. package/package.json +13 -0
package/bin.mjs ADDED
@@ -0,0 +1,4 @@
1
+ #!/usr/bin/env node
2
+ // create-june-app — alias of create-june (the canonical scaffolder for June).
3
+ // Delegates entirely; the template lives in create-june (single source).
4
+ import "create-june/bin.mjs";
package/package.json ADDED
@@ -0,0 +1,13 @@
1
+ {
2
+ "name": "create-june-app",
3
+ "version": "0.0.1",
4
+ "description": "Alias of create-june — scaffold a June (junecore) app. Prefer `npm create june`.",
5
+ "type": "module",
6
+ "bin": { "create-june-app": "./bin.mjs" },
7
+ "files": ["bin.mjs"],
8
+ "engines": { "node": ">=20.11" },
9
+ "dependencies": { "create-june": "^0.0.1" },
10
+ "homepage": "https://june.build",
11
+ "repository": { "type": "git", "url": "git+https://github.com/junebuild/june.git" },
12
+ "license": "MIT"
13
+ }