@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.
Files changed (2) hide show
  1. package/README.md +7 -0
  2. package/package.json +63 -28
package/README.md CHANGED
@@ -2,6 +2,13 @@
2
2
 
3
3
  登记预检插件:在数据资产体检完成后,自动检查数据是否满足国家数据产权登记条件。
4
4
 
5
+
6
+ ## 安装
7
+
8
+ ```bash
9
+ dsh plugin --profile web add @liuhange/dsh-registration-precheck
10
+ ```
11
+
5
12
  ## 功能说明
6
13
 
7
14
  依据《数据产权登记工作指引(试行)》(国数综政策〔2026〕35号)规定的不予登记情形,执行四项检查:
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.0",
5
- "publishConfig": { "access": "public" },
6
- "repository": { "type": "git", "url": "git+https://github.com/liuhange789/data-asset-inspector.git", "directory": "packages/data-asset/registration-precheck" },
7
- "type": "module",
8
- "main": "lib/index.js",
9
- "types": "lib/types/index.d.ts",
10
- "exports": {
11
- ".": { "types": "./lib/types/index.d.ts", "default": "./lib/index.js" },
12
- "./src/*": "./src/*",
13
- "./package.json": "./package.json"
14
- },
15
- "files": ["lib/**/*.js", "lib/types/**/*.d.ts"],
16
- "license": "MIT",
17
- "scripts": {
18
- "typecheck": "tsc --noEmit",
19
- "test": "vitest run",
20
- "build": "tsc"
21
- },
22
- "peerDependencies": {
23
- "@deepseek-ai/cordis": "^4.0.0",
24
- "@deepseek-ai/dsh-tools": "0.0.1-rc.1",
25
- "@liuhange/dsh-data-asset-shared": "^3.0.0"
26
- },
27
- "dsh": { "bundle": { "patch": true } }
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
+ }