@liuhange/dsh-registration-precheck 3.0.0 → 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 +7 -0
- package/package.json +63 -28
package/README.md
CHANGED
package/package.json
CHANGED
|
@@ -1,28 +1,63 @@
|
|
|
1
|
-
{
|
|
2
|
-
"name": "@liuhange/dsh-registration-precheck",
|
|
3
|
-
"description": "Registration precheck plugin: verify data eligibility for national data property registration",
|
|
4
|
-
"version": "3.0.
|
|
5
|
-
"publishConfig": {
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
"
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
"
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
"
|
|
16
|
-
"
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
"
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
1
|
+
{
|
|
2
|
+
"name": "@liuhange/dsh-registration-precheck",
|
|
3
|
+
"description": "Registration precheck plugin: verify data eligibility for national data property registration Also known as @deepseek-ai/dsh-registration-precheck.",
|
|
4
|
+
"version": "3.0.2",
|
|
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/registration-precheck"
|
|
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
|
+
"./src/*": "./src/*",
|
|
22
|
+
"./package.json": "./package.json"
|
|
23
|
+
},
|
|
24
|
+
"files": [
|
|
25
|
+
"lib/**/*.js",
|
|
26
|
+
"lib/types/**/*.d.ts"
|
|
27
|
+
],
|
|
28
|
+
"license": "MIT",
|
|
29
|
+
"scripts": {
|
|
30
|
+
"typecheck": "tsc --noEmit",
|
|
31
|
+
"test": "vitest run",
|
|
32
|
+
"build": "tsc"
|
|
33
|
+
},
|
|
34
|
+
"peerDependencies": {
|
|
35
|
+
"@deepseek-ai/cordis": "^4.0.0",
|
|
36
|
+
"@deepseek-ai/dsh-tools": "0.0.1-rc.1",
|
|
37
|
+
"@liuhange/dsh-data-asset-shared": "^3.0.0"
|
|
38
|
+
},
|
|
39
|
+
"dsh": {
|
|
40
|
+
"bundle": {
|
|
41
|
+
"patch": true
|
|
42
|
+
}
|
|
43
|
+
},
|
|
44
|
+
"keywords": [
|
|
45
|
+
"deepseek-harness",
|
|
46
|
+
"dsh-plugin",
|
|
47
|
+
"data-asset",
|
|
48
|
+
"data-asset-inspector",
|
|
49
|
+
"shujintong",
|
|
50
|
+
"数据资产",
|
|
51
|
+
"registration-precheck",
|
|
52
|
+
"eligibility-check",
|
|
53
|
+
"national-security-check",
|
|
54
|
+
"source-compliance-check",
|
|
55
|
+
"ownership-dispute-check",
|
|
56
|
+
"登记预检",
|
|
57
|
+
"资格检查",
|
|
58
|
+
"国家安全检查",
|
|
59
|
+
"来源合规检查",
|
|
60
|
+
"权属纠纷检查"
|
|
61
|
+
],
|
|
62
|
+
"homepage": "https://github.com/liuhange789/data-asset-inspector#readme"
|
|
63
|
+
}
|