@msvesper/vesper-net-linux-x64 0.1.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/LICENSE.md +44 -0
- package/THIRD_PARTY_NOTICES.md +2766 -0
- package/bin/vesper-net +0 -0
- package/package.json +16 -0
package/bin/vesper-net
ADDED
|
Binary file
|
package/package.json
ADDED
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@msvesper/vesper-net-linux-x64",
|
|
3
|
+
"version": "0.1.4",
|
|
4
|
+
"description": "Internal Linux x64 transport companion for vesper-link",
|
|
5
|
+
"license": "SEE LICENSE IN LICENSE.md",
|
|
6
|
+
"os": ["linux"],
|
|
7
|
+
"cpu": ["x64"],
|
|
8
|
+
"files": ["bin/vesper-net", "LICENSE.md", "THIRD_PARTY_NOTICES.md"],
|
|
9
|
+
"scripts": {
|
|
10
|
+
"postinstall": "node -e \"require('node:fs').chmodSync('bin/vesper-net',0o755)\""
|
|
11
|
+
},
|
|
12
|
+
"exports": {
|
|
13
|
+
"./package.json": "./package.json"
|
|
14
|
+
},
|
|
15
|
+
"publishConfig": { "access": "public" }
|
|
16
|
+
}
|