source-code-mgmt 1.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/README.md +260 -0
- package/lib/client.js +997 -0
- package/lib/index.js +1601 -0
- package/package.json +22 -0
package/package.json
ADDED
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "source-code-mgmt",
|
|
3
|
+
"version": "1.1.0",
|
|
4
|
+
"description": "DSH plugin: source code management in the sidebar footer — env checks (git/gh), SSH ed25519 key setup, GitHub/Gitee dual-platform (SSH config 443 + Gitee OpenAPI), connectivity test, push / new repo, and auto-ignore files over 100MB with per-file skipped reasons. Cross-platform (Windows / Linux / macOS).",
|
|
5
|
+
"type": "module",
|
|
6
|
+
"main": "lib/index.js",
|
|
7
|
+
"exports": {
|
|
8
|
+
".": { "default": "./lib/index.js" },
|
|
9
|
+
"./client": { "default": "./lib/client.js" },
|
|
10
|
+
"./package.json": "./package.json"
|
|
11
|
+
},
|
|
12
|
+
"dsh": {
|
|
13
|
+
"bundle": "./lib/index.js",
|
|
14
|
+
"client": {
|
|
15
|
+
"inject": ["@deepseek-ai/dsh-client-runtime"],
|
|
16
|
+
"platform": "web"
|
|
17
|
+
}
|
|
18
|
+
},
|
|
19
|
+
"peerDependencies": { "react": "^18.2.0" },
|
|
20
|
+
"files": ["lib/**/*.js"],
|
|
21
|
+
"license": "MIT"
|
|
22
|
+
}
|