@hyper3d/cli 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/README.md +7 -0
  2. package/package.json +16 -0
package/README.md ADDED
@@ -0,0 +1,7 @@
1
+ # Hyper3D CLI — initialization placeholder
2
+
3
+ Version 0.0.1 is a minimal package used to initialize the npm package and configure trusted publishing from GitHub Actions.
4
+
5
+ This version does not contain a CLI executable or runtime functionality. It is published under the `init` dist-tag. Use a subsequent functional release to run the Hyper3D CLI.
6
+
7
+ Source: https://github.com/DeemosTech/hyper3d-cli
package/package.json ADDED
@@ -0,0 +1,16 @@
1
+ {
2
+ "name": "@hyper3d/cli",
3
+ "version": "0.0.1",
4
+ "description": "Initialization placeholder for the Hyper3D CLI npm package. Not a functional CLI release.",
5
+ "repository": {
6
+ "type": "git",
7
+ "url": "git+https://github.com/DeemosTech/hyper3d-cli.git",
8
+ "directory": "packages/cli"
9
+ },
10
+ "files": ["README.md"],
11
+ "publishConfig": {
12
+ "access": "public",
13
+ "registry": "https://registry.npmjs.org/",
14
+ "tag": "init"
15
+ }
16
+ }