@elaraai/east-c-cli-darwin-arm64 0.0.0 → 1.0.6

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 (4) hide show
  1. package/LICENSE.md +54 -0
  2. package/README.md +19 -1
  3. package/east-c +0 -0
  4. package/package.json +21 -3
package/LICENSE.md ADDED
@@ -0,0 +1,54 @@
1
+ # Business Source License 1.1
2
+
3
+ Copyright (c) 2025 Elara AI Pty Ltd
4
+
5
+ ## License
6
+
7
+ **Licensor:** Elara AI Pty Ltd
8
+
9
+ **Licensed Work:** east-c-cli (CLI runner)
10
+
11
+ **Change Date:** Four years from the date of each release
12
+
13
+ **Change License:** AGPL-3.0
14
+
15
+ ## Terms
16
+
17
+ The Licensed Work is provided under the terms of the Business Source License 1.1 as detailed below.
18
+
19
+ ### Grant of Rights
20
+
21
+ The Licensor grants you the right to copy, modify, create derivative works, redistribute, and make non-production use of the Licensed Work.
22
+
23
+ ### Production Use Limitation
24
+
25
+ **"Production Use"** means any use by or on behalf of a for-profit entity, other than for evaluation, testing, or development purposes.
26
+
27
+ Production Use requires a separate commercial license from the Licensor.
28
+
29
+ ### Change Date
30
+
31
+ On the Change Date (four years after each release), the Licensed Work will be made available under the Change License (AGPL-3.0).
32
+
33
+ ### No Warranty
34
+
35
+ THE LICENSED WORK IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND. THE LICENSOR DISCLAIMS ALL WARRANTIES, EXPRESS OR IMPLIED, INCLUDING WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE.
36
+
37
+ ### Package-Specific Licenses
38
+
39
+ Individual packages within this repository may have different licensing terms. See the LICENSE.md file in each package directory for details.
40
+
41
+ ## Commercial Licensing
42
+
43
+ To obtain a commercial license for Production Use, contact:
44
+
45
+ **Email:** support@elara.ai
46
+ **Website:** https://elaraai.com
47
+
48
+ ## Governing Law
49
+
50
+ This license is governed by the laws of New South Wales, Australia.
51
+
52
+ ---
53
+
54
+ *Elara AI Pty Ltd*
package/README.md CHANGED
@@ -1 +1,19 @@
1
- Placeholder for @elaraai/east-c-cli-darwin-arm64. Reserved name; real package published by the East release pipeline.
1
+ # @elaraai/east-c-cli-darwin-arm64
2
+
3
+ > Pre-built `east-c` native binary for `darwin-arm64` (version 1.0.6).
4
+
5
+ This package contains a single platform-specific binary plus a minimal manifest. It is published as an **optional dependency** of [`@elaraai/east-c-cli`](https://www.npmjs.com/package/@elaraai/east-c-cli) and gated on the host's `os` / `cpu` so npm installs only the matching one. There is no public API — install `@elaraai/east-c-cli` instead and let it resolve this package automatically.
6
+
7
+ The launcher script ([`@elaraai/east-c-cli`](https://www.npmjs.com/package/@elaraai/east-c-cli)'s `bin/east-c.mjs`) locates this package via `require.resolve` and spawns the binary with the original argv.
8
+
9
+ ## Source
10
+
11
+ Native source: [`libs/east-c`](https://github.com/elaraai/east-workspace/tree/main/libs/east-c).
12
+
13
+ ## License
14
+
15
+ [Business Source License 1.1](LICENSE.md). Production use by for-profit entities requires a commercial license — contact support@elara.ai.
16
+
17
+ ---
18
+
19
+ *Developed by [Elara AI Pty Ltd](https://elaraai.com/).*
package/east-c ADDED
Binary file
package/package.json CHANGED
@@ -1,7 +1,25 @@
1
1
  {
2
2
  "name": "@elaraai/east-c-cli-darwin-arm64",
3
- "version": "0.0.0",
4
- "description": "Name placeholder reserved for the East C runtime npm distribution. Real binaries are published by the East release pipeline; do not depend on this 0.0.0 placeholder.",
3
+ "version": "1.0.6",
4
+ "description": "east-c native binary for darwin-arm64 installed automatically as an optionalDependency of @elaraai/east-c-cli.",
5
5
  "license": "BUSL-1.1",
6
- "private": false
6
+ "repository": {
7
+ "type": "git",
8
+ "url": "git+https://github.com/elaraai/east-workspace.git",
9
+ "directory": "libs/east-c/packages/east-c-cli"
10
+ },
11
+ "os": [
12
+ "darwin"
13
+ ],
14
+ "cpu": [
15
+ "arm64"
16
+ ],
17
+ "bin": {
18
+ "east-c": "./east-c"
19
+ },
20
+ "files": [
21
+ "east-c*",
22
+ "README.md",
23
+ "LICENSE.md"
24
+ ]
7
25
  }