-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage.json
More file actions
106 lines (106 loc) · 3.36 KB
/
package.json
File metadata and controls
106 lines (106 loc) · 3.36 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
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
{
"name": "statusbartext",
"displayName": "Statusbar Text",
"description": "A custom Status Bar text to your vscode",
"publisher": "marceloxp",
"icon": "images/icon.png",
"license": "SEE LICENSE IN LICENSE",
"version": "0.0.5",
"engines": {
"vscode": "^1.92.0"
},
"categories": [
"Debuggers",
"Visualization"
],
"galleryBanner": {
"color": "#000080",
"theme": "dark"
},
"pricing": "Free",
"activationEvents": [
"onStartupFinished",
"onDidChangeConfiguration"
],
"main": "./extension.js",
"contributes": {
"configuration": {
"type": "object",
"title": "Status Bar Text Settings",
"properties": {
"statusbartext": {
"type": "object",
"default": {
"active": false,
"text": "🚀 Custom Text"
},
"description": "Setting to control status bar item text and visibility.",
"properties": {
"active": {
"type": "boolean",
"default": false,
"description": "Determines whether the status bar text is active."
},
"text": {
"type": "string",
"default": "🚀 Custom Text",
"description": "Text displayed in the status bar."
}
}
}
}
},
"commands": [
{
"command": "statusbartext.setTextOnClick",
"title": "StatusBarText: Set Text (On Click)"
},
{
"command": "statusbartext.setTextGlobal",
"title": "StatusBarText: Set Text (Global)"
},
{
"command": "statusbartext.setTextWorkspace",
"title": "StatusBarText: Set Text (Workspace)"
},
{
"command": "statusbartext.activateGlobal",
"title": "StatusBarText: Activate (Global)"
},
{
"command": "statusbartext.deactivateGlobal",
"title": "StatusBarText: Deactivate (Global)"
},
{
"command": "statusbartext.activateWorkspace",
"title": "StatusBarText: Activate (Workspace)"
},
{
"command": "statusbartext.deactivateWorkspace",
"title": "StatusBarText: Deactivate (Workspace)"
}
]
},
"scripts": {
"lint": "eslint .",
"pretest": "npm run lint",
"test": "vscode-test"
},
"devDependencies": {
"@types/mocha": "^10.0.7",
"@types/node": "20.x",
"@types/vscode": "^1.92.0",
"@vscode/test-cli": "^0.0.9",
"@vscode/test-electron": "^2.4.0",
"eslint": "^8.57.0",
"typescript": "^5.4.5"
},
"repository": {
"type": "git",
"url": "https://github.com/marceloxp/statusbartext.git"
},
"bugs": {
"url": "https://github.com/marceloxp/statusbartext/issues"
},
"homepage": "https://github.com/marceloxp/statusbartext#readme"
}