@ntindle/branchlet 0.1.6
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/LICENSE +21 -0
- package/README.md +169 -0
- package/dist/index.js +57425 -0
- package/package.json +65 -0
package/package.json
ADDED
|
@@ -0,0 +1,65 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@ntindle/branchlet",
|
|
3
|
+
"version": "0.1.6",
|
|
4
|
+
"description": "CLI for creating and managing Git worktrees",
|
|
5
|
+
"type": "module",
|
|
6
|
+
"main": "dist/index.js",
|
|
7
|
+
"bin": {
|
|
8
|
+
"branchlet": "dist/index.js"
|
|
9
|
+
},
|
|
10
|
+
"scripts": {
|
|
11
|
+
"dev": "bun run src/index.tsx",
|
|
12
|
+
"build": "bun run typecheck && bun build src/index.tsx --outdir dist --target node --format esm --external yoga-wasm-web",
|
|
13
|
+
"start": "node dist/index.js",
|
|
14
|
+
"test": "bun test tests/",
|
|
15
|
+
"test:watch": "bun test tests/ --watch",
|
|
16
|
+
"test:coverage": "bun test tests/ --coverage",
|
|
17
|
+
"lint": "biome lint src/",
|
|
18
|
+
"format": "biome format --write src/",
|
|
19
|
+
"check": "biome check --write src/",
|
|
20
|
+
"typecheck": "tsc --noEmit",
|
|
21
|
+
"ci": "bun run typecheck && bun run lint && bun test && bun run build",
|
|
22
|
+
"prepack": "bun run build"
|
|
23
|
+
},
|
|
24
|
+
"keywords": [
|
|
25
|
+
"git",
|
|
26
|
+
"worktree",
|
|
27
|
+
"cli",
|
|
28
|
+
"codegen",
|
|
29
|
+
"claude",
|
|
30
|
+
"ai",
|
|
31
|
+
"codex"
|
|
32
|
+
],
|
|
33
|
+
"author": {
|
|
34
|
+
"name": "Raghav Pillai",
|
|
35
|
+
"email": "me@raghav.sh",
|
|
36
|
+
"url": "https://raghav.sh"
|
|
37
|
+
},
|
|
38
|
+
"license": "MIT",
|
|
39
|
+
"files": [
|
|
40
|
+
"dist/",
|
|
41
|
+
"README.md"
|
|
42
|
+
],
|
|
43
|
+
"dependencies": {
|
|
44
|
+
"glob": "^11.1.0",
|
|
45
|
+
"ink": "^6.2.2",
|
|
46
|
+
"ink-spinner": "^5.0.0",
|
|
47
|
+
"minimatch": "^10.0.3",
|
|
48
|
+
"minimist": "^1.2.8",
|
|
49
|
+
"react": "^19.1.1",
|
|
50
|
+
"zod": "^4.0.17"
|
|
51
|
+
},
|
|
52
|
+
"devDependencies": {
|
|
53
|
+
"@biomejs/biome": "^2.2.0",
|
|
54
|
+
"@testing-library/react": "^16.1.0",
|
|
55
|
+
"@types/minimist": "^1.2.5",
|
|
56
|
+
"@types/node": "^24.3.0",
|
|
57
|
+
"@types/react": "^19.1.10",
|
|
58
|
+
"bun-types": "^1.2.0",
|
|
59
|
+
"react-devtools-core": "^4.28.5",
|
|
60
|
+
"typescript": "^5.9.2"
|
|
61
|
+
},
|
|
62
|
+
"engines": {
|
|
63
|
+
"node": ">=20.0.0"
|
|
64
|
+
}
|
|
65
|
+
}
|