@azx-pbc/helix-cli 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 (2) hide show
  1. package/README.md +14 -0
  2. package/package.json +17 -0
package/README.md ADDED
@@ -0,0 +1,14 @@
1
+ # `@azx-pbc/helix-cli` — 0.0.0 placeholder
2
+
3
+ This version is an empty placeholder. It exists only because npm requires a
4
+ package to exist before a [trusted publisher](https://docs.npmjs.com/trusted-publishers/)
5
+ (OIDC) can be attached to it, and we wanted every real release to carry a
6
+ provenance attestation rather than starting with a hand-published one.
7
+
8
+ **Install `0.1.0` or later** — that is the actual CLI, published from CI:
9
+
10
+ ```
11
+ npm i -g @azx-pbc/helix-cli
12
+ ```
13
+
14
+ Source: https://github.com/AZX-PBC-OSS/helix/tree/main/packages/cli
package/package.json ADDED
@@ -0,0 +1,17 @@
1
+ {
2
+ "name": "@azx-pbc/helix-cli",
3
+ "version": "0.0.0",
4
+ "description": "Placeholder to bootstrap trusted publishing — the Helix deploy CLI ships from 0.1.0 onward",
5
+ "license": "MIT",
6
+ "repository": {
7
+ "type": "git",
8
+ "url": "git+https://github.com/AZX-PBC-OSS/helix.git",
9
+ "directory": "packages/cli"
10
+ },
11
+ "publishConfig": {
12
+ "access": "public"
13
+ },
14
+ "files": [
15
+ "README.md"
16
+ ]
17
+ }