source-code-mgmt 1.1.0 → 1.5.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.
Files changed (4) hide show
  1. package/README.md +144 -64
  2. package/lib/client.js +897 -122
  3. package/lib/index.js +643 -59
  4. package/package.json +38 -22
package/package.json CHANGED
@@ -1,22 +1,38 @@
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
- }
1
+ {
2
+ "name": "source-code-mgmt",
3
+ "version": "1.5.0",
4
+ "description": "DSH plugin: source code management. Registers「代码管理」as a dsh-better-sidebar sidebar Tab when installed, otherwise a top-right floating button + right drawer — 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
+ ".": {
9
+ "default": "./lib/index.js"
10
+ },
11
+ "./client": {
12
+ "default": "./lib/client.js"
13
+ },
14
+ "./package.json": "./package.json"
15
+ },
16
+ "dsh": {
17
+ "bundle": "./lib/index.js",
18
+ "client": {
19
+ "inject": [
20
+ "@deepseek-ai/dsh-client-runtime"
21
+ ],
22
+ "platform": "web"
23
+ }
24
+ },
25
+ "peerDependencies": {
26
+ "react": "^18.2.0",
27
+ "dsh-better-sidebar": ">=0.4.0"
28
+ },
29
+ "peerDependenciesMeta": {
30
+ "dsh-better-sidebar": {
31
+ "optional": true
32
+ }
33
+ },
34
+ "files": [
35
+ "lib/**/*.js"
36
+ ],
37
+ "license": "MIT"
38
+ }