@adiontaegerron/claude-multi-terminal 1.0.0 → 1.0.2
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 +7 -7
- package/package.json +2 -1
package/README.md
CHANGED
@@ -16,17 +16,17 @@ A multi-terminal editor for coordinating multiple Claude Code instances. Run mul
|
|
16
16
|
|
17
17
|
## Installation
|
18
18
|
|
19
|
-
### From npm
|
19
|
+
### From npm
|
20
20
|
|
21
21
|
```bash
|
22
|
-
npm install -g claude-multi-terminal
|
22
|
+
npm install -g @adiontaegerron/claude-multi-terminal
|
23
23
|
```
|
24
24
|
|
25
25
|
### From GitHub
|
26
26
|
|
27
27
|
```bash
|
28
|
-
git clone https://github.com/
|
29
|
-
cd multi-
|
28
|
+
git clone https://github.com/adiontae-tp/multi-terminal.git
|
29
|
+
cd multi-terminal
|
30
30
|
npm install
|
31
31
|
npm link
|
32
32
|
```
|
@@ -67,8 +67,8 @@ This will open the multi-terminal editor with all terminals starting in your cur
|
|
67
67
|
|
68
68
|
```bash
|
69
69
|
# Clone the repository
|
70
|
-
git clone https://github.com/
|
71
|
-
cd multi-
|
70
|
+
git clone https://github.com/adiontae-tp/multi-terminal.git
|
71
|
+
cd multi-terminal
|
72
72
|
|
73
73
|
# Install dependencies
|
74
74
|
npm install
|
@@ -106,7 +106,7 @@ Contributions are welcome! Please feel free to submit a Pull Request.
|
|
106
106
|
|
107
107
|
## Issues
|
108
108
|
|
109
|
-
If you find a bug or have a feature request, please open an issue on [GitHub](https://github.com/
|
109
|
+
If you find a bug or have a feature request, please open an issue on [GitHub](https://github.com/adiontae-tp/multi-terminal/issues).
|
110
110
|
|
111
111
|
## Acknowledgments
|
112
112
|
|
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@adiontaegerron/claude-multi-terminal",
|
3
|
-
"version": "1.0.
|
3
|
+
"version": "1.0.2",
|
4
4
|
"description": "Multi-terminal editor for coordinating multiple Claude Code instances",
|
5
5
|
"main": "main.js",
|
6
6
|
"bin": {
|
@@ -34,6 +34,7 @@
|
|
34
34
|
"homepage": "https://github.com/adiontae-tp/multi-terminal#readme",
|
35
35
|
"dependencies": {
|
36
36
|
"electron": "^37.2.5",
|
37
|
+
"@electron/rebuild": "^3.7.2",
|
37
38
|
"node-pty": "^1.0.0",
|
38
39
|
"xterm": "^5.3.0",
|
39
40
|
"xterm-addon-fit": "^0.8.0"
|