agents-gitflow-guard 0.0.1 → 0.0.2
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 +152 -209
- package/README.zh.md +182 -239
- package/lib/cli.mjs +153 -80
- package/lib/index.d.mts +7 -18
- package/lib/index.mjs +2 -2
- package/lib/src-Dv6jKDsO.mjs +716 -0
- package/package.json +7 -7
- package/lib/src-DWE1n9Zh.mjs +0 -813
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "agents-gitflow-guard",
|
|
3
|
-
"version": "0.0.
|
|
4
|
-
"description": "DSH plugin:
|
|
3
|
+
"version": "0.0.2",
|
|
4
|
+
"description": "DSH plugin: a configurable branch-role guard — integration/preview/production/archive, each with its own update rules",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"type": "module",
|
|
7
7
|
"main": "lib/index.mjs",
|
|
@@ -44,7 +44,7 @@
|
|
|
44
44
|
},
|
|
45
45
|
"scripts": {
|
|
46
46
|
"build": "tsdown",
|
|
47
|
-
"prepack": "
|
|
47
|
+
"prepack": "npm run build",
|
|
48
48
|
"test": "vitest run",
|
|
49
49
|
"typecheck": "tsc --noEmit"
|
|
50
50
|
},
|
|
@@ -54,10 +54,10 @@
|
|
|
54
54
|
},
|
|
55
55
|
"devDependencies": {
|
|
56
56
|
"@deepseek-ai/cordis": "^4.0.1",
|
|
57
|
-
"@deepseek-ai/dsh-agent": "0.1.0-rc.6",
|
|
58
|
-
"@deepseek-ai/dsh-llm": "0.1.0-rc.6",
|
|
59
|
-
"@deepseek-ai/dsh-scope": "0.1.0-rc.6",
|
|
60
|
-
"@deepseek-ai/dsh-session": "0.1.0-rc.6",
|
|
57
|
+
"@deepseek-ai/dsh-agent": "^0.1.0-rc.6",
|
|
58
|
+
"@deepseek-ai/dsh-llm": "^0.1.0-rc.6",
|
|
59
|
+
"@deepseek-ai/dsh-scope": "^0.1.0-rc.6",
|
|
60
|
+
"@deepseek-ai/dsh-session": "^0.1.0-rc.6",
|
|
61
61
|
"@deepseek-ai/dsh-tools": "^0.1.0-rc.5",
|
|
62
62
|
"@types/node": "^22",
|
|
63
63
|
"tsdown": "^0.22.2",
|