asherah-windows-x64 4.0.0-beta.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 +5 -0
- package/index.win32-x64-msvc.node +0 -0
- package/package.json +22 -0
package/README.md
ADDED
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
# asherah-win32-x64-msvc
|
|
2
|
+
|
|
3
|
+
Windows x64 native binding for [asherah](https://www.npmjs.com/package/asherah) — the Asherah envelope encryption library.
|
|
4
|
+
|
|
5
|
+
This package is automatically installed as an optional dependency of the `asherah` package. You should not need to install it directly.
|
|
File without changes
|
package/package.json
ADDED
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "asherah-windows-x64",
|
|
3
|
+
"version": "4.0.0-beta.0",
|
|
4
|
+
"os": [
|
|
5
|
+
"win32"
|
|
6
|
+
],
|
|
7
|
+
"cpu": [
|
|
8
|
+
"x64"
|
|
9
|
+
],
|
|
10
|
+
"main": "index.win32-x64-msvc.node",
|
|
11
|
+
"files": [
|
|
12
|
+
"index.win32-x64-msvc.node"
|
|
13
|
+
],
|
|
14
|
+
"description": "Asherah envelope encryption - Windows x64 native binding",
|
|
15
|
+
"license": "Apache-2.0",
|
|
16
|
+
"engines": {
|
|
17
|
+
"node": ">= 18"
|
|
18
|
+
},
|
|
19
|
+
"publishConfig": {
|
|
20
|
+
"access": "public"
|
|
21
|
+
}
|
|
22
|
+
}
|