@secure-exec/v8-linux-arm64-gnu 0.1.1-rc.1

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 +9 -0
  2. package/install.js +2 -0
  3. package/package.json +23 -0
package/README.md ADDED
@@ -0,0 +1,9 @@
1
+ # @secure-exec/v8-linux-arm64-gnu
2
+
3
+ Linux arm64 (glibc) binary for [@secure-exec/v8](https://secureexec.dev).
4
+
5
+ This package is installed automatically by `@secure-exec/v8` as a platform-specific optional dependency.
6
+
7
+ - Website: https://secureexec.dev
8
+ - Docs: https://secureexec.dev/docs
9
+ - GitHub: https://github.com/rivet-dev/secure-exec
package/install.js ADDED
@@ -0,0 +1,2 @@
1
+ console.error("@secure-exec/v8-linux-arm64-gnu is not yet supported. Only linux-x64 is available.");
2
+ process.exit(1);
package/package.json ADDED
@@ -0,0 +1,23 @@
1
+ {
2
+ "name": "@secure-exec/v8-linux-arm64-gnu",
3
+ "version": "0.1.1-rc.1",
4
+ "license": "Apache-2.0",
5
+ "os": [
6
+ "linux"
7
+ ],
8
+ "cpu": [
9
+ "arm64"
10
+ ],
11
+ "main": "install.js",
12
+ "files": [
13
+ "install.js"
14
+ ],
15
+ "scripts": {
16
+ "postinstall": "node install.js"
17
+ },
18
+ "repository": {
19
+ "type": "git",
20
+ "url": "https://github.com/rivet-dev/secure-exec.git",
21
+ "directory": "crates/v8-runtime/npm/linux-arm64-gnu"
22
+ }
23
+ }