@dipertq/dsh-openviking-status 0.1.5 → 0.1.7

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 -9
  2. package/package.json +9 -1
package/README.md CHANGED
@@ -33,7 +33,7 @@ Equivalent, and useful when the registry is unreachable. Use a
33
33
  **version-pinned** URL:
34
34
 
35
35
  ```bash
36
- dsh plugin add https://github.com/dipertq/dsh-openviking-status/releases/download/v0.1.5/dipertq-dsh-openviking-status-0.1.5.tgz
36
+ dsh plugin add https://github.com/dipertq/dsh-openviking-status/releases/download/v0.1.7/dipertq-dsh-openviking-status-0.1.7.tgz
37
37
  ```
38
38
 
39
39
  Not `/releases/latest/download/…`: that URL keeps its name while its content
@@ -98,14 +98,12 @@ authenticates over OIDC with short-lived credentials, so there is no `NPM_TOKEN`
98
98
  secret to store or rotate, and each release carries a provenance attestation
99
99
  proving which commit and workflow built it.
100
100
 
101
- One-time setup, after the first version exists in the registry (trusted
102
- publishing is configured per package):
103
-
104
- 1. Publish `0.1.5` once by hand: `npm publish --access public`.
105
- 2. On the package's **Settings → Trusted Publisher** page, add a GitHub Actions
106
- publisher: user `dipertq`, repository `dsh-openviking-status`, workflow
107
- `release.yml`, environment blank.
108
- 3. Cut releases as usual — the workflow publishes on its own.
101
+ This is already configured, so a release needs nothing beyond the usual
102
+ `pnpm run release:*`. The one-time setup was: publish the first version by hand
103
+ (trusted publishing is configured per package, so the package has to exist),
104
+ then register a GitHub Actions publisher on the package's
105
+ **Settings → Trusted Publisher** page user `dipertq`, repository
106
+ `dsh-openviking-status`, workflow `release.yml`, environment blank.
109
107
 
110
108
  ## License
111
109
 
package/package.json CHANGED
@@ -1,8 +1,16 @@
1
1
  {
2
2
  "name": "@dipertq/dsh-openviking-status",
3
- "version": "0.1.5",
3
+ "version": "0.1.7",
4
4
  "description": "Minimalist OpenViking status chip and popover for DeepSeek Harness composer",
5
5
  "type": "module",
6
+ "repository": {
7
+ "type": "git",
8
+ "url": "git+https://github.com/dipertq/dsh-openviking-status.git"
9
+ },
10
+ "homepage": "https://github.com/dipertq/dsh-openviking-status#readme",
11
+ "bugs": {
12
+ "url": "https://github.com/dipertq/dsh-openviking-status/issues"
13
+ },
6
14
  "main": "lib/index.js",
7
15
  "module": "lib/index.js",
8
16
  "types": "lib/index.d.ts",