braeburn 1.0.0 → 1.0.1

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,39 @@
1
+ # braeburn
2
+
3
+ [![npm](https://img.shields.io/npm/v/braeburn)](https://www.npmjs.com/package/braeburn)
4
+
5
+ A macOS system updater CLI. Runs update steps for Homebrew, Mac App Store, Oh My Zsh, npm, pip, pyenv, nvm, .NET, and macOS itself.
6
+
7
+ ## Install
8
+
9
+ ```sh
10
+ npm install -g braeburn
11
+ ```
12
+
13
+ ## Usage
14
+
15
+ ```sh
16
+ braeburn # run all enabled steps interactively
17
+ braeburn -y # run all steps, auto-accept everything
18
+ braeburn homebrew npm # run specific steps only
19
+ ```
20
+
21
+ ## Commands
22
+
23
+ | Command | Description |
24
+ |---|---|
25
+ | `braeburn [steps...] [-y]` | Run update steps (default) |
26
+ | `braeburn log [step]` | View the latest output log for a step |
27
+ | `braeburn config` | View current configuration |
28
+ | `braeburn config update --no-<step>` | Disable a step |
29
+ | `braeburn config update --<step>` | Re-enable a step |
30
+
31
+ ## Steps
32
+
33
+ `homebrew` `mas` `ohmyzsh` `npm` `pip` `pyenv` `nvm` `dotnet` `macos` `cleanup`
34
+
35
+ ## Requirements
36
+
37
+ - macOS
38
+ - Node.js ≥ 24
39
+ - [Homebrew](https://brew.sh) (required)
package/dist/index.js CHANGED
File without changes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "braeburn",
3
- "version": "1.0.0",
3
+ "version": "1.0.1",
4
4
  "description": "macOS system updater CLI",
5
5
  "type": "module",
6
6
  "bin": {
@@ -10,22 +10,23 @@
10
10
  "dist"
11
11
  ],
12
12
  "engines": {
13
- "node": ">=18"
13
+ "node": ">=24"
14
14
  },
15
15
  "scripts": {
16
16
  "build": "tsc",
17
+ "postbuild": "chmod +x dist/index.js",
17
18
  "dev": "tsx src/index.ts",
18
19
  "start": "node dist/index.js",
19
20
  "prepublishOnly": "npm run build"
20
21
  },
21
22
  "dependencies": {
22
23
  "chalk": "^5.3.0",
23
- "commander": "^12.1.0",
24
+ "commander": "^14.0.0",
24
25
  "execa": "^9.3.0",
25
26
  "smol-toml": "^1.6.0"
26
27
  },
27
28
  "devDependencies": {
28
- "@types/node": "^22.0.0",
29
+ "@types/node": "^24.0.0",
29
30
  "tsx": "^4.7.0",
30
31
  "typescript": "^5.5.0"
31
32
  }