@clef-sh/keyservice-win32-x64 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 +29 -0
- package/bin/clef-keyservice.exe +0 -0
- package/package.json +26 -0
package/README.md
ADDED
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
# @clef-sh/keyservice-win32-x64
|
|
2
|
+
|
|
3
|
+
Bundled [clef-keyservice](https://github.com/clef-sh/keyservice) binary for **Windows x64**.
|
|
4
|
+
|
|
5
|
+
This package is an implementation detail of [Clef](https://github.com/clef-sh/clef) — a
|
|
6
|
+
git-native secrets management tool built on Mozilla SOPS. You should not need to install it
|
|
7
|
+
directly.
|
|
8
|
+
|
|
9
|
+
## How it works
|
|
10
|
+
|
|
11
|
+
`@clef-sh/cli` declares this package as an `optionalDependency`. When you run `npm install` on
|
|
12
|
+
a Windows x64 machine, npm automatically installs this package and Clef resolves the bundled
|
|
13
|
+
binary at runtime — no separate installation required.
|
|
14
|
+
|
|
15
|
+
## Versioning
|
|
16
|
+
|
|
17
|
+
This package is versioned by the **clef-keyservice version** it contains. Platform packages are
|
|
18
|
+
published independently of `@clef-sh/core` and `@clef-sh/cli`.
|
|
19
|
+
|
|
20
|
+
## License
|
|
21
|
+
|
|
22
|
+
The clef-keyservice binary is licensed under the
|
|
23
|
+
[Business Source License 1.1](https://github.com/clef-sh/keyservice/blob/main/LICENSE) (see `LICENSE`).
|
|
24
|
+
|
|
25
|
+
## Parent project
|
|
26
|
+
|
|
27
|
+
- Repository: https://github.com/clef-sh/keyservice
|
|
28
|
+
- Documentation: https://clef.sh
|
|
29
|
+
- CLI package: [@clef-sh/cli](https://www.npmjs.com/package/@clef-sh/cli)
|
|
Binary file
|
package/package.json
ADDED
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@clef-sh/keyservice-win32-x64",
|
|
3
|
+
"version": "0.1.3",
|
|
4
|
+
"description": "Bundled clef-keyservice binary for Windows x64",
|
|
5
|
+
"os": [
|
|
6
|
+
"win32"
|
|
7
|
+
],
|
|
8
|
+
"cpu": [
|
|
9
|
+
"x64"
|
|
10
|
+
],
|
|
11
|
+
"main": "bin/clef-keyservice.exe",
|
|
12
|
+
"files": [
|
|
13
|
+
"README.md",
|
|
14
|
+
"bin/clef-keyservice.exe",
|
|
15
|
+
"LICENSE"
|
|
16
|
+
],
|
|
17
|
+
"publishConfig": {
|
|
18
|
+
"access": "public",
|
|
19
|
+
"provenance": true
|
|
20
|
+
},
|
|
21
|
+
"repository": {
|
|
22
|
+
"type": "git",
|
|
23
|
+
"url": "https://github.com/clef-sh/keyservice"
|
|
24
|
+
},
|
|
25
|
+
"license": "BSL-1.1"
|
|
26
|
+
}
|