@salefronts/cli 1.0.0 → 1.0.2

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 +20 -0
  2. package/package.json +3 -7
package/README.md ADDED
@@ -0,0 +1,20 @@
1
+ # @salefronts/cli
2
+
3
+ This is a command-line interface (CLI) tool for generating various types of keys, secrets, UUIDs, and more. It also includes functionality for sealing and unsealing Kubernetes secrets.
4
+
5
+ ## Installation
6
+
7
+ To install the CLI globally, run the following command:
8
+
9
+ ```bash
10
+ npm install -g @salefronts/cli
11
+ ```
12
+
13
+ ## Commands
14
+
15
+ User `sf <command>` to execute the corresponding commands.
16
+ To get the list of command use this command line:
17
+
18
+ ```bash
19
+ sf help
20
+ ```
package/package.json CHANGED
@@ -1,16 +1,12 @@
1
1
  {
2
2
  "name": "@salefronts/cli",
3
- "version": "1.0.0",
3
+ "version": "1.0.2",
4
4
  "bin": {
5
5
  "sf": "bin/sf"
6
6
  },
7
- "scripts": {
8
- "postinstall": "chmod +x bin/sf",
9
- "publish": "publish --access public"
10
- },
11
7
  "dependencies": {
12
- "jsonwebtoken": "^9.0.2",
13
- "niceware": "^4.0.0",
8
+ "jsonwebtoken": "~9.0.2",
9
+ "niceware": "~4.0.0",
14
10
  "uuidv7": "~1.0.2"
15
11
  }
16
12
  }