sshifu 0.6.2 → 0.6.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.
Files changed (2) hide show
  1. package/README.md +34 -0
  2. package/package.json +1 -1
package/README.md ADDED
@@ -0,0 +1,34 @@
1
+ # sshifu
2
+
3
+ SSH authentication client with short-lived certificates and OAuth authentication (GitHub organizations).
4
+
5
+ ## Installation
6
+
7
+ ```bash
8
+ npm install -g sshifu
9
+ ```
10
+
11
+ ## Usage
12
+
13
+ ```bash
14
+ sshifu auth.example.com user@target-server.com
15
+ ```
16
+
17
+ ## Features
18
+
19
+ - 🔐 **Short-lived SSH certificates** - Automatic certificate issuance with configurable TTL (default 8 hours)
20
+ - 🌐 **GitHub OAuth authentication** - Authenticate users via GitHub organization membership
21
+ - 🛠️ **Standard OpenSSH compatibility** - Works with existing `ssh` command without workflow changes
22
+
23
+ ## Requirements
24
+
25
+ - OpenSSH 6.7+ (for certificate support)
26
+ - Node.js 14.0.0+
27
+
28
+ ## Full Documentation
29
+
30
+ See the complete documentation at [github.com/azophy/sshifu](https://github.com/azophy/sshifu)
31
+
32
+ ## License
33
+
34
+ MIT
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "sshifu",
3
- "version": "0.6.2",
3
+ "version": "0.6.3",
4
4
  "description": "SSH authentication system with short-lived certificates and OAuth authentication (GitHub organizations)",
5
5
  "main": "bin/sshifu.js",
6
6
  "bin": {