@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.
- package/README.md +7 -0
- package/package.json +61 -28
package/README.md
CHANGED
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.
|
|
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-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
|
+
}
|