@nickderobertis/allowlister-remote-plugin-win32-x64 0.3.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.
- package/README.md +13 -0
- package/bin/allowlister-remote-plugin.exe +0 -0
- package/package.json +27 -0
package/README.md
ADDED
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
# @nickderobertis/allowlister-remote-plugin-win32-x64
|
|
2
|
+
|
|
3
|
+
Windows x64 native binary for
|
|
4
|
+
[`@nickderobertis/allowlister-remote-plugin`](https://www.npmjs.com/package/@nickderobertis/allowlister-remote-plugin).
|
|
5
|
+
|
|
6
|
+
This package is an implementation detail. It is installed automatically as an
|
|
7
|
+
optional dependency of `@nickderobertis/allowlister-remote-plugin` on win32/x64
|
|
8
|
+
hosts and is not meant to be installed directly. Install the parent package
|
|
9
|
+
instead:
|
|
10
|
+
|
|
11
|
+
```console
|
|
12
|
+
npm install -g @nickderobertis/allowlister-remote-plugin
|
|
13
|
+
```
|
|
Binary file
|
package/package.json
ADDED
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@nickderobertis/allowlister-remote-plugin-win32-x64",
|
|
3
|
+
"version": "0.3.0",
|
|
4
|
+
"description": "Windows x64 native binary for @nickderobertis/allowlister-remote-plugin",
|
|
5
|
+
"license": "UNLICENSED",
|
|
6
|
+
"repository": {
|
|
7
|
+
"type": "git",
|
|
8
|
+
"url": "git+https://github.com/nickderobertis/allowlister-remote.git"
|
|
9
|
+
},
|
|
10
|
+
"os": [
|
|
11
|
+
"win32"
|
|
12
|
+
],
|
|
13
|
+
"cpu": [
|
|
14
|
+
"x64"
|
|
15
|
+
],
|
|
16
|
+
"files": [
|
|
17
|
+
"README.md",
|
|
18
|
+
"bin/"
|
|
19
|
+
],
|
|
20
|
+
"publishConfig": {
|
|
21
|
+
"access": "public",
|
|
22
|
+
"provenance": true
|
|
23
|
+
},
|
|
24
|
+
"engines": {
|
|
25
|
+
"node": ">=20"
|
|
26
|
+
}
|
|
27
|
+
}
|