peakurl 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.
- package/README.md +4 -2
- package/package.json +8 -8
package/README.md
CHANGED
|
@@ -121,13 +121,15 @@ If you need the raw payload:
|
|
|
121
121
|
peakurl status --json
|
|
122
122
|
```
|
|
123
123
|
|
|
124
|
-
Download and extract the
|
|
124
|
+
Download, verify, and extract the current PeakURL core package into the current directory:
|
|
125
125
|
|
|
126
126
|
```bash
|
|
127
127
|
peakurl core download
|
|
128
128
|
```
|
|
129
129
|
|
|
130
|
-
If the current directory already contains
|
|
130
|
+
The command checks the published release checksum before extracting files. If the current directory already contains release-managed files, the command stops by default.
|
|
131
|
+
|
|
132
|
+
Use `--force` only when you intentionally want those files replaced:
|
|
131
133
|
|
|
132
134
|
```bash
|
|
133
135
|
peakurl core download --force
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "peakurl",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.1",
|
|
4
4
|
"description": "Official CLI for creating, listing, and managing PeakURL short links from the terminal",
|
|
5
5
|
"homepage": "https://peakurl.org",
|
|
6
6
|
"bugs": {
|
|
@@ -47,15 +47,15 @@
|
|
|
47
47
|
"registry": "https://registry.npmjs.org/"
|
|
48
48
|
},
|
|
49
49
|
"dependencies": {
|
|
50
|
-
"commander": "^
|
|
51
|
-
"env-paths": "^
|
|
50
|
+
"commander": "^15.0.0",
|
|
51
|
+
"env-paths": "^4.0.0"
|
|
52
52
|
},
|
|
53
53
|
"devDependencies": {
|
|
54
|
-
"@types/node": "^
|
|
55
|
-
"prettier": "^3.
|
|
56
|
-
"tsup": "^8.5.
|
|
57
|
-
"tsx": "^4.
|
|
58
|
-
"typescript": "^
|
|
54
|
+
"@types/node": "^25.9.1",
|
|
55
|
+
"prettier": "^3.8.3",
|
|
56
|
+
"tsup": "^8.5.1",
|
|
57
|
+
"tsx": "^4.22.4",
|
|
58
|
+
"typescript": "^6.0.3"
|
|
59
59
|
},
|
|
60
60
|
"license": "MIT"
|
|
61
61
|
}
|