Skip to content

Commit 0610c22

Browse files
committed
Fix files in package.json
1 parent 1989de1 commit 0610c22

File tree

2 files changed

+7
-8
lines changed

2 files changed

+7
-8
lines changed

README.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -95,7 +95,7 @@ EXAMPLES
9595
$ cryppo decrypt -s "Rsa4096.bJjV2g_RBZKeyqBr-dSjPAc3qtkTgd0=.LS0tCnt9Cg==" -p private.pem
9696
```
9797

98-
_See code: [src/commands/decrypt.ts](https://github.com/Meeco/cryppo-cli/blob/v2.1.0/src/commands/decrypt.ts)_
98+
_See code: [src/commands/decrypt/index.ts](https://github.com/Meeco/cryppo-cli/blob/v2.1.0/src/commands/decrypt/index.ts)_
9999

100100
## `cryppo encrypt`
101101

@@ -120,7 +120,7 @@ EXAMPLES
120120
encrypt -v "hello world" -P public-key.pem
121121
```
122122

123-
_See code: [src/commands/encrypt.ts](https://github.com/Meeco/cryppo-cli/blob/v2.1.0/src/commands/encrypt.ts)_
123+
_See code: [src/commands/encrypt/index.ts](https://github.com/Meeco/cryppo-cli/blob/v2.1.0/src/commands/encrypt/index.ts)_
124124

125125
## `cryppo genkey`
126126

@@ -142,7 +142,7 @@ EXAMPLES
142142
$ cryppo genkey -l 192
143143
```
144144

145-
_See code: [src/commands/genkey.ts](https://github.com/Meeco/cryppo-cli/blob/v2.1.0/src/commands/genkey.ts)_
145+
_See code: [src/commands/genkey/index.ts](https://github.com/Meeco/cryppo-cli/blob/v2.1.0/src/commands/genkey/index.ts)_
146146

147147
## `cryppo genkeypair`
148148

@@ -164,7 +164,7 @@ EXAMPLES
164164
$ cryppo genkeypair -p private.pem -P public.pem
165165
```
166166

167-
_See code: [src/commands/genkeypair.ts](https://github.com/Meeco/cryppo-cli/blob/v2.1.0/src/commands/genkeypair.ts)_
167+
_See code: [src/commands/genkeypair/index.ts](https://github.com/Meeco/cryppo-cli/blob/v2.1.0/src/commands/genkeypair/index.ts)_
168168

169169
## `cryppo help [COMMANDS]`
170170

@@ -208,7 +208,7 @@ EXAMPLES
208208
$ cryppo sign -p private.pem my_file.txt my_file.signed.txt
209209
```
210210

211-
_See code: [src/commands/sign.ts](https://github.com/Meeco/cryppo-cli/blob/v2.1.0/src/commands/sign.ts)_
211+
_See code: [src/commands/sign/index.ts](https://github.com/Meeco/cryppo-cli/blob/v2.1.0/src/commands/sign/index.ts)_
212212

213213
## `cryppo verify DESTINATION FILE`
214214

@@ -232,5 +232,5 @@ EXAMPLES
232232
$ cryppo verify -P public.pem my_file.signed.txt my_file.txt
233233
```
234234

235-
_See code: [src/commands/verify.ts](https://github.com/Meeco/cryppo-cli/blob/v2.1.0/src/commands/verify.ts)_
235+
_See code: [src/commands/verify/index.ts](https://github.com/Meeco/cryppo-cli/blob/v2.1.0/src/commands/verify/index.ts)_
236236
<!-- commandsstop -->

package.json

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -37,8 +37,7 @@
3737
},
3838
"files": [
3939
"/bin",
40-
"/lib",
41-
"/npm-shrinkwrap.json",
40+
"/dist",
4241
"/oclif.manifest.json"
4342
],
4443
"homepage": "https://github.com/Meeco/cryppo-cli",

0 commit comments

Comments
 (0)