syncpack-darwin-arm64 14.0.0-alpha.16 → 14.0.0-alpha.18
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 +19 -0
- package/bin/syncpack +0 -0
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -144,6 +144,25 @@ syncpack list --help
|
|
|
144
144
|
syncpack list -h
|
|
145
145
|
```
|
|
146
146
|
|
|
147
|
+
### [json](https://jamiemason.github.io/syncpack/command/json)
|
|
148
|
+
|
|
149
|
+
Output the state of every instance of every dependency as a JSON object, one per line. This command is best used with tools like [`jq`](https://jqlang.org/) for filtering and processing.
|
|
150
|
+
|
|
151
|
+
#### Examples
|
|
152
|
+
|
|
153
|
+
```bash
|
|
154
|
+
# Output all dependencies as JSON
|
|
155
|
+
syncpack json
|
|
156
|
+
# Output only AWS SDK dependencies
|
|
157
|
+
syncpack json --dependencies '@aws-sdk/**'
|
|
158
|
+
# Count dependencies by type
|
|
159
|
+
syncpack json | jq -r '.dependencyType' | sort | uniq -c
|
|
160
|
+
# See more examples
|
|
161
|
+
syncpack json --help
|
|
162
|
+
# See a short summary of options
|
|
163
|
+
syncpack json -h
|
|
164
|
+
```
|
|
165
|
+
|
|
147
166
|
## Badges
|
|
148
167
|
|
|
149
168
|
- [](https://ko-fi.com/C0C4PY4P)
|
package/bin/syncpack
CHANGED
|
Binary file
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "syncpack-darwin-arm64",
|
|
3
3
|
"description": "Rust Binary for darwin arm64",
|
|
4
|
-
"version": "14.0.0-alpha.
|
|
4
|
+
"version": "14.0.0-alpha.18",
|
|
5
5
|
"author": "Jamie Mason <jamie@foldleft.io> (https://github.com/JamieMason)",
|
|
6
6
|
"bugs": "https://github.com/JamieMason/syncpack/issues",
|
|
7
7
|
"funding": "https://github.com/sponsors/JamieMason",
|