@checkdk/cli-darwin-arm64 0.3.0 → 0.3.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.
Files changed (3) hide show
  1. package/README.md +28 -0
  2. package/bin/checkdk +0 -0
  3. package/package.json +4 -3
package/README.md ADDED
@@ -0,0 +1,28 @@
1
+ # @checkdk/cli-darwin-arm64
2
+
3
+ macOS arm64 (Apple Silicon) platform binary for [`@checkdk/cli`](https://www.npmjs.com/package/@checkdk/cli).
4
+
5
+ This package is installed automatically as an optional dependency — you should not install it directly.
6
+
7
+ ## Install the CLI
8
+
9
+ ```bash
10
+ npm install -g @checkdk/cli
11
+ ```
12
+
13
+ ## Usage
14
+
15
+ ```bash
16
+ checkdk --help
17
+ checkdk auth login
18
+ checkdk playground -f docker-compose.yml
19
+ checkdk predict --cpu 85 --memory 78
20
+ ```
21
+
22
+ See the [@checkdk/cli README](https://www.npmjs.com/package/@checkdk/cli) for full documentation.
23
+
24
+ ## Links
25
+
26
+ - Main package: [@checkdk/cli](https://www.npmjs.com/package/@checkdk/cli)
27
+ - GitHub: [radheshpai87/checkDK](https://github.com/radheshpai87/checkDK)
28
+ - Website: [checkdk.app](https://checkdk.app)
package/bin/checkdk CHANGED
Binary file
package/package.json CHANGED
@@ -1,11 +1,11 @@
1
1
  {
2
2
  "name": "@checkdk/cli-darwin-arm64",
3
- "version": "0.3.0",
3
+ "version": "0.3.2",
4
4
  "description": "macOS arm64 (Apple Silicon) binary for @checkdk/cli",
5
5
  "license": "MIT",
6
6
  "repository": {
7
7
  "type": "git",
8
- "url": "https://github.com/your-org/checkDK_AWS"
8
+ "url": "https://github.com/radheshpai87/checkDK"
9
9
  },
10
10
  "os": [
11
11
  "darwin"
@@ -14,6 +14,7 @@
14
14
  "arm64"
15
15
  ],
16
16
  "files": [
17
- "bin/"
17
+ "bin/",
18
+ "README.md"
18
19
  ]
19
20
  }