@kianax/wt 0.1.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.
- package/README.md +79 -0
- package/dist/cli.js +55224 -0
- package/package.json +76 -0
package/package.json
ADDED
|
@@ -0,0 +1,76 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@kianax/wt",
|
|
3
|
+
"version": "0.1.0",
|
|
4
|
+
"description": "Git worktree manager - make worktrees as effortless as branches",
|
|
5
|
+
"type": "module",
|
|
6
|
+
"main": "dist/cli.js",
|
|
7
|
+
"bin": {
|
|
8
|
+
"wt": "dist/cli.js"
|
|
9
|
+
},
|
|
10
|
+
"files": [
|
|
11
|
+
"dist"
|
|
12
|
+
],
|
|
13
|
+
"scripts": {
|
|
14
|
+
"dev": "bun run src/cli.ts",
|
|
15
|
+
"build": "bun build ./src/cli.ts --compile --outfile wt",
|
|
16
|
+
"build:node": "bun build ./src/cli.ts --outdir dist --target node --format esm && node scripts/add-shebang.js",
|
|
17
|
+
"prepublishOnly": "npm run build:node",
|
|
18
|
+
"test": "bun test",
|
|
19
|
+
"test:watch": "bun test --watch",
|
|
20
|
+
"test:coverage": "bun test --coverage",
|
|
21
|
+
"typecheck": "tsc --noEmit",
|
|
22
|
+
"lint": "biome check .",
|
|
23
|
+
"lint:fix": "biome check --write .",
|
|
24
|
+
"format": "biome format --write .",
|
|
25
|
+
"prepare": "simple-git-hooks"
|
|
26
|
+
},
|
|
27
|
+
"simple-git-hooks": {
|
|
28
|
+
"pre-commit": "bunx lint-staged",
|
|
29
|
+
"pre-push": "bun run typecheck && bun run build"
|
|
30
|
+
},
|
|
31
|
+
"lint-staged": {
|
|
32
|
+
"*.{ts,tsx,js,jsx}": [
|
|
33
|
+
"biome check --write"
|
|
34
|
+
]
|
|
35
|
+
},
|
|
36
|
+
"dependencies": {
|
|
37
|
+
"chalk": "^5.6.2",
|
|
38
|
+
"ink": "^6.6.0",
|
|
39
|
+
"react": "^19.2.3",
|
|
40
|
+
"react-devtools-core": "^7.0.1",
|
|
41
|
+
"zod": "^4.3.5"
|
|
42
|
+
},
|
|
43
|
+
"devDependencies": {
|
|
44
|
+
"@biomejs/biome": "^2.3.11",
|
|
45
|
+
"@types/bun": "latest",
|
|
46
|
+
"@types/react": "^19.2.8",
|
|
47
|
+
"ink-testing-library": "^4.0.0",
|
|
48
|
+
"lint-staged": "^16.2.7",
|
|
49
|
+
"simple-git-hooks": "^2.13.1",
|
|
50
|
+
"typescript": "^5.9.3"
|
|
51
|
+
},
|
|
52
|
+
"keywords": [
|
|
53
|
+
"git",
|
|
54
|
+
"worktree",
|
|
55
|
+
"tui",
|
|
56
|
+
"cli",
|
|
57
|
+
"terminal",
|
|
58
|
+
"interactive",
|
|
59
|
+
"ink",
|
|
60
|
+
"bun",
|
|
61
|
+
"node"
|
|
62
|
+
],
|
|
63
|
+
"engines": {
|
|
64
|
+
"node": ">=18.0.0"
|
|
65
|
+
},
|
|
66
|
+
"author": "",
|
|
67
|
+
"license": "MIT",
|
|
68
|
+
"repository": {
|
|
69
|
+
"type": "git",
|
|
70
|
+
"url": "git+https://github.com/zxh3/worktree-manager.git"
|
|
71
|
+
},
|
|
72
|
+
"bugs": {
|
|
73
|
+
"url": "https://github.com/zxh3/worktree-manager/issues"
|
|
74
|
+
},
|
|
75
|
+
"homepage": "https://github.com/zxh3/worktree-manager#readme"
|
|
76
|
+
}
|