@liuhange/dsh-data-masking 3.0.0 → 3.0.1

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 (1) hide show
  1. package/package.json +57 -43
package/package.json CHANGED
@@ -1,43 +1,57 @@
1
- {
2
- "name": "@liuhange/dsh-data-masking",
3
- "description": "Data masking plugin: sensitive field identification and graded masking (FULL/PARTIAL/GENERALIZE)",
4
- "version": "3.0.0",
5
- "publishConfig": {
6
- "access": "public"
7
- },
8
- "repository": {
9
- "type": "git",
10
- "url": "git+https://github.com/liuhange789/data-asset-inspector.git",
11
- "directory": "packages/data-asset/data-masking"
12
- },
13
- "type": "module",
14
- "main": "lib/index.js",
15
- "types": "lib/types/index.d.ts",
16
- "exports": {
17
- ".": {
18
- "types": "./lib/types/index.d.ts",
19
- "default": "./lib/index.js"
20
- },
21
- "./invariant": {
22
- "types": "./lib/types/invariant.d.ts",
23
- "default": "./lib/invariant.js"
24
- },
25
- "./src/*": "./src/*",
26
- "./package.json": "./package.json"
27
- },
28
- "files": [
29
- "lib/**/*.js", "lib/types/**/*.d.ts"
30
- ],
31
- "license": "MIT",
32
- "scripts": {
33
- "typecheck": "tsc --noEmit",
34
- "test": "vitest run",
35
- "build": "tsc"
36
- },
37
- "peerDependencies": {
38
- "@deepseek-ai/cordis": "^4.0.0",
39
- "@deepseek-ai/dsh-tools": "0.0.1-rc.1",
40
- "@liuhange/dsh-data-asset-shared": "^3.0.0"
41
- },
42
- "dsh": { "bundle": { "patch": true } }
43
- }
1
+ {
2
+ "name": "@liuhange/dsh-data-masking",
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.1",
5
+ "publishConfig": {
6
+ "access": "public"
7
+ },
8
+ "repository": {
9
+ "type": "git",
10
+ "url": "git+https://github.com/liuhange789/data-asset-inspector.git",
11
+ "directory": "packages/data-asset/data-masking"
12
+ },
13
+ "type": "module",
14
+ "main": "lib/index.js",
15
+ "types": "lib/types/index.d.ts",
16
+ "exports": {
17
+ ".": {
18
+ "types": "./lib/types/index.d.ts",
19
+ "default": "./lib/index.js"
20
+ },
21
+ "./invariant": {
22
+ "types": "./lib/types/invariant.d.ts",
23
+ "default": "./lib/invariant.js"
24
+ },
25
+ "./src/*": "./src/*",
26
+ "./package.json": "./package.json"
27
+ },
28
+ "files": [
29
+ "lib/**/*.js",
30
+ "lib/types/**/*.d.ts"
31
+ ],
32
+ "license": "MIT",
33
+ "scripts": {
34
+ "typecheck": "tsc --noEmit",
35
+ "test": "vitest run",
36
+ "build": "tsc"
37
+ },
38
+ "peerDependencies": {
39
+ "@deepseek-ai/cordis": "^4.0.0",
40
+ "@deepseek-ai/dsh-tools": "0.0.1-rc.1",
41
+ "@liuhange/dsh-data-asset-shared": "^3.0.0"
42
+ },
43
+ "dsh": {
44
+ "bundle": {
45
+ "patch": true
46
+ }
47
+ },
48
+ "keywords": [
49
+ "deepseek-harness",
50
+ "dsh-plugin",
51
+ "data-asset",
52
+ "data-asset-inspector",
53
+ "shujintong",
54
+ "数据资产"
55
+ ],
56
+ "homepage": "https://github.com/liuhange789/data-asset-inspector#readme"
57
+ }