@polymerix-labs/facts-extract-darwin-arm64 0.7.4
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.
- package/README.md +7 -0
- package/facts-extract +0 -0
- package/package.json +25 -0
package/README.md
ADDED
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
# @polymerix-labs/facts-extract-darwin-arm64
|
|
2
|
+
|
|
3
|
+
Native `facts-extract` binary for darwin/arm64.
|
|
4
|
+
|
|
5
|
+
Do not install this directly. It is pulled automatically as an optional dependency of
|
|
6
|
+
[`@polymerix-labs/facts-extract`](https://www.npmjs.com/package/@polymerix-labs/facts-extract)
|
|
7
|
+
for matching platforms.
|
package/facts-extract
ADDED
|
Binary file
|
package/package.json
ADDED
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@polymerix-labs/facts-extract-darwin-arm64",
|
|
3
|
+
"version": "0.7.4",
|
|
4
|
+
"description": "Polymerix facts-extract native binary for darwin/arm64. Installed automatically as an optional dependency of @polymerix-labs/facts-extract.",
|
|
5
|
+
"homepage": "https://gitlab.com/polymerix/parser",
|
|
6
|
+
"repository": {
|
|
7
|
+
"type": "git",
|
|
8
|
+
"url": "https://gitlab.com/polymerix/parser.git",
|
|
9
|
+
"directory": "npm/facts-extract"
|
|
10
|
+
},
|
|
11
|
+
"license": "MIT",
|
|
12
|
+
"os": [
|
|
13
|
+
"darwin"
|
|
14
|
+
],
|
|
15
|
+
"cpu": [
|
|
16
|
+
"arm64"
|
|
17
|
+
],
|
|
18
|
+
"bin": {
|
|
19
|
+
"facts-extract": "facts-extract"
|
|
20
|
+
},
|
|
21
|
+
"files": [
|
|
22
|
+
"facts-extract"
|
|
23
|
+
],
|
|
24
|
+
"preferUnplugged": true
|
|
25
|
+
}
|