@titanpl/engine-darwin-arm64 1.4.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 (2) hide show
  1. package/README.md +13 -0
  2. package/package.json +10 -0
package/README.md ADDED
@@ -0,0 +1,13 @@
1
+ # @titanpl/engine-darwin-arm64
2
+
3
+ The macOS ARM64 pre-compiled native engine binary for Titan Planet.
4
+
5
+ ## What it works (What it does)
6
+ This package is the compiled core Rust + Axum server embedded with the Boa JavaScript runtime. It is specifically built for Apple Silicon (ARM64) macOS devices.
7
+
8
+ ## How it works
9
+ This package is listed as an "optional dependency" in `@titanpl/cli`. During package installation, your package manager identifies the OS and automatically downloads this binary if it matches `darwin` + `arm64`. You do not need to install it directly.
10
+
11
+ When you run `titan start`, the CLI locates this binary and executes it as your web server.
12
+
13
+ **Important Note:** Currently, Titan Planet and its entire package ecosystem are only for Windows. The Linux and macOS versions are in development (dev only) for the new architecture and will be launched later.
package/package.json ADDED
@@ -0,0 +1,10 @@
1
+ {
2
+ "name": "@titanpl/engine-darwin-arm64",
3
+ "version": "1.4.0",
4
+ "os": [
5
+ "darwin"
6
+ ],
7
+ "cpu": [
8
+ "arm64"
9
+ ]
10
+ }