@liuhange/dsh-generate-registration-docs 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 +61 -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-generate-registration-docs
10
+ ```
11
+
5
12
  ## 功能说明
6
13
 
7
14
  生成三份登记申请材料:
package/package.json CHANGED
@@ -1,28 +1,61 @@
1
- {
2
- "name": "@liuhange/dsh-generate-registration-docs",
3
- "description": "Generate registration documents: data description, source legality statement, ownership explanation",
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/generate-registration-docs" },
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-generate-registration-docs",
3
+ "description": "Generate registration documents: data description, source legality statement, ownership explanation Also known as @deepseek-ai/dsh-generate-registration-docs.",
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/generate-registration-docs"
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-docs",
52
+ "data-description",
53
+ "legality-statement",
54
+ "ownership-explanation",
55
+ "登记文档",
56
+ "数据描述",
57
+ "合法性声明",
58
+ "产权归属"
59
+ ],
60
+ "homepage": "https://github.com/liuhange789/data-asset-inspector#readme"
61
+ }