vde-worktree 0.0.19 → 0.0.21
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.ja.md +34 -10
- package/README.md +34 -12
- package/completions/fish/vw.fish +26 -7
- package/completions/zsh/_vw +29 -8
- package/dist/index.mjs +2019 -969
- package/dist/index.mjs.map +1 -1
- package/package.json +4 -3
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "vde-worktree",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.21",
|
|
4
4
|
"description": "Git worktree manager with safe defaults for humans and coding agents",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"packageManager": "pnpm@10.28.2",
|
|
@@ -30,7 +30,7 @@
|
|
|
30
30
|
"lint": "eslint src",
|
|
31
31
|
"lint:fix": "eslint src --fix",
|
|
32
32
|
"format": "prettier --write \"src/**/*.ts\"",
|
|
33
|
-
"typecheck": "tsc
|
|
33
|
+
"typecheck": "tsc --build --noEmit",
|
|
34
34
|
"prepublishOnly": "pnpm clean && pnpm build"
|
|
35
35
|
},
|
|
36
36
|
"keywords": [
|
|
@@ -61,7 +61,8 @@
|
|
|
61
61
|
"citty": "^0.2.0",
|
|
62
62
|
"execa": "^9.6.0",
|
|
63
63
|
"string-width": "^8.1.1",
|
|
64
|
-
"table": "^6.9.0"
|
|
64
|
+
"table": "^6.9.0",
|
|
65
|
+
"yaml": "^2.8.2"
|
|
65
66
|
},
|
|
66
67
|
"devDependencies": {
|
|
67
68
|
"@eslint/js": "^9.35.0",
|