@oven/bun-linux-aarch64 0.1.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 (3) hide show
  1. package/README.md +3 -0
  2. package/bin/bun +0 -0
  3. package/package.json +18 -0
package/README.md ADDED
@@ -0,0 +1,3 @@
1
+ # Bun
2
+
3
+ This is the Linux arm64 binary for Bun, a fast all-in-one JavaScript runtime. See https://github.com/oven-sh/bun for details.
package/bin/bun ADDED
Binary file
package/package.json ADDED
@@ -0,0 +1,18 @@
1
+ {
2
+ "name": "@oven/bun-linux-aarch64",
3
+ "version": "0.1.6",
4
+ "description": "The Linux arm64 binary for Bun, a fast all-in-one JavaScript runtime.",
5
+ "homepage": "https://bun.sh",
6
+ "repository": "https://github.com/oven-sh/bun",
7
+ "license": "MIT",
8
+ "preferUnplugged": true,
9
+ "engines": {
10
+ "node": ">=12"
11
+ },
12
+ "os": [
13
+ "linux"
14
+ ],
15
+ "cpu": [
16
+ "arm64"
17
+ ]
18
+ }