@mehen/linux-arm64-musl 0.0.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 +7 -0
  2. package/bin/mehen +0 -0
  3. package/package.json +34 -0
package/README.md ADDED
@@ -0,0 +1,7 @@
1
+ # @mehen/linux-arm64-musl
2
+
3
+ This package contains the Mehen binary for linux-arm64.
4
+
5
+ This package is automatically installed as an optional dependency when you install the main `mehen` package.
6
+
7
+ For more information, visit: https://github.com/ophidiarium/mehen
package/bin/mehen ADDED
Binary file
package/package.json ADDED
@@ -0,0 +1,34 @@
1
+ {
2
+ "name": "@mehen/linux-arm64-musl",
3
+ "version": "0.0.1",
4
+ "description": "Mehen binary for linux-arm64",
5
+ "keywords": ["metrics", "code-analysis", "complexity", "rust", "cli"],
6
+ "homepage": "https://github.com/ophidiarium/mehen",
7
+ "repository": {
8
+ "type": "git",
9
+ "url": "https://github.com/ophidiarium/mehen.git"
10
+ },
11
+ "bugs": {
12
+ "url": "https://github.com/ophidiarium/mehen/issues"
13
+ },
14
+ "license": "MPL-2.0",
15
+ "author": {
16
+ "name": "Konstantin Vyatkin",
17
+ "email": "tino@vtkn.io"
18
+ },
19
+ "os": ["linux"],
20
+ "cpu": ["arm64"],
21
+ "bin": {
22
+ "mehen": "./bin/mehen"
23
+ },
24
+ "files": [
25
+ "bin/",
26
+ "README.md"
27
+ ],
28
+ "engines": {
29
+ "node": ">=18.0.0"
30
+ },
31
+ "publishConfig": {
32
+ "access": "public"
33
+ }
34
+ }