@feralfile/cli 1.1.1 → 1.1.4

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/docs/RELEASING.md CHANGED
@@ -31,7 +31,7 @@ Run the appropriate script on each target platform and upload each pair to the G
31
31
 
32
32
  ## npm Publish Requirements
33
33
 
34
- - Set `NPM_TOKEN` in GitHub Actions secrets with an npm automation token.
34
+ - Publishes use **npm Trusted Publishing (OIDC)** — no `NPM_TOKEN` secret is required or used. The trust is configured at https://www.npmjs.com/package/@feralfile/cli/access (publisher: GitHub Actions, org: `feral-file`, repo: `ff-cli`, workflow: `release.yml`).
35
35
  - Ensure `package.json` version matches the release tag (e.g. tag `1.0.2` → `"version": "1.0.2"`). The release job fails fast when they differ.
36
36
  - A **regular** (non-prerelease) GitHub Release publishes with the default dist-tag **`latest`**.
37
37
  - A GitHub Release marked **Set as a pre-release** publishes to the **`beta`** dist-tag, and its version must contain `beta` so the package version stays aligned with the beta channel.
package/package.json CHANGED
@@ -1,7 +1,15 @@
1
1
  {
2
2
  "name": "@feralfile/cli",
3
- "version": "1.1.1",
3
+ "version": "1.1.4",
4
4
  "description": "CLI for building DP-1 playlists of digital art using AI (Claude, Grok, ChatGPT, Gemini)",
5
+ "repository": {
6
+ "type": "git",
7
+ "url": "git+https://github.com/feral-file/ff-cli.git"
8
+ },
9
+ "homepage": "https://github.com/feral-file/ff-cli#readme",
10
+ "bugs": {
11
+ "url": "https://github.com/feral-file/ff-cli/issues"
12
+ },
5
13
  "main": "dist/index.js",
6
14
  "bin": {
7
15
  "ff-cli": "dist/index.js"