timeman-cli 0.5.0 → 0.6.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 +1 -1
- package/package.json +8 -8
package/README.md
CHANGED
|
@@ -43,7 +43,7 @@ uv tool install time-manager
|
|
|
43
43
|
curl -fsSL https://raw.githubusercontent.com/rehanhaider/time-manager/main/install.sh | bash
|
|
44
44
|
```
|
|
45
45
|
|
|
46
|
-
Every method installs the `tm`
|
|
46
|
+
Every method installs the same two commands, `tm` and its long form `timeman`, pointing at one binary. Package names differ by registry for historical reasons: `timeman-cli` on npm, `time-manager` on PyPI.
|
|
47
47
|
|
|
48
48
|
Supported platforms: Linux x64/arm64 (glibc and musl), macOS x64/arm64, Windows x64 (via npm/bun).
|
|
49
49
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "timeman-cli",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.6.0",
|
|
4
4
|
"description": "A terminal based stopwatch and countdown timer",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"repository": {
|
|
@@ -25,12 +25,12 @@
|
|
|
25
25
|
"bin"
|
|
26
26
|
],
|
|
27
27
|
"optionalDependencies": {
|
|
28
|
-
"timeman-linux-x64": "0.
|
|
29
|
-
"timeman-linux-arm64": "0.
|
|
30
|
-
"timeman-linux-x64-musl": "0.
|
|
31
|
-
"timeman-linux-arm64-musl": "0.
|
|
32
|
-
"timeman-darwin-x64": "0.
|
|
33
|
-
"timeman-darwin-arm64": "0.
|
|
34
|
-
"timeman-windows-x64": "0.
|
|
28
|
+
"timeman-linux-x64": "0.6.0",
|
|
29
|
+
"timeman-linux-arm64": "0.6.0",
|
|
30
|
+
"timeman-linux-x64-musl": "0.6.0",
|
|
31
|
+
"timeman-linux-arm64-musl": "0.6.0",
|
|
32
|
+
"timeman-darwin-x64": "0.6.0",
|
|
33
|
+
"timeman-darwin-arm64": "0.6.0",
|
|
34
|
+
"timeman-windows-x64": "0.6.0"
|
|
35
35
|
}
|
|
36
36
|
}
|