claude-dock 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.
Files changed (2) hide show
  1. package/README.md +22 -7
  2. package/package.json +3 -3
package/README.md CHANGED
@@ -3,6 +3,7 @@
3
3
  A lightweight, expandable terminal dock for macOS built with [Hammerspoon](https://www.hammerspoon.org/). Designed for managing multiple Claude Code terminal sessions.
4
4
 
5
5
  ![Claude Dock](https://img.shields.io/badge/macOS-Hammerspoon-blue)
6
+ [![npm version](https://img.shields.io/npm/v/claude-dock.svg)](https://www.npmjs.com/package/claude-dock)
6
7
 
7
8
  ## Features
8
9
 
@@ -16,7 +17,22 @@ A lightweight, expandable terminal dock for macOS built with [Hammerspoon](https
16
17
 
17
18
  ## Installation
18
19
 
19
- ### Prerequisites
20
+ ```bash
21
+ npx claude-dock
22
+ ```
23
+
24
+ That's it! The installer will:
25
+ - Install Hammerspoon (if needed)
26
+ - Set up the dock configuration
27
+ - Launch Hammerspoon
28
+
29
+ **Note:** You'll need to grant Accessibility permissions when prompted:
30
+ System Settings → Privacy & Security → Accessibility → Enable Hammerspoon
31
+
32
+ ### Manual Installation
33
+
34
+ <details>
35
+ <summary>Click to expand manual setup instructions</summary>
20
36
 
21
37
  1. Install [Hammerspoon](https://www.hammerspoon.org/):
22
38
  ```bash
@@ -27,16 +43,15 @@ A lightweight, expandable terminal dock for macOS built with [Hammerspoon](https
27
43
  - System Settings > Privacy & Security > Accessibility
28
44
  - Enable Hammerspoon
29
45
 
30
- ### Setup
31
-
32
- 1. Clone this repo (or download the ZIP from GitHub)
33
-
34
- 2. Copy to Hammerspoon config:
46
+ 3. Clone this repo and copy the config:
35
47
  ```bash
48
+ git clone https://github.com/matthewmolinar/claude-dock.git
36
49
  cp claude-dock/init.lua ~/.hammerspoon/init.lua
37
50
  ```
38
51
 
39
- 3. Launch Hammerspoon (or reload if already running)
52
+ 4. Launch Hammerspoon (or reload if already running)
53
+
54
+ </details>
40
55
 
41
56
  ## Usage
42
57
 
package/package.json CHANGED
@@ -1,9 +1,9 @@
1
1
  {
2
2
  "name": "claude-dock",
3
- "version": "1.0.0",
3
+ "version": "1.0.1",
4
4
  "description": "A lightweight terminal dock for macOS to manage Claude Code sessions",
5
5
  "bin": {
6
- "claude-dock": "./bin/cli.js"
6
+ "claude-dock": "bin/cli.js"
7
7
  },
8
8
  "keywords": [
9
9
  "claude",
@@ -17,7 +17,7 @@
17
17
  "license": "MIT",
18
18
  "repository": {
19
19
  "type": "git",
20
- "url": "https://github.com/matthewmolinar/claude-dock.git"
20
+ "url": "git+https://github.com/matthewmolinar/claude-dock.git"
21
21
  },
22
22
  "homepage": "https://github.com/matthewmolinar/claude-dock",
23
23
  "engines": {