-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
69 lines (69 loc) · 1.52 KB
/
package.json
File metadata and controls
69 lines (69 loc) · 1.52 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"
],
"author": {
"name": "BB9z",
"url": "https://github.com/BB9z"
},
"capabilities": {
"virtualWorkspaces": true
},
"categories": [
"Other"
],
"contributes": {
"configuration": {
"properties": {
"B9AutoCloseTab.maxTabs": {
"default": 7,
"description": "Maximum number of tabs to keep open in each editor group",
"maximum": 42,
"minimum": 1,
"type": "number"
}
},
"title": "B9AutoCloseTab"
}
},
"description": "Automatically close the oldest tabs when the number of open tabs exceeds a configurable limit",
"devDependencies": {
"@biomejs/biome": "latest",
"@types/node": "^22.19",
"@types/vscode": "1.90.0",
"@vscode/vsce": "latest",
"esbuild": "latest",
"ovsx": "latest",
"typescript": "latest"
},
"displayName": "B9AutoCloseTab",
"engines": {
"vscode": ">=1.90.0"
},
"icon": "icon.png",
"keywords": [
"tabs",
"auto-close",
"tab-management",
"productivity",
"workspace"
],
"license": "MIT",
"main": "./dist/extension.js",
"name": "vsx-auto-close-tab",
"private": true,
"publisher": "b9software",
"repository": {
"type": "git",
"url": "https://github.com/b9software/B9AutoCloseTab.git"
},
"scripts": {
"check": "biome check --write --unsafe && pnpm compile",
"compile": "tsc --noEmit && node esbuild.js",
"package": "vsce package",
"publish": "vsce publish",
"vscode:prepublish": "rm -rf dist && node esbuild.js --production",
"watch": "node esbuild.js --watch"
},
"version": "1.0.0"
}