git-sync-tui 0.1.0 → 0.1.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 (4) hide show
  1. package/README.md +92 -34
  2. package/README.zh-CN.md +126 -0
  3. package/dist/cli.js +887 -196
  4. package/package.json +17 -3
package/package.json CHANGED
@@ -1,7 +1,8 @@
1
1
  {
2
2
  "name": "git-sync-tui",
3
3
  "type": "module",
4
- "version": "0.1.0",
4
+ "version": "0.1.3",
5
+ "packageManager": "pnpm@10.32.1",
5
6
  "description": "Interactive TUI tool for cross-repo git commit synchronization (cherry-pick --no-commit)",
6
7
  "author": "KiWi233333",
7
8
  "repository": {
@@ -12,6 +13,10 @@
12
13
  "bugs": {
13
14
  "url": "https://github.com/KiWi233333/git-sync-tui/issues"
14
15
  },
16
+ "publishConfig": {
17
+ "registry": "https://registry.npmjs.org",
18
+ "access": "public"
19
+ },
15
20
  "bin": {
16
21
  "git-sync-tui": "dist/cli.js"
17
22
  },
@@ -21,11 +26,20 @@
21
26
  "engines": {
22
27
  "node": ">=20"
23
28
  },
29
+ "volta": {
30
+ "node": "24.14.0"
31
+ },
24
32
  "scripts": {
25
33
  "start": "tsx src/cli.tsx",
26
- "dev": "tsx watch src/cli.tsx",
34
+ "dev": "tsx src/cli.tsx",
27
35
  "build": "tsup",
28
- "prepublishOnly": "npm run build"
36
+ "prepublishOnly": "pnpm run build",
37
+ "release": "pnpm run release:patch",
38
+ "release:patch": "pnpm version patch && git push --follow-tags",
39
+ "release:minor": "pnpm version minor && git push --follow-tags",
40
+ "release:major": "pnpm version major && git push --follow-tags",
41
+ "release:beta": "pnpm version prerelease --preid=beta && git push --follow-tags",
42
+ "release:retag": "tsx scripts/retag.ts"
29
43
  },
30
44
  "keywords": [
31
45
  "git",