@reason-machines/cli 0.2.60 → 0.2.62
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 +16 -0
- package/README.md +41 -0
- package/THIRD_PARTY_NOTICES.txt +1340 -0
- package/bin/ara.exe +1 -1
- package/package.json +18 -14
- package/postinstall.mjs +2 -18
package/LICENSE
ADDED
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
Reason Machines CLI - license notice
|
|
2
|
+
Copyright (c) 2026 Reason Machines, Inc.
|
|
3
|
+
|
|
4
|
+
Reason CLI is proprietary software, not an open-source release.
|
|
5
|
+
Use is governed by the Reason Machines Terms of Service:
|
|
6
|
+
https://reasonmachines.com/terms-of-service
|
|
7
|
+
|
|
8
|
+
Those Terms grant a limited, non-exclusive, non-transferable, revocable
|
|
9
|
+
license to use the Service in accordance with the Terms, including use
|
|
10
|
+
for personal or commercial projects. This notice does not replace or
|
|
11
|
+
expand that agreement.
|
|
12
|
+
|
|
13
|
+
Third-party components remain governed by their respective licenses.
|
|
14
|
+
Nothing in this notice limits rights granted under those licenses.
|
|
15
|
+
See THIRD_PARTY_NOTICES.txt and licenses included alongside runtime files.
|
|
16
|
+
Licensing questions: contact@reasonmachines.com
|
package/README.md
ADDED
|
@@ -0,0 +1,41 @@
|
|
|
1
|
+
# Reason Machines CLI
|
|
2
|
+
|
|
3
|
+
## Install
|
|
4
|
+
|
|
5
|
+
~~~sh
|
|
6
|
+
npm install -g @reason-machines/cli
|
|
7
|
+
reason --version
|
|
8
|
+
reason login
|
|
9
|
+
~~~
|
|
10
|
+
|
|
11
|
+
Requires Node.js 18 or newer for npm installation. Both reason and the compatibility alias ara are installed.
|
|
12
|
+
|
|
13
|
+
Platforms: macOS Apple Silicon and Intel; Linux ARM64 and x64 with glibc or musl; Windows ARM64 and x64.
|
|
14
|
+
|
|
15
|
+
## Use
|
|
16
|
+
|
|
17
|
+
~~~sh
|
|
18
|
+
reason --help
|
|
19
|
+
reason session --help
|
|
20
|
+
reason worker --help
|
|
21
|
+
~~~
|
|
22
|
+
|
|
23
|
+
Cloud commands require sign-in. Local device work is optional and requires explicit setup and permissions.
|
|
24
|
+
|
|
25
|
+
## Update
|
|
26
|
+
|
|
27
|
+
~~~sh
|
|
28
|
+
npm install -g @reason-machines/cli@latest
|
|
29
|
+
~~~
|
|
30
|
+
|
|
31
|
+
To pin a release, append its version, for example @reason-machines/cli@0.2.60.
|
|
32
|
+
|
|
33
|
+
## Support and licensing
|
|
34
|
+
|
|
35
|
+
- Website: https://reasonmachines.com
|
|
36
|
+
- Documentation: https://docs.reasonmachines.com
|
|
37
|
+
- Support: https://reasonmachines.com/contact
|
|
38
|
+
|
|
39
|
+
Reason CLI is proprietary and governed by the Terms of Service linked in LICENSE.
|
|
40
|
+
Third-party components have separate licenses documented in THIRD_PARTY_NOTICES.txt.
|
|
41
|
+
The linked source repository is private. Its metadata identifies the GitHub OIDC publisher; it does not grant source access.
|