@jelou/cli-darwin-x64 0.2.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.
- package/LICENSE +25 -0
- package/bin/jelou +0 -0
- package/package.json +24 -0
package/LICENSE
ADDED
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
Copyright 2026 Jelou Inc. All rights reserved.
|
|
2
|
+
|
|
3
|
+
This software and associated documentation files (the "Software") are the
|
|
4
|
+
proprietary property of Jelou Inc. ("Jelou").
|
|
5
|
+
|
|
6
|
+
Permission is hereby granted to any person who obtains a copy of this Software
|
|
7
|
+
to use the Software solely for the purpose of interacting with services
|
|
8
|
+
provided by Jelou, subject to the following conditions:
|
|
9
|
+
|
|
10
|
+
1. You may not modify, merge, publish, distribute, sublicense, or sell copies
|
|
11
|
+
of the Software.
|
|
12
|
+
|
|
13
|
+
2. You may not reverse engineer, decompile, or disassemble the Software.
|
|
14
|
+
|
|
15
|
+
3. You may not use the Software to build a competing product or service.
|
|
16
|
+
|
|
17
|
+
4. The above copyright notice and this permission notice shall be included in
|
|
18
|
+
all copies or substantial portions of the Software.
|
|
19
|
+
|
|
20
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
21
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
22
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL JELOU
|
|
23
|
+
INC. BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
|
|
24
|
+
OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
|
|
25
|
+
SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
package/bin/jelou
ADDED
|
Binary file
|
package/package.json
ADDED
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@jelou/cli-darwin-x64",
|
|
3
|
+
"version": "0.2.0",
|
|
4
|
+
"description": "Jelou Functions CLI binary for macOS Intel",
|
|
5
|
+
"license": "SEE LICENSE IN LICENSE",
|
|
6
|
+
"repository": {
|
|
7
|
+
"type": "git",
|
|
8
|
+
"url": "https://github.com/JelouLatam/jelou-functions-api.git",
|
|
9
|
+
"directory": "packages/cli"
|
|
10
|
+
},
|
|
11
|
+
"os": [
|
|
12
|
+
"darwin"
|
|
13
|
+
],
|
|
14
|
+
"cpu": [
|
|
15
|
+
"x64"
|
|
16
|
+
],
|
|
17
|
+
"files": [
|
|
18
|
+
"bin/"
|
|
19
|
+
],
|
|
20
|
+
"preferUnplugged": true,
|
|
21
|
+
"publishConfig": {
|
|
22
|
+
"access": "public"
|
|
23
|
+
}
|
|
24
|
+
}
|