@jelou/cli-darwin-x64 1.8.3 → 1.8.4
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/LICENSE +4 -0
- package/README.md +11 -0
- package/bin/jelou +0 -0
- package/package.json +8 -5
package/LICENSE
CHANGED
|
@@ -23,3 +23,7 @@ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL JELOU
|
|
|
23
23
|
INC. BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
|
|
24
24
|
OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
|
|
25
25
|
SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
26
|
+
|
|
27
|
+
Trademarks. "Jelou" and the Jelou logo are trademarks of Jelou Inc. This
|
|
28
|
+
license does not grant permission to use them, except as required for
|
|
29
|
+
reasonable and customary use in describing the origin of the Software.
|
package/README.md
ADDED
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
# @jelou/cli-darwin-x64
|
|
2
|
+
|
|
3
|
+
Precompiled `@jelou/cli` binary for **macOS Intel**.
|
|
4
|
+
|
|
5
|
+
This package is installed automatically by `@jelou/cli` — you should not depend on it directly.
|
|
6
|
+
|
|
7
|
+
```bash
|
|
8
|
+
npm install -g @jelou/cli
|
|
9
|
+
```
|
|
10
|
+
|
|
11
|
+
See the [main package](https://www.npmjs.com/package/@jelou/cli) for documentation.
|
package/bin/jelou
CHANGED
|
Binary file
|
package/package.json
CHANGED
|
@@ -1,12 +1,14 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@jelou/cli-darwin-x64",
|
|
3
|
-
"version": "1.8.
|
|
4
|
-
"description": "
|
|
3
|
+
"version": "1.8.4",
|
|
4
|
+
"description": "@jelou/cli binary for macOS Intel",
|
|
5
|
+
"author": "Jelou Inc. (https://jelou.ai)",
|
|
5
6
|
"license": "SEE LICENSE IN LICENSE",
|
|
7
|
+
"homepage": "https://jelou.ai",
|
|
8
|
+
"bugs": "https://github.com/JelouLatam/jelou-cli/issues",
|
|
6
9
|
"repository": {
|
|
7
10
|
"type": "git",
|
|
8
|
-
"url": "https://github.com/JelouLatam/jelou-
|
|
9
|
-
"directory": "packages/cli"
|
|
11
|
+
"url": "https://github.com/JelouLatam/jelou-cli.git"
|
|
10
12
|
},
|
|
11
13
|
"os": [
|
|
12
14
|
"darwin"
|
|
@@ -15,7 +17,8 @@
|
|
|
15
17
|
"x64"
|
|
16
18
|
],
|
|
17
19
|
"files": [
|
|
18
|
-
"bin/"
|
|
20
|
+
"bin/",
|
|
21
|
+
"README.md"
|
|
19
22
|
],
|
|
20
23
|
"preferUnplugged": true,
|
|
21
24
|
"publishConfig": {
|