@liuhange/dsh-data-masking 3.0.1 → 3.0.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.
- package/README.md +8 -1
- package/package.json +12 -2
package/README.md
CHANGED
|
@@ -1,7 +1,14 @@
|
|
|
1
|
-
# @
|
|
1
|
+
# @liuhange/dsh-data-masking
|
|
2
2
|
|
|
3
3
|
Data masking plugin for DeepSeek Harness. Identifies and masks sensitive fields (ID card, phone, bank card, email).
|
|
4
4
|
|
|
5
|
+
|
|
6
|
+
## 安装
|
|
7
|
+
|
|
8
|
+
```bash
|
|
9
|
+
dsh plugin --profile web add @liuhange/dsh-data-masking
|
|
10
|
+
```
|
|
11
|
+
|
|
5
12
|
## Tool: mask_sensitive_data
|
|
6
13
|
|
|
7
14
|
- **Parameters**: `filePath` (required), `strategy` (optional: FULL | PARTIAL | GENERALIZE, default PARTIAL)
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@liuhange/dsh-data-masking",
|
|
3
3
|
"description": "Data masking plugin: sensitive field identification and graded masking (FULL/PARTIAL/GENERALIZE) Also known as @deepseek-ai/dsh-data-masking.",
|
|
4
|
-
"version": "3.0.
|
|
4
|
+
"version": "3.0.2",
|
|
5
5
|
"publishConfig": {
|
|
6
6
|
"access": "public"
|
|
7
7
|
},
|
|
@@ -51,7 +51,17 @@
|
|
|
51
51
|
"data-asset",
|
|
52
52
|
"data-asset-inspector",
|
|
53
53
|
"shujintong",
|
|
54
|
-
"数据资产"
|
|
54
|
+
"数据资产",
|
|
55
|
+
"data-masking",
|
|
56
|
+
"sensitive-field",
|
|
57
|
+
"masking-strategy",
|
|
58
|
+
"partial-masking",
|
|
59
|
+
"full-masking",
|
|
60
|
+
"数据脱敏",
|
|
61
|
+
"敏感字段",
|
|
62
|
+
"脱敏策略",
|
|
63
|
+
"部分脱敏",
|
|
64
|
+
"完全脱敏"
|
|
55
65
|
],
|
|
56
66
|
"homepage": "https://github.com/liuhange789/data-asset-inspector#readme"
|
|
57
67
|
}
|