@nikero/updep 0.1.9 → 0.1.10
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 +75 -0
- package/package.json +7 -7
package/README.md
ADDED
|
@@ -0,0 +1,75 @@
|
|
|
1
|
+
# updep
|
|
2
|
+
|
|
3
|
+
[](https://github.com/snikoletopoulos/updep/actions/workflows/ci.yml)
|
|
4
|
+
[](https://github.com/snikoletopoulos/updep)
|
|
5
|
+
[](LICENSE)
|
|
6
|
+
[](https://goreportcard.com/report/github.com/snikoletopoulos/updep)
|
|
7
|
+
|
|
8
|
+
> **Note**: This project is currently under active development. Features and APIs may change.
|
|
9
|
+
|
|
10
|
+
Interactive TUI for updating JavaScript dependencies. Works with npm, yarn, pnpm, and bun.
|
|
11
|
+
|
|
12
|
+
## Demo
|
|
13
|
+
|
|
14
|
+
> TODO: Add demo video
|
|
15
|
+
|
|
16
|
+
## Features
|
|
17
|
+
|
|
18
|
+
- Interactive terminal UI for dependency updates
|
|
19
|
+
- Review and select which packages to update
|
|
20
|
+
- Compare current, wanted, and latest versions
|
|
21
|
+
- Support for multiple package managers (npm support available, yarn/pnpm/bun coming soon)
|
|
22
|
+
- Built with Go for fast performance
|
|
23
|
+
|
|
24
|
+
## Installation
|
|
25
|
+
|
|
26
|
+
### From Source
|
|
27
|
+
|
|
28
|
+
```bash
|
|
29
|
+
git clone https://github.com/nikero41/updep.git
|
|
30
|
+
cd updep
|
|
31
|
+
make install
|
|
32
|
+
```
|
|
33
|
+
|
|
34
|
+
## Usage
|
|
35
|
+
|
|
36
|
+
Navigate to your JavaScript project directory and run:
|
|
37
|
+
|
|
38
|
+
```bash
|
|
39
|
+
updep
|
|
40
|
+
```
|
|
41
|
+
|
|
42
|
+
### Keybindings
|
|
43
|
+
|
|
44
|
+
- `↑/↓` or `j/k` - Navigate between packages
|
|
45
|
+
- `Space` - Toggle package selection
|
|
46
|
+
- `w` - Select wanted version
|
|
47
|
+
- `l` - Select latest version
|
|
48
|
+
- `q` or `Ctrl+C` - Quit
|
|
49
|
+
|
|
50
|
+
## Requirements
|
|
51
|
+
|
|
52
|
+
- Go 1.25+ (for building from source)
|
|
53
|
+
- npm, yarn, pnpm, or bun installed
|
|
54
|
+
- A JavaScript project with a `package.json` file
|
|
55
|
+
|
|
56
|
+
## Roadmap
|
|
57
|
+
|
|
58
|
+
- [ ] npm support
|
|
59
|
+
- [ ] yarn support
|
|
60
|
+
- [ ] pnpm support
|
|
61
|
+
- [ ] bun support
|
|
62
|
+
- [ ] Configuration file support
|
|
63
|
+
- [ ] Custom color themes
|
|
64
|
+
|
|
65
|
+
## Contributing
|
|
66
|
+
|
|
67
|
+
Contributions are welcome! Please check out our [Contributing Guide](CONTRIBUTING.md) for guidelines.
|
|
68
|
+
|
|
69
|
+
## License
|
|
70
|
+
|
|
71
|
+
MIT License - see [LICENSE](LICENSE) for details
|
|
72
|
+
|
|
73
|
+
## Acknowledgments
|
|
74
|
+
|
|
75
|
+
Built with [Bubble Tea](https://github.com/charmbracelet/bubbletea) and [Lip Gloss](https://github.com/charmbracelet/lipgloss)
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@nikero/updep",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.10",
|
|
4
4
|
"description": "Interactive TUI for updating JavaScript dependencies",
|
|
5
5
|
"author": "Stavros Nikolopoulos <snikoletopoulos@hotmail.com>",
|
|
6
6
|
"license": "MIT",
|
|
@@ -27,12 +27,12 @@
|
|
|
27
27
|
"postinstall": "node install.js"
|
|
28
28
|
},
|
|
29
29
|
"optionalDependencies": {
|
|
30
|
-
"@nikero/updep-darwin-arm64": "0.1.
|
|
31
|
-
"@nikero/updep-darwin-x64": "0.1.
|
|
32
|
-
"@nikero/updep-linux-arm64": "0.1.
|
|
33
|
-
"@nikero/updep-linux-x64": "0.1.
|
|
34
|
-
"@nikero/updep-win32-arm64": "0.1.
|
|
35
|
-
"@nikero/updep-win32-x64": "0.1.
|
|
30
|
+
"@nikero/updep-darwin-arm64": "0.1.10",
|
|
31
|
+
"@nikero/updep-darwin-x64": "0.1.10",
|
|
32
|
+
"@nikero/updep-linux-arm64": "0.1.10",
|
|
33
|
+
"@nikero/updep-linux-x64": "0.1.10",
|
|
34
|
+
"@nikero/updep-win32-arm64": "0.1.10",
|
|
35
|
+
"@nikero/updep-win32-x64": "0.1.10"
|
|
36
36
|
},
|
|
37
37
|
"engines": {
|
|
38
38
|
"node": ">=18"
|