@wordbricks/velen 0.1.0-darwin-arm64

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.
package/README.md ADDED
@@ -0,0 +1,22 @@
1
+ # velen
2
+
3
+ Rust CLI workspace for `velen` and the companion CLI API contract.
4
+
5
+ Key references:
6
+
7
+ - Human-oriented protocol and workflow spec: `docs/SPEC.md`
8
+ - Generated JSON API contract: `openapi/cli.openapi.json`
9
+
10
+ Install:
11
+
12
+ - `bun install -g @wordbricks/velen`
13
+ - `bunx @wordbricks/velen --help`
14
+ - `npx @wordbricks/velen --help`
15
+
16
+ Release:
17
+
18
+ - If `@wordbricks/velen` does not exist on npm yet, run the one-time `CLI Release Bootstrap` GitHub Actions workflow with the `NPM_TOKEN` secret to create the initial package.
19
+ - Keep `apps/cli/package.json` and `apps/cli/crates/velen-cli/Cargo.toml` on the same version.
20
+ - Configure npm trusted publishing for `@wordbricks/velen` with GitHub Actions using the workflow filename `cli-release.yml`.
21
+ - Push a tag like `cli-v0.1.0` or `cli-v0.1.0-alpha.1`.
22
+ - The `cli-release` workflow builds platform binaries, stages npm tarballs, creates a GitHub release, and publishes them to npm with `npm publish --provenance`.
package/package.json ADDED
@@ -0,0 +1,27 @@
1
+ {
2
+ "name": "@wordbricks/velen",
3
+ "version": "0.1.0-darwin-arm64",
4
+ "description": "Velen CLI",
5
+ "license": "Apache-2.0",
6
+ "os": [
7
+ "darwin"
8
+ ],
9
+ "cpu": [
10
+ "arm64"
11
+ ],
12
+ "files": [
13
+ "vendor",
14
+ "README.md"
15
+ ],
16
+ "repository": {
17
+ "type": "git",
18
+ "url": "git+https://github.com/wordbricks/velen.git",
19
+ "directory": "apps/cli"
20
+ },
21
+ "publishConfig": {
22
+ "access": "public"
23
+ },
24
+ "engines": {
25
+ "node": ">=18"
26
+ }
27
+ }