-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
95 lines (95 loc) · 2.46 KB
/
Copy pathpackage.json
File metadata and controls
95 lines (95 loc) · 2.46 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
{
"name": "dsh-plain-plugin-menu",
"description": "用大白话分类、比较、安装和管理 DeepSeek Harness 插件|A plain-language plugin catalog and manager for DSH.",
"version": "0.1.1",
"type": "module",
"main": "lib/index.js",
"types": "lib/types/index.d.ts",
"license": "MIT",
"author": "4mForAI",
"repository": {
"type": "git",
"url": "git+https://github.com/4mForAI/dsh-plain-plugin-menu.git"
},
"homepage": "https://github.com/4mForAI/dsh-plain-plugin-menu#readme",
"bugs": {
"url": "https://github.com/4mForAI/dsh-plain-plugin-menu/issues"
},
"publishConfig": {
"access": "public"
},
"keywords": [
"deepseek",
"harness",
"dsh",
"dsh-plugin",
"plugin-manager",
"plugin-menu"
],
"scripts": {
"typecheck": "tsc -p tsconfig.host.json --noEmit && tsc -p tsconfig.client.json --noEmit",
"build:host": "tsc -p tsconfig.host.json",
"build:client": "tsdown",
"build": "npm run build:host && npm run build:client",
"test": "vitest run",
"check": "npm run typecheck && npm run test && npm run build",
"prepack": "npm run check",
"prepare": "npm run build",
"snapshot": "node scripts/build-snapshot.mjs"
},
"peerDependencies": {
"@deepseek-ai/cordis": "^4.0.1",
"@deepseek-ai/schemastery": "^3.18.1"
},
"devDependencies": {
"@deepseek-ai/cordis": "^4.0.1",
"@deepseek-ai/schemastery": "^3.18.1",
"@testing-library/react": "^16.3.2",
"@types/node": "^26.0.0",
"@types/react": "~18.3.1",
"jsdom": "^26.1.0",
"lightningcss": "^1.33.0",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"tsdown": "^0.22.14",
"typescript": "^7.0.0",
"unrun": "^0.2.39",
"vitest": "^4.1.0"
},
"dsh": {
"bundle": {
"patch": "./cordis.patch.yml"
},
"client": {
"inject": [
"@deepseek-ai/dsh-client-runtime",
"@deepseek-ai/dsh-client-locale",
"@deepseek-ai/dsh-client-ui-layout",
"@deepseek-ai/dsh-client-ui-sidebar"
],
"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": [
"client",
"cordis.patch.yml",
"data",
"lib",
"LICENSE",
"README.md",
"README.en.md",
"SECURITY.md"
],
"engines": {
"node": "^22.19.0 || >=24.0.0"
}
}