-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.11 KB
/
Copy pathpackage.json
File metadata and controls
50 lines (50 loc) · 1.11 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
{
"name": "dsh-data-insight",
"version": "0.1.0",
"description": "Data analysis toolkit for DeepSeek Harness — CSV profiling, anomaly detection, and data summarization",
"author": "ClaireXi99 <wangyingxiclaire@163.com>",
"license": "MIT",
"type": "module",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"exports": {
".": {
"import": "./lib/index.js",
"types": "./lib/index.d.ts"
}
},
"files": [
"lib",
"cordis.patch.yml"
],
"scripts": {
"build": "tsdown",
"typecheck": "tsc --noEmit",
"test": "node test/smoke.mjs",
"prepare": "tsdown"
},
"keywords": [
"dsh-plugin",
"deepseek-harness",
"data-analysis",
"csv",
"profiling"
],
"repository": {
"type": "git",
"url": "https://github.com/ClaireXi99/dsh-data-insight.git"
},
"peerDependencies": {
"@deepseek-ai/cordis": ">=1.0.0",
"@deepseek-ai/dsh-tools": ">=0.1.0"
},
"devDependencies": {
"@deepseek-ai/cordis": "latest",
"@deepseek-ai/dsh-tools": "next",
"tsdown": "^0.9.0",
"typescript": "^5.8.0"
},
"dsh": {
"bundle": true
}
}