-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
69 lines (69 loc) · 1.7 KB
/
package.json
File metadata and controls
69 lines (69 loc) · 1.7 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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
{
"activationEvents": [
"onStartupFinished"
],
"categories": [
"Other"
],
"contributes": {
"configuration": {
"properties": {
"auto-arrange-tabs.fixTabs": {
"default": 3,
"markdowDescription": "Specifies number of fixed tabs from left side. They don't move when time is reached",
"maximum": 9,
"minimum": 1,
"scope": "resource",
"type": "number"
},
"auto-arrange-tabs.millis": {
"default": 3000,
"markdowDescription": "Specifies the number of milliseconds to move the tab from activation.",
"maximum": 100000,
"minimum": 0,
"scope": "resource",
"type": "number"
}
},
"title": "Auto-Arrange-Tabs"
}
},
"description": "This extension makes cluttered tabs clean automatically. It moves the used tabs on the far left.",
"devDependencies": {
"@types/glob": "^7.2.0",
"@types/mocha": "^9.1.0",
"@types/node": "14.x",
"@types/vscode": "^1.65.0",
"@vscode/test-electron": "^2.1.2",
"eslint": "^8.9.0",
"glob": "^7.2.0",
"mocha": "^9.2.1",
"typescript": "^4.5.5",
"vsce": "^2.15.0"
},
"displayName": "Auto-Arrange-Tabs",
"engines": {
"vscode": "^1.67.0"
},
"icon": "icon.png",
"keywords": [
"tabs",
"sort",
"order",
"arrange",
"panels"
],
"main": "./extension.js",
"name": "auto-arrange-tabs",
"publisher": "smallStall",
"repository": {
"type": "git",
"url": "https://github.com/smallStall/auto-arrange-tabs"
},
"scripts": {
"lint": "eslint .",
"pretest": "npm run lint",
"test": "node ./test/runTest.js"
},
"version": "0.6.0"
}