rari-linux-arm64 0.8.3 → 0.8.5

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 +21 -0
  2. package/README.md +59 -0
  3. package/bin/rari +0 -0
  4. package/package.json +3 -1
package/LICENSE ADDED
@@ -0,0 +1,21 @@
1
+ MIT License
2
+
3
+ Copyright (c) 2025-present Ryan Skinner
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in all
13
+ copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
+ SOFTWARE.
package/README.md ADDED
@@ -0,0 +1,59 @@
1
+ # rari-linux-arm64
2
+
3
+ > Platform-specific binary for rari on Linux ARM64
4
+
5
+ This package contains the native Linux ARM64 binary for [rari](https://github.com/rari-build/rari), a high-performance React Server Components framework powered by Rust.
6
+
7
+ ## Platform Support
8
+
9
+ - **Operating System:** Linux
10
+ - **Architecture:** ARM64
11
+ - **Target:** ARM64/aarch64 Linux systems
12
+
13
+ ## Installation
14
+
15
+ This package is automatically installed as an optional dependency when you install the main \`rari\` package:
16
+
17
+ \`\`\`bash
18
+ npm install rari
19
+ \`\`\`
20
+
21
+ You typically don't need to install this package directly. The main \`rari\` package will automatically download the correct binary for your platform.
22
+
23
+ ## Usage
24
+
25
+ This package is used internally by the \`rari\` CLI. After installing \`rari\`, you can use it directly:
26
+
27
+ \`\`\`bash
28
+ # Development server
29
+ npx rari dev
30
+
31
+ # Production build
32
+ npx rari build
33
+
34
+ # Start production server
35
+ npx rari start
36
+ \`\`\`
37
+
38
+ ### Quick Start
39
+
40
+ Create a new rari application:
41
+
42
+ \`\`\`bash
43
+ npm create rari-app@latest my-app
44
+ cd my-app
45
+ npm run dev
46
+ \`\`\`
47
+
48
+ Visit [rari.build](https://rari.build) for complete documentation.
49
+
50
+ ## Links
51
+
52
+ - **Documentation:** [rari.build/docs](https://rari.build/docs)
53
+ - **GitHub:** [github.com/rari-build/rari](https://github.com/rari-build/rari)
54
+ - **Discord:** [Join our community](https://discord.gg/GSh2Ak3b8Q)
55
+ - **npm:** [npmjs.com/package/rari](https://www.npmjs.com/package/rari)
56
+
57
+ ## License
58
+
59
+ MIT License - see [LICENSE](https://github.com/rari-build/rari/blob/main/LICENSE) for details.
package/bin/rari CHANGED
Binary file
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "rari-linux-arm64",
3
3
  "type": "module",
4
- "version": "0.8.3",
4
+ "version": "0.8.5",
5
5
  "description": "Runtime Accelerated Rendering Infrastructure (Linux ARM64 binary)",
6
6
  "author": "Ryan Skinner",
7
7
  "license": "MIT",
@@ -34,6 +34,8 @@
34
34
  "rari": "./bin/rari"
35
35
  },
36
36
  "files": [
37
+ "LICENSE",
38
+ "README.md",
37
39
  "bin/rari"
38
40
  ],
39
41
  "engines": {