@getcolter/cli-darwin-x64 0.1.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/LICENSE +38 -0
  2. package/bin/colter +0 -0
  3. package/package.json +18 -0
package/LICENSE ADDED
@@ -0,0 +1,38 @@
1
+ Colter Proprietary License
2
+
3
+ Copyright (c) 2025-2026 Amberhill (https://amberhill.xyz). All rights reserved.
4
+
5
+ TERMS OF USE
6
+
7
+ 1. FREE USE. You may download, install, and use the Colter CLI ("Software")
8
+ free of charge for any lawful purpose, including commercial use.
9
+
10
+ 2. NO REDISTRIBUTION. You may not redistribute, sublicense, sell, or
11
+ otherwise transfer the Software or any portion of it to third parties,
12
+ except as installed via the official npm package or downloaded from
13
+ official distribution channels.
14
+
15
+ 3. NO MODIFICATION. You may not modify, reverse-engineer, decompile, or
16
+ create derivative works based on the Software.
17
+
18
+ 4. NO SOURCE CODE. The source code of the Software is proprietary and is
19
+ not provided under this license.
20
+
21
+ 5. TRADEMARKS. "Colter" and associated logos are trademarks of Amberhill.
22
+ You may not use these marks without prior written permission except to
23
+ refer to the Software.
24
+
25
+ 6. NO WARRANTY. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY
26
+ KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
27
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, AND NONINFRINGEMENT.
28
+
29
+ 7. LIMITATION OF LIABILITY. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
30
+ HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES, OR OTHER LIABILITY, WHETHER IN
31
+ AN ACTION OF CONTRACT, TORT, OR OTHERWISE, ARISING FROM, OUT OF, OR IN
32
+ CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
33
+
34
+ 8. TERMINATION. This license is effective until terminated. It will terminate
35
+ automatically if you fail to comply with any term. Upon termination, you
36
+ must destroy all copies of the Software.
37
+
38
+ For licensing inquiries: hello@amberhill.xyz
package/bin/colter ADDED
Binary file
package/package.json ADDED
@@ -0,0 +1,18 @@
1
+ {
2
+ "name": "@getcolter/cli-darwin-x64",
3
+ "version": "0.1.0",
4
+ "description": "Colter CLI binary for macOS Intel (x64)",
5
+ "license": "SEE LICENSE IN LICENSE",
6
+ "author": {
7
+ "name": "Amberhill",
8
+ "url": "https://amberhill.xyz"
9
+ },
10
+ "repository": {
11
+ "type": "git",
12
+ "url": "https://github.com/mfbahc/colter.git"
13
+ },
14
+ "os": ["darwin"],
15
+ "cpu": ["x64"],
16
+ "files": ["bin", "LICENSE"],
17
+ "preferUnplugged": true
18
+ }