forked from WissenIstNacht/vsc-recently-opened-cleaner
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
63 lines (63 loc) · 1.79 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
{
"name": "recently-opened-sweeper",
"displayName": "Recently Opened Sweeper",
"publisher": "crendking",
"description": "Sweep recently opened entries",
"version": "0.1.2",
"license": "See license in LICENSE.txt",
"engines": {
"vscode": "^1.49.0"
},
"categories": [
"Other"
],
"keywords": [
"recent",
"open",
"sweep",
"remove"
],
"icon": "media/icon.png",
"repository": {
"type": "git",
"url": "https://github.com/CrendKing/recently-opened-sweeper"
},
"activationEvents": [
"onStartupFinished"
],
"main": "./out/extension.js",
"contributes": {
"commands": [
{
"command": "recentlyOpenedSweeper.sweep",
"title": "Sweep recently opened entries"
}
],
"configuration": {
"title": "Recently Opened Sweeper",
"properties": {
"recentlyOpenedSweeper.runAtStartup.enabled": {
"type": "boolean",
"default": true,
"description": "Sweep recently opened entries at startup."
},
"recentlyOpenedSweeper.keepEntries.count": {
"type": "integer",
"default": -1,
"description": "Keep the first this many valid entries in storage for each category, delete the rest. Negative values mean keep all."
}
}
}
},
"scripts": {
"vscode:prepublish": "bun run compile",
"compile": "tsc -p ./",
"watch": "tsc -watch -p ./"
},
"devDependencies": {
"@types/node": "*",
"@types/vscode": "*",
"@vscode/vsce": "*",
"typescript": "*"
}
}