@liuhange/dsh-data-inventory 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 +8 -1
  2. package/package.json +65 -29
package/README.md CHANGED
@@ -1,7 +1,14 @@
1
- # @deepseek-ai/dsh-data-inventory
1
+ # @liuhange/dsh-data-inventory
2
2
 
3
3
  Data inventory plugin for DeepSeek Harness. Directory scanning, value assessment, asset list generation.
4
4
 
5
+
6
+ ## 安装
7
+
8
+ ```bash
9
+ dsh plugin --profile web add @liuhange/dsh-data-inventory
10
+ ```
11
+
5
12
  ## Tool: inventory_data
6
13
 
7
14
  - **Parameters**: `directory` (required)
package/package.json CHANGED
@@ -1,29 +1,65 @@
1
- {
2
- "name": "@liuhange/dsh-data-inventory",
3
- "description": "Data inventory plugin: directory scanning, value assessment, asset list generation",
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/data-inventory" },
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
- "./invariant": { "types": "./lib/types/invariant.d.ts", "default": "./lib/invariant.js" },
13
- "./src/*": "./src/*",
14
- "./package.json": "./package.json"
15
- },
16
- "files": ["lib/**/*.js", "lib/types/**/*.d.ts"],
17
- "license": "MIT",
18
- "scripts": {
19
- "typecheck": "tsc --noEmit",
20
- "test": "vitest run",
21
- "build": "tsc"
22
- },
23
- "peerDependencies": {
24
- "@deepseek-ai/cordis": "^4.0.0",
25
- "@deepseek-ai/dsh-tools": "0.0.1-rc.1",
26
- "@liuhange/dsh-data-asset-shared": "^3.0.0"
27
- },
28
- "dsh": { "bundle": { "patch": true } }
29
- }
1
+ {
2
+ "name": "@liuhange/dsh-data-inventory",
3
+ "description": "Data inventory plugin: directory scanning, value assessment, asset list generation Also known as @deepseek-ai/dsh-data-inventory.",
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/data-inventory"
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
+ "data-inventory",
56
+ "directory-scanning",
57
+ "asset-list",
58
+ "value-assessment",
59
+ "数据目录",
60
+ "目录扫描",
61
+ "资产清单",
62
+ "价值评估"
63
+ ],
64
+ "homepage": "https://github.com/liuhange789/data-asset-inspector#readme"
65
+ }