-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathpackage.json
More file actions
105 lines (105 loc) · 2.95 KB
/
Copy pathpackage.json
File metadata and controls
105 lines (105 loc) · 2.95 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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
{
"name": "dsh-plugin",
"version": "1.4.4",
"description": "A community plugin marketplace for DeepSeek Harness, built to the official plugin spec — browse, search and install 9000+ human-curated community plugins without leaving the app. · DeepSeek Harness 社区插件市场(遵循官方开发规范):9000+ 人工精选社区插件,每日更新。",
"type": "module",
"main": "lib/index.js",
"types": "lib/types/index.d.ts",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/dshplugin/dsh-plugin-hub.git"
},
"homepage": "https://dsh-plugin.org",
"bugs": {
"url": "https://github.com/dshplugin/dsh-plugin-hub/issues"
},
"author": "DSH Plugin Hub contributors",
"funding": {
"type": "custom",
"url": "https://dsh-plugin.org"
},
"engines": {
"node": ">=22.6"
},
"keywords": [
"deepseek",
"deepseek-harness",
"harness",
"dsh",
"dsh-plugin",
"plugin-marketplace",
"plugin-hub",
"community-plugins",
"plugins",
"marketplace",
"ai",
"agent",
"cli",
"typescript",
"open-source"
],
"scripts": {
"build": "npm run build:server && npm run build:client",
"build:server": "rm -rf lib && tsc -p tsconfig.server.json",
"build:client": "tsdown && node scripts/tools/normalize-client-banner.mjs",
"readme:stats": "node scripts/tools/sync-readme-stats.mjs",
"reload": "bash scripts/run/restart-dev.sh",
"dev": "bash scripts/run/restart-dev.sh",
"test": "node --test",
"test:watch": "node --test --watch",
"typecheck": "npm run typecheck:client && npm run typecheck:server && npm run typecheck:test",
"typecheck:client": "tsc -p tsconfig.client.json --noEmit",
"typecheck:server": "tsc -p tsconfig.server.json --noEmit",
"typecheck:test": "tsc -p tsconfig.test.json --noEmit",
"check": "npm run typecheck && npm run test && npm run build",
"verify:release": "node scripts/tools/verify-release.mjs",
"prepublishOnly": "npm run verify:release",
"prepack": "npm run build"
},
"dependencies": {},
"peerDependencies": {
"@deepseek-ai/cordis": "4.0.1"
},
"dsh": {
"bundle": {
"patch": "./cordis.patch.yml"
},
"client": {
"inject": [
"@deepseek-ai/dsh-client-locale",
"@deepseek-ai/dsh-client-ui-slots"
],
"platform": "web"
}
},
"exports": {
".": {
"types": "./lib/types/index.d.ts",
"default": "./lib/index.js"
},
"./client": "./client/client.js",
"./cordis.patch.yml": "./cordis.patch.yml",
"./package.json": "./package.json"
},
"files": [
"lib",
"src",
"client",
"cordis.patch.yml",
"LICENSE"
],
"devDependencies": {
"@types/node": "24.13.3",
"@types/react": "18.3.31",
"lightningcss": "1.33.0",
"react": "18.3.1",
"tsdown": "0.22.14",
"typescript": "7.0.2"
},
"peerDependenciesMeta": {
"@deepseek-ai/cordis": {
"optional": true
}
}
}