mdk-skills 2.2.10 → 2.2.12
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 +3 -1
- package/scripts/cli.js +552 -553
- package/scripts/core.js +15 -5
- package/scripts/web-ui/server.js +176 -15
- package/scripts/web-ui/src/App.vue +19 -1
- package/scripts/web-ui/src/api/skills.js +23 -0
- package/scripts/web-ui/src/components/SkillCard.vue +16 -8
- package/scripts/web-ui/src/components/StatusBar.vue +9 -1
- package/scripts/web-ui/src/main.js +1 -0
- package/scripts/web-ui/src/router/index.js +2 -0
- package/scripts/web-ui/src/styles/main.css +96 -0
- package/scripts/web-ui/src/views/Dashboard.vue +129 -5
- package/scripts/web-ui/src/views/ReadmeView.vue +115 -0
- package/scripts/web-ui/src/views/SceneSwitch.vue +126 -2
- package/scripts/web-ui/src/views/Settings.vue +118 -0
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "mdk-skills",
|
|
3
|
-
"version": "2.2.
|
|
3
|
+
"version": "2.2.12",
|
|
4
4
|
"description": "mdk-engineer - 沉稳靠谱的前端开发助手 Claude Skills 配置包,一键注入 .claude/ 技能目录和 CLAUDE.md 人设配置",
|
|
5
5
|
"author": "XiaoMa",
|
|
6
6
|
"license": "MIT",
|
|
@@ -21,6 +21,8 @@
|
|
|
21
21
|
"@vicons/ionicons5": "^0.13.0",
|
|
22
22
|
"@vitejs/plugin-vue": "^6.0.6",
|
|
23
23
|
"chalk": "^5.6.2",
|
|
24
|
+
"highlight.js": "^11.11.1",
|
|
25
|
+
"marked": "^18.0.3",
|
|
24
26
|
"naive-ui": "^2.44.1",
|
|
25
27
|
"vite": "^8.0.11",
|
|
26
28
|
"vue": "^3.5.34",
|