@node-cli/secret 1.0.2 → 1.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/package.json +6 -6
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@node-cli/secret",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.3",
|
|
4
4
|
"license": "MIT",
|
|
5
5
|
"author": "Arno Versini",
|
|
6
6
|
"description": "Secret is a CLI tool that can encode or decode a file with a password",
|
|
@@ -13,7 +13,7 @@
|
|
|
13
13
|
],
|
|
14
14
|
"node": ">=16",
|
|
15
15
|
"scripts": {
|
|
16
|
-
"build": "
|
|
16
|
+
"build": "npm-run-all --serial clean build:types build:js build:barrel",
|
|
17
17
|
"build:barrel": "barrelsby --delete --directory dist --pattern \"**/*.d.ts\" --name \"index.d\"",
|
|
18
18
|
"build:js": "swc --source-maps --out-dir dist src",
|
|
19
19
|
"build:types": "tsc",
|
|
@@ -24,13 +24,13 @@
|
|
|
24
24
|
"watch": "swc --watch --out-dir dist src"
|
|
25
25
|
},
|
|
26
26
|
"dependencies": {
|
|
27
|
-
"@node-cli/logger": ">=1.2.
|
|
28
|
-
"@node-cli/parser": ">=2.2.
|
|
27
|
+
"@node-cli/logger": ">=1.2.2",
|
|
28
|
+
"@node-cli/parser": ">=2.2.3",
|
|
29
29
|
"fs-extra": "11.2.0",
|
|
30
|
-
"inquirer": "9.2.
|
|
30
|
+
"inquirer": "9.2.14"
|
|
31
31
|
},
|
|
32
32
|
"publishConfig": {
|
|
33
33
|
"access": "public"
|
|
34
34
|
},
|
|
35
|
-
"gitHead": "
|
|
35
|
+
"gitHead": "9fe243cae37a21e50ce133a1fa7045139157e39a"
|
|
36
36
|
}
|