-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.42 KB
/
package.json
File metadata and controls
55 lines (55 loc) · 1.42 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
{
"name": "only-the-dirty",
"displayName": "Only the Dirty (Know What Them Tabs Feel Like Tonight)",
"publisher": "LemuelCushing",
"repository": {
"url": "https://github.com/LemuelCushing/only_the_dirty"
},
"description": "Close all non-dirty editor tabs, leaving only unsaved changes open",
"version": "0.2.1",
"icon": "logo_small.png",
"engines": {
"vscode": "^1.96.0"
},
"categories": [
"Other"
],
"main": "./out/extension.js",
"contributes": {
"commands": [
{
"command": "onlyTheDirty.closeNonDirtyTabs",
"title": "Close All Non-Dirty Tabs"
}
],
"configuration": {
"title": "Only the Dirty",
"properties": {
"onlyTheDirty.keepPinnedTabs": {
"type": "boolean",
"default": false,
"description": "Keep pinned (non-preview) tabs open when closing non-dirty tabs."
}
}
}
},
"scripts": {
"vscode:prepublish": "npm run compile",
"compile": "tsc -p ./",
"watch": "tsc -watch -p ./",
"pretest": "npm run compile && npm run lint",
"lint": "eslint src",
"test": "node ./out/test/runTest.js"
},
"devDependencies": {
"@types/mocha": "^10.0.10",
"@types/node": "^20",
"@types/vscode": "^1.96.0",
"@vscode/test-electron": "^2.4.1",
"eslint": "^9.17.0",
"glob": "^13.0.0",
"mocha": "^11.1.0",
"typescript": "^5.7.2",
"typescript-eslint": "^8.50.1"
}
}