@aku11i/phantom 5.0.0 → 6.1.0
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 +2 -2
- package/package.json +5 -5
- package/phantom.js +1009 -358
package/README.md
CHANGED
|
@@ -7,14 +7,14 @@ Phantom makes Git worktrees simple and intuitive, enabling you to run multiple t
|
|
|
7
7
|
## Installation
|
|
8
8
|
|
|
9
9
|
```bash
|
|
10
|
-
npm install -g @
|
|
10
|
+
npm install -g @phantompane/cli
|
|
11
11
|
```
|
|
12
12
|
|
|
13
13
|
## Documentation
|
|
14
14
|
|
|
15
15
|
For detailed documentation, examples, and advanced usage, please visit:
|
|
16
16
|
|
|
17
|
-
https://github.com/
|
|
17
|
+
https://github.com/phantompane/phantom
|
|
18
18
|
|
|
19
19
|
## License
|
|
20
20
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aku11i/phantom",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "6.1.0",
|
|
4
4
|
"description": "A powerful CLI tool for managing Git worktrees for parallel development",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"git",
|
|
@@ -12,13 +12,13 @@
|
|
|
12
12
|
"parallel",
|
|
13
13
|
"mcp"
|
|
14
14
|
],
|
|
15
|
-
"homepage": "https://github.com/
|
|
15
|
+
"homepage": "https://github.com/phantompane/phantom#readme",
|
|
16
16
|
"bugs": {
|
|
17
|
-
"url": "https://github.com/
|
|
17
|
+
"url": "https://github.com/phantompane/phantom/issues"
|
|
18
18
|
},
|
|
19
19
|
"repository": {
|
|
20
20
|
"type": "git",
|
|
21
|
-
"url": "git+https://github.com/
|
|
21
|
+
"url": "git+https://github.com/phantompane/phantom.git"
|
|
22
22
|
},
|
|
23
23
|
"license": "MIT",
|
|
24
24
|
"author": "aku11i",
|
|
@@ -35,4 +35,4 @@
|
|
|
35
35
|
"node": ">=22.0.0"
|
|
36
36
|
},
|
|
37
37
|
"dependencies": {}
|
|
38
|
-
}
|
|
38
|
+
}
|