This repository has been archived by the owner on Nov 7, 2022. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 52
/
package.json
231 lines (231 loc) · 10 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
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
{
"name": "vscode-kanban",
"displayName": "Kanban",
"description": "Kanban board for Visual Studio Code.",
"version": "1.33.1",
"publisher": "mkloubert",
"engines": {
"vscode": "^1.62.0"
},
"categories": [
"Other"
],
"keywords": [
"Kanban",
"Project",
"Management",
"Todo",
"Toggl",
"multi-root ready"
],
"activationEvents": [
"*"
],
"main": "./out/extension",
"contributes": {
"commands": [
{
"command": "extension.kanban.openBoard",
"title": "Open Board ...",
"category": "Kanban"
}
],
"configuration": {
"properties": {
"kanban": {
"type": "object",
"scope": "resource",
"properties": {
"canExecute": {
"description": "Indicates if a button should be shown in each card, which can execute a 'onExecute' function in 'vscode-kanban.js' file.",
"type": "boolean",
"default": false
},
"cleanupExports": {
"description": "Remove existing export files, before regenerate them.",
"type": "boolean",
"default": true
},
"columns": {
"description": "Column settings.",
"type": "object",
"properties": {
"done": {
"description": "The custom (display) name for the column 'Done'.",
"type": "string"
},
"inProgress": {
"description": "The custom (display) name for the column 'In Progress'.",
"type": "string"
},
"testing": {
"description": "The custom (display) name for the column 'Testing'.",
"type": "string"
},
"todo": {
"description": "The custom (display) name for the column 'Todo'.",
"type": "string"
}
}
},
"exportOnSave": {
"description": "Export cards to external Markdown files on save or not.",
"type": "boolean",
"default": false
},
"exportPath": {
"description": "The custom path where export files, like cards, should be stored. Relative paths will be mapped to the '.vscode' subfolder of the underlying workspace.",
"type": "string"
},
"maxExportNameLength": {
"description": "The maximum size of the name of an export file.",
"type": "integer",
"minimum": 1,
"default": 48
},
"globals": {
"description": "Any data, which can be accessed inside the whole extension context, like scripts, e.g."
},
"noScmUser": {
"description": "Do not detect username via source control manager like Git.",
"type": "boolean",
"default": false
},
"noSystemUser": {
"description": "Do not detect username of operating system.",
"type": "boolean",
"default": false
},
"noTimeTrackingIfIdle": {
"description": "Do not show 'track time' button, if a card is stored in 'Todo' or 'Done'.",
"type": "boolean",
"default": false
},
"openOnStartup": {
"description": "Open the board for that workspace on startup or not.",
"type": "boolean",
"default": false
},
"simpleIDs": {
"description": "Use integer values as IDs for cards instead.",
"type": "boolean",
"default": true
},
"trackTime": {
"description": "Settings for 'time tracking' feature.",
"oneOf": [
{
"description": "Enable (simple) time tracking or not.",
"type": "boolean",
"default": false
},
{
"description": "Settings for tracking time via 'onTrackTime' of 'vscode-kanban.js' file.",
"type": "object",
"properties": {
"options": {
"description": "Options / data for the execution of the function."
},
"type": {
"description": "The type.",
"type": "string",
"enum": [
"",
"script"
]
}
}
},
{
"description": "Settings for tracking time via Toggle.com",
"type": "object",
"properties": {
"project": {
"description": "The ID of the project.",
"type": "integer"
},
"token": {
"description": "The personal API token or the path to a text file, that contains it.",
"type": "string"
},
"type": {
"description": "The type.",
"type": "string",
"enum": [
"toggl",
"toggle"
]
}
},
"required": [
"token"
]
}
]
}
}
}
}
}
},
"scripts": {
"vscode:prepublish": "npm run compile",
"build": "(del ./out) && (tsc -p ./) && (mkdir \"./out/res\") && (cp -r ./src/res/* ./out/res)",
"compile": "tsc -p ./",
"watch": "tsc -watch -p ./",
"postinstall": "node ./node_modules/vscode/bin/install",
"test": "npm run compile && node ./node_modules/vscode/bin/test",
"publish": "node ./publish.js"
},
"icon": "icon.png",
"badges": [
{
"description": "PayPal Donate",
"url": "https://img.shields.io/badge/paypal-donate-blue.svg",
"href": "https://paypal.me/MarcelKloubert"
},
{
"description": "Patreon Donate",
"url": "https://img.shields.io/badge/patreon-donate-red.svg",
"href": "https://patreon.com/mkloubert"
},
{
"description": "Buy me a Coffee",
"url": "https://img.shields.io/badge/buy%20me%20a%20coffee-donate-orange.svg",
"href": "https://buymeacoffee.com/mkloubert"
}
],
"author": {
"name": "Marcel Joachim Kloubert"
},
"repository": {
"type": "git",
"url": "https://github.com/mkloubert/vscode-kanban"
},
"bugs": {
"url": "https://github.com/mkloubert/vscode-kanban/issues"
},
"readmeFilename": "README.md",
"devDependencies": {
"@types/fs-extra": "9.0.13",
"@types/html-entities": "1.3.4",
"@types/lodash": "4.14.182",
"@types/marked": "4.0.3",
"@types/mocha": "9.1.1",
"@types/node": "16.11.32",
"del-cli": "4.0.1",
"tslint": "6.1.3",
"typescript": "4.4.4",
"vsce": "2.7.0",
"vscode": "1.1.37"
},
"dependencies": {
"fs-extra": "10.1.0",
"html-entities": "2.3.3",
"humanize-duration": "3.27.1",
"lodash": "4.17.21",
"marked": "4.0.14",
"sanitize-filename": "1.6.3",
"vscode-helpers": "9.0.0"
}
}