pii-mask-cli 0.1.0

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 ADDED
@@ -0,0 +1,23 @@
1
+ # pii-mask-cli
2
+
3
+ Alias wrapper for [`@pii-mask/cli`](https://www.npmjs.com/package/@pii-mask/cli).
4
+
5
+ - Always reflects the latest features and updates from `@pii-mask/cli`.
6
+ - Exposes the same `pii-mask` command.
7
+ - Install globally or locally:
8
+
9
+ ```bash
10
+ npm install -g pii-mask-cli
11
+ # or
12
+ npm install -g @pii-mask/cli
13
+ ```
14
+
15
+ Both provide the `pii-mask` command.
16
+
17
+ ## How it works
18
+
19
+ `pii-mask-cli` is a thin wrapper that delegates to `@pii-mask/cli`. All updates and features are inherited automatically.
20
+
21
+ ## License
22
+
23
+ MIT
package/dist/index.cjs ADDED
@@ -0,0 +1,7 @@
1
+ #!/usr/bin/env node
2
+ 'use strict';
3
+
4
+ require('@pii-mask/cli');
5
+
6
+ //# sourceMappingURL=index.cjs.map
7
+ //# sourceMappingURL=index.cjs.map
@@ -0,0 +1,2 @@
1
+
2
+ export { }
@@ -0,0 +1,2 @@
1
+
2
+ export { }
package/dist/index.js ADDED
@@ -0,0 +1,4 @@
1
+ #!/usr/bin/env node
2
+ import '@pii-mask/cli';
3
+ //# sourceMappingURL=index.js.map
4
+ //# sourceMappingURL=index.js.map
package/package.json ADDED
@@ -0,0 +1,62 @@
1
+ {
2
+ "name": "pii-mask-cli",
3
+ "version": "0.1.0",
4
+ "description": "Alias wrapper for @pii-mask/cli. Always reflects the latest @pii-mask/cli features.",
5
+ "type": "module",
6
+ "license": "MIT",
7
+ "repository": {
8
+ "type": "git",
9
+ "url": "https://github.com/codewithveek/pii-mask.git",
10
+ "directory": "packages/pii-mask-cli"
11
+ },
12
+ "bugs": {
13
+ "url": "https://github.com/codewithveek/pii-mask/issues"
14
+ },
15
+ "homepage": "https://github.com/codewithveek/pii-mask/tree/main/packages/pii-mask-cli#readme",
16
+ "keywords": [
17
+ "pii",
18
+ "mask",
19
+ "cli",
20
+ "redact",
21
+ "anonymize",
22
+ "privacy",
23
+ "data-protection",
24
+ "command-line"
25
+ ],
26
+ "publishConfig": {
27
+ "access": "public"
28
+ },
29
+ "bin": {
30
+ "pii-mask": "./dist/index.js"
31
+ },
32
+ "exports": {
33
+ ".": {
34
+ "types": "./dist/index.d.ts",
35
+ "import": "./dist/index.js",
36
+ "require": "./dist/index.cjs"
37
+ }
38
+ },
39
+ "main": "./dist/index.cjs",
40
+ "module": "./dist/index.js",
41
+ "types": "./dist/index.d.ts",
42
+ "files": [
43
+ "dist",
44
+ "!dist/**/*.map"
45
+ ],
46
+ "dependencies": {
47
+ "@pii-mask/cli": "0.1.0"
48
+ },
49
+ "devDependencies": {
50
+ "@vitest/coverage-v8": "^4.0.18",
51
+ "tsup": "^8.5.1",
52
+ "typescript": "^5.9.3",
53
+ "vitest": "^4.0.18"
54
+ },
55
+ "scripts": {
56
+ "build": "tsup",
57
+ "dev": "tsup --watch",
58
+ "test": "vitest run --coverage",
59
+ "typecheck": "tsc --noEmit",
60
+ "lint": "eslint src/"
61
+ }
62
+ }