-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 1.24 KB
/
Copy pathpackage.json
File metadata and controls
61 lines (61 loc) · 1.24 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
51
52
53
54
55
56
57
58
59
60
61
{
"name": "dsh-store",
"version": "0.5.2",
"description": "DeepSeek Harness 插件商店:npm 权威源 + awesome 精选 + 自动雷达(550+ 插件、11 分类、运行级验证),官方 dsh plugin add/remove 一键安装卸载,dsh 原生 UI",
"type": "module",
"main": "lib/index.js",
"exports": {
".": {
"default": "./lib/index.js"
},
"./client": {
"default": "./lib/client.js"
},
"./package.json": "./package.json"
},
"files": [
"lib",
"cordis.patch.yml",
"README.md",
"LICENSE",
"CHANGELOG.md"
],
"keywords": [
"dsh",
"dsh-plugin",
"deepseek-harness",
"store",
"marketplace",
"plugin-manager"
],
"license": "MIT",
"author": "huguangyu666",
"repository": {
"type": "git",
"url": "https://github.com/huguangyu666/dsh-store.git"
},
"engines": {
"node": ">=22.5"
},
"publishConfig": {
"access": "public"
},
"dsh": {
"bundle": {
"patch": "./cordis.patch.yml"
},
"client": {
"inject": [
"@deepseek-ai/dsh-client-locale"
],
"platform": "web"
}
},
"scripts": {
"build": "node build.mjs",
"prepack": "node build.mjs"
},
"devDependencies": {
"esbuild": "^0.28.2"
}
}