-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
110 lines (110 loc) · 2.69 KB
/
package.json
File metadata and controls
110 lines (110 loc) · 2.69 KB
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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
{
"name": "vscode-worktree-claude-code",
"displayName": "Git Worktree Manager with Claude Code",
"description": "Git worktree 관리 및 Claude Code 작업 상태 표시",
"version": "0.0.7",
"publisher": "kanghyojun",
"engines": {
"vscode": "^1.85.0"
},
"categories": [
"Other"
],
"activationEvents": [
"onView:worktreeExplorer"
],
"main": "./out/extension.js",
"contributes": {
"viewsContainers": {
"activitybar": [
{
"id": "worktree-explorer",
"title": "Git Worktree",
"icon": "$(list-tree)"
}
]
},
"views": {
"worktree-explorer": [
{
"id": "worktreeExplorer",
"name": "Worktrees"
}
]
},
"commands": [
{
"command": "worktree.add",
"title": "Worktree 추가",
"icon": "$(add)"
},
{
"command": "worktree.remove",
"title": "Worktree 삭제",
"icon": "$(trash)"
},
{
"command": "worktree.openInNewWindow",
"title": "새 창에서 열기",
"icon": "$(window)"
},
{
"command": "worktree.openInCurrentWindow",
"title": "현재 창에서 열기",
"icon": "$(arrow-right)"
},
{
"command": "worktree.refresh",
"title": "새로고침",
"icon": "$(refresh)"
}
],
"menus": {
"view/title": [
{
"command": "worktree.add",
"when": "view == worktreeExplorer",
"group": "navigation"
},
{
"command": "worktree.refresh",
"when": "view == worktreeExplorer",
"group": "navigation"
}
],
"view/item/context": [
{
"command": "worktree.openInCurrentWindow",
"when": "view == worktreeExplorer && viewItem == worktree",
"group": "inline"
},
{
"command": "worktree.openInNewWindow",
"when": "view == worktreeExplorer && viewItem == worktree",
"group": "inline"
},
{
"command": "worktree.remove",
"when": "view == worktreeExplorer && viewItem == worktree"
}
]
}
},
"scripts": {
"vscode:prepublish": "pnpm run compile",
"compile": "tsc -p ./",
"watch": "tsc -watch -p ./",
"pretest": "pnpm run compile",
"lint": "eslint src --ext ts",
"package": "pnpm install && vsce package --no-dependencies"
},
"devDependencies": {
"@types/node": "^20.x",
"@types/vscode": "^1.85.0",
"@typescript-eslint/eslint-plugin": "^6.x",
"@typescript-eslint/parser": "^6.x",
"@vscode/vsce": "^3.7.1",
"eslint": "^8.x",
"typescript": "^5.3.0"
}
}