@opencoven/cli-windows 0.0.11
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/bin/coven.exe +0 -0
- package/package.json +17 -0
package/README.md
ADDED
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
# Native Coven CLI package
|
|
2
|
+
|
|
3
|
+
This package contains one platform-specific Coven CLI binary. Install `@opencoven/cli` instead of depending on this package directly; npm will select this optional dependency on supported systems.
|
|
4
|
+
|
|
5
|
+
Linux x64 builds target glibc-based distributions. Alpine Linux is not supported. Windows builds target x64 Windows.
|
package/bin/coven.exe
ADDED
|
Binary file
|
package/package.json
ADDED
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@opencoven/cli-windows",
|
|
3
|
+
"version": "0.0.11",
|
|
4
|
+
"private": false,
|
|
5
|
+
"description": "Native Coven CLI binary for win32/x64.",
|
|
6
|
+
"os": ["win32"],
|
|
7
|
+
"cpu": ["x64"],
|
|
8
|
+
"files": [
|
|
9
|
+
"bin",
|
|
10
|
+
"README.md"
|
|
11
|
+
],
|
|
12
|
+
"license": "MIT",
|
|
13
|
+
"repository": {
|
|
14
|
+
"type": "git",
|
|
15
|
+
"url": "git+https://github.com/OpenCoven/coven.git"
|
|
16
|
+
}
|
|
17
|
+
}
|