@kosli/cli-darwin-arm64 2.13.1-SNAPSHOT-b45c7e66 → 2.15.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.
Files changed (3) hide show
  1. package/README.md +11 -1
  2. package/bin/kosli +0 -0
  3. package/package.json +9 -1
package/README.md CHANGED
@@ -1 +1,11 @@
1
- This is the macOS ARM 64-bit binary for the Kosli CLI (Apple Silicon). See https://github.com/kosli-dev/cli for details.
1
+ # @kosli/cli-darwin-arm64
2
+
3
+ This is the macOS ARM64 platform binary for the Kosli CLI (Apple Silicon). **Do not install this package directly.**
4
+
5
+ Install the main package instead, which selects the right binary for your platform automatically:
6
+
7
+ ```sh
8
+ npm install -g @kosli/cli
9
+ ```
10
+
11
+ See the [Kosli CLI repository](https://github.com/kosli-dev/cli) for documentation and source code.
package/bin/kosli CHANGED
Binary file
package/package.json CHANGED
@@ -1,8 +1,13 @@
1
1
  {
2
2
  "name": "@kosli/cli-darwin-arm64",
3
- "version": "2.13.1-SNAPSHOT-b45c7e66",
3
+ "version": "2.15.0",
4
4
  "description": "macOS arm64 binary for @kosli/cli",
5
5
  "license": "MIT",
6
+ "repository": {
7
+ "type": "git",
8
+ "url": "git+https://github.com/kosli-dev/cli.git",
9
+ "directory": "npm/cli-darwin-arm64"
10
+ },
6
11
  "os": [
7
12
  "darwin"
8
13
  ],
@@ -15,6 +20,9 @@
15
20
  "files": [
16
21
  "bin/"
17
22
  ],
23
+ "scripts": {
24
+ "prepack": "test -f bin/kosli || (echo 'ERROR: bin/kosli is missing' && exit 1)"
25
+ },
18
26
  "publishConfig": {
19
27
  "registry": "https://registry.npmjs.org",
20
28
  "access": "public"