-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
178 lines (178 loc) · 4.34 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
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
{
"name": "keep-context",
"displayName": "Keep Context",
"description": "Make context switch easy to be managed and tracked.",
"version": "0.5.3",
"publisher": "marlom",
"icon": "images/keep-context.png",
"engines": {
"vscode": "^1.77.0"
},
"license": "MIT",
"categories": [
"Other"
],
"activationEvents": [
"onStartupFinished"
],
"main": "./out/extension.js",
"extensionKind": [
"workspace"
],
"contributes": {
"configuration": {
"title": "Keep Context",
"properties": {
"keepContext.contextStore": {
"type": "string",
"enum": [
"file",
"workspace"
],
"enumDescriptions": [
"Store contexts in workspace store",
"Store contexts in file settings under .vscode"
],
"default": "workspace",
"description": "Set the place to store contexts, workspace state or file (⚠️ not supported by workspace with multiple projects)"
}
}
},
"keybindings": [
{
"key": "ctrl+k ctrl+shift+c",
"mac": "cmd+k cmd+shift+c",
"command": "keepContext.newTask"
},
{
"key": "ctrl+k ctrl+shift+s",
"mac": "cmd+k cmd+shift+s",
"command": "keepContext.selectTask"
}
],
"viewsContainers": {
"activitybar": [
{
"id": "keep-context",
"title": "Keep Context",
"icon": "images/keep-context.svg"
}
]
},
"views": {
"keep-context": [
{
"id": "keepContext",
"name": "Contexts"
}
]
},
"commands": [
{
"command": "keepContext.clearState",
"title": "Clear state",
"category": "Keep Context"
},
{
"command": "keepContext.newTask",
"title": "Create Task",
"category": "Keep Context"
},
{
"command": "keepContext.selectTask",
"title": "Select Task",
"category": "Keep Context"
},
{
"command": "keepContext.editTask",
"title": "Edit Task",
"category": "Keep Context",
"icon": {
"light": "images/light/edit.svg",
"dark": "images/dark/edit.svg"
}
},
{
"command": "keepContext.deleteTask",
"title": "Delete Task",
"category": "Keep Context",
"icon": {
"light": "images/light/trash.svg",
"dark": "images/dark/trash.svg"
}
}
],
"menus": {
"commandPalette": [
{
"command": "keepContext.newTask"
},
{
"command": "keepContext.editTask"
},
{
"command": "keepContext.deleteTask"
}
],
"view/title": [
{
"command": "keepContext.newTask",
"when": "view == keepContext"
}
],
"view/item/context": [
{
"command": "keepContext.editTask",
"when": "view == keepContext && viewItem == task_item",
"group": "inline"
},
{
"command": "keepContext.deleteTask",
"when": "view == keepContext && viewItem == task_item",
"group": "inline"
}
]
}
},
"scripts": {
"vscode:prepublish": "npm run compile",
"compile": "tsc -p ./",
"watch": "tsc -watch -p ./",
"pretest": "npm run compile",
"test": "node ./out/test/runTest.js",
"lint": "eslint . --ext .ts",
"lint:fix": "eslint . --ext .ts --fix",
"format": "prettier --config .prettierrc 'src/**/*.ts' --write"
},
"keywords": [
"context",
"switch",
"task"
],
"extensionDependencies": [
"vscode.git"
],
"repository": {
"type": "git",
"url": "git+https://github.com/marlomgirardi/vscode-keep-context.git"
},
"bugs": {
"url": "https://github.com/marlomgirardi/vscode-keep-context/issues"
},
"devDependencies": {
"@types/glob": "^8.1.0",
"@types/mocha": "^10.0.1",
"@types/node": "18.14.6",
"@types/vscode": "^1.76.0",
"@typescript-eslint/eslint-plugin": "^5.54.0",
"@typescript-eslint/parser": "^5.54.0",
"eslint": "^8.35.0",
"eslint-config-prettier": "^8.6.0",
"eslint-plugin-prettier": "^4.2.1",
"glob": "^8.1.0",
"mocha": "^10.2.0",
"prettier": "^2.8.4",
"typescript": "^4.9.5",
"vscode-test": "^1.6.1"
}
}