@zipwire/zw 0.0.1 → 1.0.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 +6 -6
package/README.md
CHANGED
|
@@ -68,7 +68,7 @@ npx @zipwire/zw --help
|
|
|
68
68
|
npx @zipwire/zw activity list
|
|
69
69
|
```
|
|
70
70
|
|
|
71
|
-
The NPM distribution automatically installs the correct platform-specific binary
|
|
71
|
+
The NPM distribution uses a multi-package architecture that automatically installs the correct platform-specific binary. See [NPM_DISTRIBUTION.md](docs/NPM_DISTRIBUTION.md) for architecture details, troubleshooting, and maintainer workflows.
|
|
72
72
|
|
|
73
73
|
## Quick Start
|
|
74
74
|
|
package/package.json
CHANGED
|
@@ -1,16 +1,16 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@zipwire/zw",
|
|
3
|
-
"version": "0.0
|
|
3
|
+
"version": "1.0.0",
|
|
4
4
|
"description": "Zipwire CLI tool for time tracking and activity management",
|
|
5
5
|
"bin": {
|
|
6
6
|
"zw": "bin/cli.js"
|
|
7
7
|
},
|
|
8
8
|
"optionalDependencies": {
|
|
9
|
-
"@zipwire/zw-linux-amd64": "0.0
|
|
10
|
-
"@zipwire/zw-linux-arm64": "0.0
|
|
11
|
-
"@zipwire/zw-darwin-amd64": "0.0
|
|
12
|
-
"@zipwire/zw-darwin-arm64": "0.0
|
|
13
|
-
"@zipwire/zw-windows-amd64": "0.0
|
|
9
|
+
"@zipwire/zw-linux-amd64": "1.0.0",
|
|
10
|
+
"@zipwire/zw-linux-arm64": "1.0.0",
|
|
11
|
+
"@zipwire/zw-darwin-amd64": "1.0.0",
|
|
12
|
+
"@zipwire/zw-darwin-arm64": "1.0.0",
|
|
13
|
+
"@zipwire/zw-windows-amd64": "1.0.0"
|
|
14
14
|
},
|
|
15
15
|
"files": [
|
|
16
16
|
"bin/",
|