@imferno/win32-arm64-msvc 0.1.3
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 +11 -0
- package/imferno.exe +0 -0
- package/package.json +25 -0
package/README.md
ADDED
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
# @imferno/win32-arm64-msvc
|
|
2
|
+
|
|
3
|
+
Platform-specific binary for [imferno](https://www.npmjs.com/package/imferno).
|
|
4
|
+
|
|
5
|
+
This package is installed automatically. Use the main package instead:
|
|
6
|
+
|
|
7
|
+
```bash
|
|
8
|
+
npm install -g imferno
|
|
9
|
+
```
|
|
10
|
+
|
|
11
|
+
See [imferno on npm](https://www.npmjs.com/package/imferno) for documentation.
|
package/imferno.exe
ADDED
|
Binary file
|
package/package.json
ADDED
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@imferno/win32-arm64-msvc",
|
|
3
|
+
"version": "0.1.3",
|
|
4
|
+
"description": "imferno native binary for Windows ARM64",
|
|
5
|
+
"os": [
|
|
6
|
+
"win32"
|
|
7
|
+
],
|
|
8
|
+
"cpu": [
|
|
9
|
+
"arm64"
|
|
10
|
+
],
|
|
11
|
+
"bin": {
|
|
12
|
+
"imferno": "imferno.exe"
|
|
13
|
+
},
|
|
14
|
+
"files": [
|
|
15
|
+
"imferno.exe"
|
|
16
|
+
],
|
|
17
|
+
"publishConfig": {
|
|
18
|
+
"access": "public"
|
|
19
|
+
},
|
|
20
|
+
"license": "MIT",
|
|
21
|
+
"repository": {
|
|
22
|
+
"type": "git",
|
|
23
|
+
"url": "https://github.com/jpwesselink/imferno.git"
|
|
24
|
+
}
|
|
25
|
+
}
|