-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1018 Bytes
/
Copy pathpackage.json
File metadata and controls
47 lines (47 loc) · 1018 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
{
"name": "wt",
"version": "0.1.0",
"description": "Ergonomic git worktree provisioner: create, switch, and tear down worktrees with automatic setup, symlinks, and per-worktree service orchestration.",
"type": "module",
"license": "MIT",
"author": "Ivan Bakalov <17004703+DXTimer@users.noreply.github.com> (https://github.com/DXTimer)",
"homepage": "https://github.com/DXTimer/wt#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/DXTimer/wt.git"
},
"bugs": {
"url": "https://github.com/DXTimer/wt/issues"
},
"keywords": [
"git",
"worktree",
"cli",
"bun",
"developer-tools"
],
"bin": {
"wt": "bin/wt"
},
"scripts": {
"wt": "bun bin/wt"
},
"files": [
"bin",
"commands",
"lib",
"completion",
"docs",
"README.md",
"LICENSE"
],
"devDependencies": {
"@types/bun": "latest"
},
"peerDependencies": {
"typescript": "^5"
},
"dependencies": {
"@inquirer/prompts": "^7.10.1"
}
}