@node-cli/secret 2.1.1 → 2.1.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/dist/secret.js +0 -0
  2. package/package.json +51 -50
package/dist/secret.js CHANGED
File without changes
package/package.json CHANGED
@@ -1,51 +1,52 @@
1
1
  {
2
- "name": "@node-cli/secret",
3
- "version": "2.1.1",
4
- "license": "MIT",
5
- "author": "Arno Versini",
6
- "description": "Secret is a CLI tool that can encode or decode a file with a password",
7
- "repository": {
8
- "type": "git",
9
- "url": "git+https://github.com/versini-org/node-cli.git",
10
- "directory": "packages/secret"
11
- },
12
- "type": "module",
13
- "types": "./dist/index.d.ts",
14
- "exports": "./dist/lib.js",
15
- "bin": "dist/secret.js",
16
- "files": [
17
- "dist",
18
- "README.md"
19
- ],
20
- "engines": {
21
- "node": ">=22"
22
- },
23
- "scripts": {
24
- "build": "npm-run-all --serial clean build:types build:js build:barrel",
25
- "build:barrel": "barrelsby --delete --directory dist --pattern \"**/*.d.ts\" --name \"index.d\"",
26
- "build:js": "swc --strip-leading-paths --source-maps --out-dir dist src",
27
- "build:types": "tsc",
28
- "clean": "rimraf dist types coverage",
29
- "comments:fix": "comments --merge-line-comments 'src/**/*.ts'",
30
- "lint": "biome lint src",
31
- "lint:fix": "biome check src --write --no-errors-on-unmatched",
32
- "test": "vitest run --globals",
33
- "test:coverage": "vitest run --coverage --globals",
34
- "test:watch": "npm run test -- --watch",
35
- "watch": "swc --strip-leading-paths --watch --out-dir dist src"
36
- },
37
- "dependencies": {
38
- "@node-cli/logger": "2.1.0",
39
- "@node-cli/parser": "3.1.0",
40
- "fs-extra": "11.4.0",
41
- "inquirer": "14.0.2"
42
- },
43
- "publishConfig": {
44
- "access": "public"
45
- },
46
- "devDependencies": {
47
- "@vitest/coverage-v8": "4.1.10",
48
- "vitest": "4.1.10"
49
- },
50
- "gitHead": "fc6a97734d963737772cb9a17cf5c4133357f76e"
51
- }
2
+ "name": "@node-cli/secret",
3
+ "version": "2.1.2",
4
+ "license": "MIT",
5
+ "author": "Arno Versini",
6
+ "description": "Secret is a CLI tool that can encode or decode a file with a password",
7
+ "repository": {
8
+ "type": "git",
9
+ "url": "git+https://github.com/versini-org/node-cli.git",
10
+ "directory": "packages/secret"
11
+ },
12
+ "type": "module",
13
+ "types": "./dist/index.d.ts",
14
+ "exports": "./dist/lib.js",
15
+ "files": [
16
+ "dist",
17
+ "README.md"
18
+ ],
19
+ "engines": {
20
+ "node": ">=22"
21
+ },
22
+ "dependencies": {
23
+ "fs-extra": "11.4.0",
24
+ "inquirer": "14.0.2",
25
+ "@node-cli/logger": "2.1.1",
26
+ "@node-cli/parser": "3.1.1"
27
+ },
28
+ "publishConfig": {
29
+ "access": "public"
30
+ },
31
+ "devDependencies": {
32
+ "@vitest/coverage-v8": "4.1.11",
33
+ "vitest": "4.1.11"
34
+ },
35
+ "scripts": {
36
+ "build": "npm-run-all --serial clean build:types build:js build:barrel",
37
+ "build:barrel": "barrelsby --delete --directory dist --pattern \"**/*.d.ts\" --name \"index.d\"",
38
+ "build:js": "swc --strip-leading-paths --source-maps --out-dir dist src",
39
+ "build:types": "tsc",
40
+ "clean": "rimraf dist types coverage",
41
+ "comments:fix": "comments --merge-line-comments 'src/**/*.ts'",
42
+ "lint": "biome lint src",
43
+ "lint:fix": "biome check src --write --no-errors-on-unmatched",
44
+ "test": "vitest run --globals",
45
+ "test:coverage": "vitest run --coverage --globals",
46
+ "test:watch": "npm run test -- --watch",
47
+ "watch": "swc --strip-leading-paths --watch --out-dir dist src"
48
+ },
49
+ "bin": {
50
+ "secret": "dist/secret.js"
51
+ }
52
+ }