@rev-dep/darwin-arm64 2.0.0-alpha-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 (3) hide show
  1. package/Readme.md +1 -0
  2. package/bin/rev-dep +0 -0
  3. package/package.json +23 -0
package/Readme.md ADDED
@@ -0,0 +1 @@
1
+ The MacOS 64-bit arm binary for rev-dep v2
package/bin/rev-dep ADDED
Binary file
package/package.json ADDED
@@ -0,0 +1,23 @@
1
+ {
2
+ "name": "@rev-dep/darwin-arm64",
3
+ "version": "2.0.0-alpha-0",
4
+ "description": "The MacOS 64-bit arm binary for rev-dep",
5
+ "repository": {
6
+ "type": "git",
7
+ "url": "git+https://github.com/jayu/rev-dep.git"
8
+ },
9
+ "files": [
10
+ "bin/rev-dep"
11
+ ],
12
+ "license": "MIT",
13
+ "private": false,
14
+ "engines": {
15
+ "node": ">=18"
16
+ },
17
+ "os": [
18
+ "darwin"
19
+ ],
20
+ "cpu": [
21
+ "arm64"
22
+ ]
23
+ }