@qualitymd/cli-darwin-arm64 0.2.0 → 0.2.2
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 +23 -0
- package/bin/qualitymd +0 -0
- package/package.json +12 -2
package/README.md
ADDED
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
# @qualitymd/cli-darwin-arm64
|
|
2
|
+
|
|
3
|
+
Native `qualitymd` binary package for macOS arm64.
|
|
4
|
+
|
|
5
|
+
This package is installed automatically by the user-facing `quality.md` npm
|
|
6
|
+
package. Most users should not install it directly.
|
|
7
|
+
|
|
8
|
+
Install the CLI with:
|
|
9
|
+
|
|
10
|
+
```sh
|
|
11
|
+
npm install -g quality.md
|
|
12
|
+
```
|
|
13
|
+
|
|
14
|
+
or run it with:
|
|
15
|
+
|
|
16
|
+
```sh
|
|
17
|
+
npx quality.md --version
|
|
18
|
+
```
|
|
19
|
+
|
|
20
|
+
See the main package and project docs:
|
|
21
|
+
|
|
22
|
+
- npm: https://www.npmjs.com/package/quality.md
|
|
23
|
+
- GitHub: https://github.com/qualitymd/quality.md
|
package/bin/qualitymd
CHANGED
|
Binary file
|
package/package.json
CHANGED
|
@@ -1,12 +1,22 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@qualitymd/cli-darwin-arm64",
|
|
3
|
-
"version": "0.2.
|
|
4
|
-
"description": "
|
|
3
|
+
"version": "0.2.2",
|
|
4
|
+
"description": "Native qualitymd binary for macOS arm64. Installed automatically by quality.md.",
|
|
5
|
+
"homepage": "https://getquality.md",
|
|
6
|
+
"keywords": [
|
|
7
|
+
"qualitymd",
|
|
8
|
+
"quality.md",
|
|
9
|
+
"cli",
|
|
10
|
+
"native-binary"
|
|
11
|
+
],
|
|
5
12
|
"license": "MIT",
|
|
6
13
|
"repository": {
|
|
7
14
|
"type": "git",
|
|
8
15
|
"url": "https://github.com/qualitymd/quality.md.git"
|
|
9
16
|
},
|
|
17
|
+
"bugs": {
|
|
18
|
+
"url": "https://github.com/qualitymd/quality.md/issues"
|
|
19
|
+
},
|
|
10
20
|
"os": [
|
|
11
21
|
"darwin"
|
|
12
22
|
],
|