-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
77 lines (77 loc) · 2.05 KB
/
Copy pathpackage.json
File metadata and controls
77 lines (77 loc) · 2.05 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
{
"name": "dshplugin-registry",
"version": "0.1.0",
"description": "DSH Plugin Registry inside DeepSeek Harness — search, compare, and inspect source-backed plugin information before installation.",
"type": "module",
"main": "lib/index.js",
"types": "lib/types/index.d.ts",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/dshplugin-app/dsh-plugin-registry.git"
},
"homepage": "https://dshplugin.app/plugins",
"keywords": [
"deepseek",
"deepseek-harness",
"dsh",
"dsh-plugin",
"plugin-registry",
"plugin-directory"
],
"scripts": {
"typecheck": "tsc -p tsconfig.json --noEmit && tsc -p tsconfig.client.json --noEmit",
"build": "tsc -p tsconfig.json && pnpm run build:client",
"build:client": "tsdown && node scripts/normalize-client-banner.mjs",
"check": "pnpm run typecheck && pnpm run build",
"prepack": "pnpm run build",
"prepare": "pnpm run build"
},
"peerDependencies": {
"@deepseek-ai/cordis": "^4.0.1"
},
"dsh": {
"bundle": {
"patch": "./cordis.patch.yml"
},
"client": {
"inject": [
"@deepseek-ai/dsh-client-connection",
"@deepseek-ai/dsh-client-runtime",
"@deepseek-ai/dsh-client-locale",
"@deepseek-ai/dsh-client-ui-settings",
"@deepseek-ai/dsh-client-ui-theme"
],
"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",
"client",
"cordis.patch.yml",
"LICENSE",
"README.md",
"README.zh-CN.md"
],
"devDependencies": {
"@deepseek-ai/cordis": "^4.0.1",
"@types/node": "^26.2.0",
"@types/react": "~18.3.1",
"react": "^18.3.1",
"tsdown": "^0.22.14",
"typescript": "^7.0.2",
"@deepseek-ai/dsh-client-ui-primitives": "^0.1.0-rc.5"
},
"publishConfig": {
"registry": "https://registry.npmjs.org/"
}
}