@lijian-ui/dsh-skill-manage 0.1.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json ADDED
@@ -0,0 +1,88 @@
1
+ {
2
+ "name": "@lijian-ui/dsh-skill-manage",
3
+ "version": "0.1.0",
4
+ "description": "Skill management plugin for DeepSeek Harness (dsh): list / enable / disable / delete / add / migrate / edit skills from the web UI settings panel. 为 DeepSeek Harness 提供技能管理:列表 / 启用 / 停用 / 删除 / 添加 / 迁移 / 编辑。",
5
+ "license": "MIT",
6
+ "type": "module",
7
+ "main": "lib/index.js",
8
+ "types": "lib/index.d.ts",
9
+ "exports": {
10
+ ".": {
11
+ "types": "./lib/index.d.ts",
12
+ "default": "./lib/index.js"
13
+ },
14
+ "./client": {
15
+ "default": "./lib/client.js"
16
+ },
17
+ "./cordis.patch.yml": "./cordis.patch.yml",
18
+ "./package.json": "./package.json"
19
+ },
20
+ "files": [
21
+ "lib/**/*.js",
22
+ "lib/**/*.d.ts",
23
+ "cordis.patch.yml",
24
+ "README.md",
25
+ "LICENSE"
26
+ ],
27
+ "scripts": {
28
+ "build": "tsdown",
29
+ "watch": "tsdown --watch",
30
+ "typecheck": "tsc --noEmit",
31
+ "prepare": "npm run build"
32
+ },
33
+ "keywords": [
34
+ "deepseek-harness",
35
+ "dsh",
36
+ "dsh-plugin",
37
+ "skill",
38
+ "skill-manage",
39
+ "cordis"
40
+ ],
41
+ "repository": {
42
+ "type": "git",
43
+ "url": "git+https://github.com/lijian-ui/dsh-skill-manage.git"
44
+ },
45
+ "dsh": {
46
+ "bundle": {
47
+ "patch": "./cordis.patch.yml"
48
+ },
49
+ "client": {
50
+ "inject": [
51
+ "@deepseek-ai/dsh-client-runtime",
52
+ "@deepseek-ai/dsh-client-locale",
53
+ "@deepseek-ai/dsh-api-gateway"
54
+ ],
55
+ "platform": "web",
56
+ "immediately": true
57
+ }
58
+ },
59
+ "dependencies": {
60
+ "@deepseek-ai/dsh-home-paths": "^0.0.1-rc.3",
61
+ "yaml": "^2.9.0",
62
+ "zod": "^4.4.3"
63
+ },
64
+ "peerDependencies": {
65
+ "@deepseek-ai/cordis": "*",
66
+ "@deepseek-ai/dsh-settings": "*",
67
+ "@deepseek-ai/dsh-typert-protocol": "*",
68
+ "@deepseek-ai/schemastery": "*"
69
+ },
70
+ "devDependencies": {
71
+ "@deepseek-ai/cordis": "4.0.1",
72
+ "@deepseek-ai/dsh-api-gateway": "0.1.0-rc.6",
73
+ "@deepseek-ai/dsh-client-locale": "0.1.0-rc.6",
74
+ "@deepseek-ai/dsh-client-runtime": "0.1.0-rc.6",
75
+ "@deepseek-ai/dsh-client-schema-form": "0.1.0-rc.6",
76
+ "@deepseek-ai/dsh-client-ui-settings": "0.1.0-rc.6",
77
+ "@deepseek-ai/dsh-client-ui-slots": "0.1.0-rc.6",
78
+ "@deepseek-ai/dsh-home-paths": "^0.0.1-rc.3",
79
+ "@deepseek-ai/dsh-settings": "0.1.0-rc.6",
80
+ "@deepseek-ai/dsh-typert-protocol": "0.1.0-rc.6",
81
+ "@deepseek-ai/schemastery": "3.18.1",
82
+ "@types/node": "^22.0.0",
83
+ "@types/react": "^18.3.0",
84
+ "react": "^18.2.0",
85
+ "tsdown": "^0.12.0",
86
+ "typescript": "^5.6.0"
87
+ }
88
+ }