@agrozyme/eckey 0.0.2 → 0.0.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 +4 -4
- package/dist/commands/convert.d.ts +3 -3
- package/dist/commands/make.d.ts +3 -3
- package/oclif.manifest.json +1 -1
- package/package.json +12 -12
package/README.md
CHANGED
|
@@ -13,7 +13,7 @@ $ npm install -g @agrozyme/eckey
|
|
|
13
13
|
$ eckey COMMAND
|
|
14
14
|
running command...
|
|
15
15
|
$ eckey (--version)
|
|
16
|
-
@agrozyme/eckey/0.0.
|
|
16
|
+
@agrozyme/eckey/0.0.3 win32-x64 node-v20.14.0
|
|
17
17
|
$ eckey --help [COMMAND]
|
|
18
18
|
USAGE
|
|
19
19
|
$ eckey COMMAND
|
|
@@ -55,7 +55,7 @@ EXAMPLES
|
|
|
55
55
|
$ eckey convert
|
|
56
56
|
```
|
|
57
57
|
|
|
58
|
-
_See code: [src/commands/convert.ts](https://gitlab.com/agrozyme-package/TypeScript/eckey/blob/v0.0.
|
|
58
|
+
_See code: [src/commands/convert.ts](https://gitlab.com/agrozyme-package/TypeScript/eckey/blob/v0.0.3/src/commands/convert.ts)_
|
|
59
59
|
|
|
60
60
|
## `eckey help [COMMAND]`
|
|
61
61
|
|
|
@@ -75,7 +75,7 @@ DESCRIPTION
|
|
|
75
75
|
Display help for eckey.
|
|
76
76
|
```
|
|
77
77
|
|
|
78
|
-
_See code: [@oclif/plugin-help](https://github.com/oclif/plugin-help/blob/v6.
|
|
78
|
+
_See code: [@oclif/plugin-help](https://github.com/oclif/plugin-help/blob/v6.2.3/src/commands/help.ts)_
|
|
79
79
|
|
|
80
80
|
## `eckey make`
|
|
81
81
|
|
|
@@ -104,5 +104,5 @@ EXAMPLES
|
|
|
104
104
|
$ eckey make
|
|
105
105
|
```
|
|
106
106
|
|
|
107
|
-
_See code: [src/commands/make.ts](https://gitlab.com/agrozyme-package/TypeScript/eckey/blob/v0.0.
|
|
107
|
+
_See code: [src/commands/make.ts](https://gitlab.com/agrozyme-package/TypeScript/eckey/blob/v0.0.3/src/commands/make.ts)_
|
|
108
108
|
<!-- commandsstop -->
|
|
@@ -3,9 +3,9 @@ export default class Convert extends Command {
|
|
|
3
3
|
static description: string;
|
|
4
4
|
static examples: string[];
|
|
5
5
|
static flags: {
|
|
6
|
-
data: import("@oclif/core/
|
|
7
|
-
from: import("@oclif/core/
|
|
8
|
-
to: import("@oclif/core/
|
|
6
|
+
data: import("@oclif/core/interfaces").OptionFlag<string, import("@oclif/core/interfaces").CustomOptions>;
|
|
7
|
+
from: import("@oclif/core/interfaces").OptionFlag<string, import("@oclif/core/interfaces").CustomOptions>;
|
|
8
|
+
to: import("@oclif/core/interfaces").OptionFlag<string, import("@oclif/core/interfaces").CustomOptions>;
|
|
9
9
|
};
|
|
10
10
|
static args: {};
|
|
11
11
|
run(): Promise<void>;
|
package/dist/commands/make.d.ts
CHANGED
|
@@ -3,9 +3,9 @@ export default class Make extends Command {
|
|
|
3
3
|
static description: string;
|
|
4
4
|
static examples: string[];
|
|
5
5
|
static flags: {
|
|
6
|
-
curve: import("@oclif/core/
|
|
7
|
-
format: import("@oclif/core/
|
|
8
|
-
count: import("@oclif/core/
|
|
6
|
+
curve: import("@oclif/core/interfaces").OptionFlag<string, import("@oclif/core/interfaces").CustomOptions>;
|
|
7
|
+
format: import("@oclif/core/interfaces").OptionFlag<string, import("@oclif/core/interfaces").CustomOptions>;
|
|
8
|
+
count: import("@oclif/core/interfaces").OptionFlag<number, import("@oclif/core/interfaces").CustomOptions>;
|
|
9
9
|
};
|
|
10
10
|
static args: {};
|
|
11
11
|
run(): Promise<void>;
|
package/oclif.manifest.json
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@agrozyme/eckey",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.3",
|
|
4
4
|
"description": "Elliptic Curve Key CLI",
|
|
5
5
|
"author": "",
|
|
6
6
|
"bin": {
|
|
@@ -17,24 +17,24 @@
|
|
|
17
17
|
"/oclif.manifest.json"
|
|
18
18
|
],
|
|
19
19
|
"dependencies": {
|
|
20
|
-
"@agrozyme/crypto": "^1.0.
|
|
21
|
-
"@oclif/core": "^
|
|
22
|
-
"@oclif/plugin-help": "^6.
|
|
23
|
-
"@oclif/plugin-plugins": "^5.
|
|
24
|
-
"rambdax": "^11.1.
|
|
20
|
+
"@agrozyme/crypto": "^1.0.9",
|
|
21
|
+
"@oclif/core": "^4.0.6",
|
|
22
|
+
"@oclif/plugin-help": "^6.2.3",
|
|
23
|
+
"@oclif/plugin-plugins": "^5.3.2",
|
|
24
|
+
"rambdax": "^11.1.1"
|
|
25
25
|
},
|
|
26
26
|
"devDependencies": {
|
|
27
|
-
"@oclif/test": "^
|
|
28
|
-
"@types/chai": "^4.3.
|
|
27
|
+
"@oclif/test": "^4.0.4",
|
|
28
|
+
"@types/chai": "^4.3.16",
|
|
29
29
|
"@types/jasmine": "^5.1.4",
|
|
30
|
-
"@types/node": "^18.19.
|
|
31
|
-
"chai": "^5.1.
|
|
30
|
+
"@types/node": "^18.19.36",
|
|
31
|
+
"chai": "^5.1.1",
|
|
32
32
|
"jasmine": "^5.1.0",
|
|
33
|
-
"oclif": "^4.8
|
|
33
|
+
"oclif": "^4.13.8",
|
|
34
34
|
"pkg": "^5.8.1",
|
|
35
35
|
"shx": "^0.3.4",
|
|
36
36
|
"ts-node": "^10.9.2",
|
|
37
|
-
"tslib": "^2.6.
|
|
37
|
+
"tslib": "^2.6.3",
|
|
38
38
|
"typescript": "^5.4.5",
|
|
39
39
|
"yarpm": "^1.2.0"
|
|
40
40
|
},
|