@clossys/butler 0.1.3 → 0.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/CHANGELOG.md CHANGED
@@ -3,6 +3,19 @@
3
3
  All notable changes to this package are documented here. Format follows
4
4
  [Keep a Changelog](https://keepachangelog.com/en/1.1.0/).
5
5
 
6
+ ## [0.1.4] - 2026-09-16
7
+
8
+ ### Fixed
9
+
10
+ - The Install section told a consumer this package requires a GitHub
11
+ personal access token with `read:packages`, pointing at the repository
12
+ root README for confirmation. That pointer led to a section describing
13
+ an unrelated, still-token-gated set of packages — corroborating evidence
14
+ for a claim that has never been true of `@clossys/butler`, which
15
+ publishes to `https://registry.npmjs.org` with public access and
16
+ installs anonymously. A reader following the instruction as written
17
+ would create a credential this package never asks for. (#924)
18
+
6
19
  ## [0.1.3] - 2026-09-02
7
20
 
8
21
  ### Fixed
package/README.md CHANGED
@@ -44,8 +44,9 @@ Two rules follow, and both are structural here rather than advisory:
44
44
  npm install @clossys/butler
45
45
  ```
46
46
 
47
- Installing from this registry needs a GitHub personal access token with
48
- `read:packages` see the repository root README.
47
+ The package publishes to the public npm registry
48
+ (`https://registry.npmjs.org`) with public access; installing it needs no
49
+ GitHub token or other credential.
49
50
 
50
51
  ```ts
51
52
  import { checkCurrency, evaluateStandingInstruction } from "@clossys/butler";
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@clossys/butler",
3
- "version": "0.1.3",
3
+ "version": "0.1.4",
4
4
  "private": false,
5
5
  "license": "MIT",
6
6
  "type": "module",
@@ -77,14 +77,14 @@
77
77
  },
78
78
  "devDependencies": {
79
79
  "@testing-library/react": "^16.3.3",
80
- "@types/node": "^22.10.0",
81
- "@types/react": "^19.2.0",
82
- "@types/react-dom": "^19.2.5",
80
+ "@types/node": "^26.5.1",
81
+ "@types/react": "^19.3.0",
82
+ "@types/react-dom": "^19.3.0",
83
83
  "jsdom": "^26.1.0",
84
- "react": "^19.2.8",
85
- "react-dom": "^19.2.8",
84
+ "react": "^19.3.0",
85
+ "react-dom": "^19.3.0",
86
86
  "typescript": "~6.0.0",
87
- "vitest": "^4.1.9"
87
+ "vitest": "^5.0.0"
88
88
  },
89
89
  "publishConfig": {
90
90
  "registry": "https://registry.npmjs.org",