@knowledge-cli/cli-darwin-x64 1.0.0-rc.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 ADDED
@@ -0,0 +1,3 @@
1
+ # @knowledge-cli/cli-darwin-x64
2
+
3
+ Native binary for macOS x64. Installed via optionalDependencies of `@knowledge-cli/cli`.
package/bin/knowledge ADDED
Binary file
package/index.js ADDED
@@ -0,0 +1,5 @@
1
+ 'use strict';
2
+ const path = require('path');
3
+ module.exports = {
4
+ binaryPath: path.join(__dirname, 'bin', 'knowledge'),
5
+ };
package/package.json ADDED
@@ -0,0 +1,16 @@
1
+ {
2
+ "name": "@knowledge-cli/cli-darwin-x64",
3
+ "version": "1.0.0-rc.2",
4
+ "description": "Native knowledge CLI binary for macOS x64",
5
+ "os": [
6
+ "darwin"
7
+ ],
8
+ "cpu": [
9
+ "x64"
10
+ ],
11
+ "main": "./index.js",
12
+ "files": [
13
+ "index.js",
14
+ "bin/"
15
+ ]
16
+ }