-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
132 lines (132 loc) · 3.91 KB
/
package.json
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
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
{
"name": "undo-tree",
"displayName": "Undo Tree",
"description": "Undo Tree like that in Vim or Emacs!!",
"publisher": "UndoTree",
"version": "1.1.1",
"icon": "icon.png",
"repository": {
"type": "git",
"url": "https://github.com/Zeyu-Li/undo-tree-vscode"
},
"engines": {
"vscode": "^1.89.0"
},
"categories": [
"Other"
],
"activationEvents": [
"onCommand:undotree.undo",
"onCommand:undotree.redo",
"onCommand:undotree.saveAndAdvance",
"onCommand:undotree.toggleTimecode",
"onCommand:undotree.resetTree"
],
"main": "./out/extension.js",
"contributes": {
"menus": {
"view/title": [
{
"command": "undotree.undo",
"when": "view == undoTreeView",
"group": "navigation@1"
},
{
"command": "undotree.redo",
"when": "view == undoTreeView",
"group": "navigation@2"
},
{
"command": "undotree.saveAndAdvance",
"when": "view == undoTreeView",
"group": "navigation@3"
},
{
"command": "undotree.resetTree",
"when": "view == undoTreeView",
"group": "navigation@4"
}
]
},
"viewsContainers": {
"activitybar": [
{
"id": "undoTreeContainer",
"title": "Undo Tree",
"icon": "$(timeline-view-icon)"
}
]
},
"views": {
"undoTreeContainer": [
{
"id": "undoTreeView",
"name": "Undo Tree",
"contextualTitle": "Undo Tree"
}
]
},
"commands": [
{
"command": "undotree.undo",
"title": "Undo Tree: Undo",
"icon": "$(debug-step-out)"
},
{
"command": "undotree.redo",
"title": "Undo Tree: Redo",
"icon": "$(debug-step-into)"
},
{
"command": "undotree.saveAndAdvance",
"title": "Undo Tree: Save and Advance",
"icon": "$(debug-step-over)"
},
{
"command": "undotree.resetTree",
"title": "Undo Tree: Reset",
"icon": "$(debug-restart)"
},
{
"command": "undotree.toggleTimecode",
"title": "Undo Tree: Toggle Showing Timecode"
}
],
"keybindings": [
{
"command": "undotree.undo",
"key": "ctrl+alt+z",
"when": "editorTextFocus"
},
{
"command": "undotree.redo",
"key": "ctrl+alt+y",
"when": "editorTextFocus"
},
{
"command": "undotree.saveAndAdvance",
"key": "ctrl+y",
"when": "editorTextFocus"
}
]
},
"scripts": {
"vscode:prepublish": "yarn run compile",
"compile": "tsc -p ./",
"watch": "tsc -watch -p ./",
"pretest": "yarn run compile && yarn run lint",
"lint": "eslint src --ext ts",
"test": "vscode-test"
},
"devDependencies": {
"@types/vscode": "^1.89.0",
"@types/mocha": "^10.0.6",
"@types/node": "18.x",
"@typescript-eslint/eslint-plugin": "^7.7.1",
"@typescript-eslint/parser": "^7.7.1",
"eslint": "^8.57.0",
"typescript": "^5.4.5",
"@vscode/test-cli": "^0.0.9",
"@vscode/test-electron": "^2.3.9"
}
}