@alpacachen/dsh-simple-worktree 1.0.2 → 1.0.3

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 (3) hide show
  1. package/README.md +5 -0
  2. package/README.zh.md +5 -0
  3. package/package.json +12 -11
package/README.md CHANGED
@@ -2,6 +2,11 @@
2
2
 
3
3
  A lightweight Git worktree plugin for DeepSeek Harness.
4
4
 
5
+ [![npm version](https://img.shields.io/npm/v/@alpacachen/dsh-simple-worktree?color=5b8def&label=npm)](https://www.npmjs.com/package/@alpacachen/dsh-simple-worktree)
6
+ ![DeepSeek Harness Plugin](https://img.shields.io/badge/DeepSeek%20Harness-Plugin-7c5cff)
7
+ [![Awesome DSH Plugin](https://awesome-dsh-plugin.com/badge.svg)](https://awesome-dsh-plugin.com)
8
+ ![License](https://img.shields.io/badge/license-MIT-22c55e)
9
+
5
10
  [简体中文](README.zh.md) · **English**
6
11
 
7
12
  ## Features
package/README.zh.md CHANGED
@@ -2,6 +2,11 @@
2
2
 
3
3
  一个轻量的 Git Worktree 插件,用于 DeepSeek Harness。
4
4
 
5
+ [![npm version](https://img.shields.io/npm/v/@alpacachen/dsh-simple-worktree?color=5b8def&label=npm)](https://www.npmjs.com/package/@alpacachen/dsh-simple-worktree)
6
+ ![DeepSeek Harness Plugin](https://img.shields.io/badge/DeepSeek%20Harness-Plugin-7c5cff)
7
+ [![Awesome DSH Plugin](https://awesome-dsh-plugin.com/badge.svg)](https://awesome-dsh-plugin.com)
8
+ ![License](https://img.shields.io/badge/license-MIT-22c55e)
9
+
5
10
  **简体中文** · [English](README.md)
6
11
 
7
12
  ## 功能
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@alpacachen/dsh-simple-worktree",
3
- "version": "1.0.2",
3
+ "version": "1.0.3",
4
4
  "description": "A minimal worktree manager with one button and one dialog for DeepSeek Harness.",
5
5
  "license": "MIT",
6
6
  "keywords": [
@@ -37,6 +37,16 @@
37
37
  "README.md",
38
38
  "README.zh.md"
39
39
  ],
40
+ "scripts": {
41
+ "build": "node build.mjs",
42
+ "typecheck": "tsc --noEmit",
43
+ "test:unit": "vitest run",
44
+ "check:client-bundle": "node scripts/check-client-bundle.mjs",
45
+ "check:tracked-bundle": "node scripts/check-tracked-bundle.mjs",
46
+ "check:package": "node scripts/check-package-contents.mjs",
47
+ "test": "pnpm build && pnpm typecheck && pnpm test:unit && pnpm check:client-bundle && pnpm check:tracked-bundle && pnpm check:package",
48
+ "prepublishOnly": "pnpm test"
49
+ },
40
50
  "peerDependencies": {
41
51
  "@deepseek-ai/cordis": "^4.0.1"
42
52
  },
@@ -71,14 +81,5 @@
71
81
  "dependencies": {
72
82
  "@radix-ui/react-dialog": "1.1.6",
73
83
  "lucide-react": "0.474.0"
74
- },
75
- "scripts": {
76
- "build": "node build.mjs",
77
- "typecheck": "tsc --noEmit",
78
- "test:unit": "vitest run",
79
- "check:client-bundle": "node scripts/check-client-bundle.mjs",
80
- "check:tracked-bundle": "node scripts/check-tracked-bundle.mjs",
81
- "check:package": "node scripts/check-package-contents.mjs",
82
- "test": "pnpm build && pnpm typecheck && pnpm test:unit && pnpm check:client-bundle && pnpm check:tracked-bundle && pnpm check:package"
83
84
  }
84
- }
85
+ }