@keelcode-ai/keelcode 0.1.0-darwin-arm64
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/keelcode +0 -0
- package/bin/rg +0 -0
- package/package.json +21 -0
package/LICENSE
ADDED
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
Keelcode CLI Proprietary License
|
|
2
|
+
|
|
3
|
+
Copyright (c) 2026 Keelcode. All rights reserved.
|
|
4
|
+
|
|
5
|
+
Subject to Keelcode's applicable service terms, Keelcode grants you a limited,
|
|
6
|
+
revocable, non-exclusive, non-transferable license to install and run an
|
|
7
|
+
unmodified copy of this software solely to access and use the Keelcode service.
|
|
8
|
+
|
|
9
|
+
You may not copy, modify, adapt, translate, create derivative works from,
|
|
10
|
+
redistribute, sublicense, sell, rent, lease, host, publish, or otherwise make
|
|
11
|
+
this software available to another person. You may not reverse engineer,
|
|
12
|
+
decompile, or disassemble this software except to the limited extent that such
|
|
13
|
+
a restriction is prohibited by applicable law.
|
|
14
|
+
|
|
15
|
+
No rights are granted to Keelcode's source code, service infrastructure,
|
|
16
|
+
models, trademarks, or other intellectual property. Third-party components
|
|
17
|
+
remain subject to their respective licenses.
|
|
18
|
+
|
|
19
|
+
This software is provided "as is" and "as available", without warranties of
|
|
20
|
+
any kind, to the maximum extent permitted by law. Keelcode is not liable for
|
|
21
|
+
indirect, incidental, special, consequential, or punitive damages arising from
|
|
22
|
+
its use.
|
|
23
|
+
|
|
24
|
+
Keelcode may terminate this license if you breach these terms. Upon
|
|
25
|
+
termination, you must stop using and delete all copies of the software.
|
package/bin/keelcode
ADDED
|
Binary file
|
package/bin/rg
ADDED
|
Binary file
|
package/package.json
ADDED
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@keelcode-ai/keelcode",
|
|
3
|
+
"version": "0.1.0-darwin-arm64",
|
|
4
|
+
"description": "Native Keelcode executable for darwin-arm64. Install the keelcode package instead.",
|
|
5
|
+
"license": "SEE LICENSE IN LICENSE",
|
|
6
|
+
"homepage": "https://keelcode.ai",
|
|
7
|
+
"publishConfig": {
|
|
8
|
+
"access": "public"
|
|
9
|
+
},
|
|
10
|
+
"os": [
|
|
11
|
+
"darwin"
|
|
12
|
+
],
|
|
13
|
+
"cpu": [
|
|
14
|
+
"arm64"
|
|
15
|
+
],
|
|
16
|
+
"files": [
|
|
17
|
+
"bin/keelcode",
|
|
18
|
+
"bin/rg",
|
|
19
|
+
"LICENSE"
|
|
20
|
+
]
|
|
21
|
+
}
|