-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
155 lines (155 loc) · 4.42 KB
/
package.json
File metadata and controls
155 lines (155 loc) · 4.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
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
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
{
"name": "python-colorful-print",
"displayName": "Python Colorful Print",
"description": "Enhances Python print statements with customizable colored output for improved readability of log messages.",
"version": "0.2.5",
"activationEvents": [
"onCommand:python-colorful-print.colorfulPrint",
"onCommand:python-colorful-print.removeAllPrints"
],
"engines": {
"vscode": "^1.75.0"
},
"publisher": "AliYaman",
"author": {
"name": "AliYaman"
},
"repository": {
"type": "git",
"url": "https://github.com/AliYmn/python-colorful-print"
},
"icon": "images/icon.png",
"galleryBanner": {
"color": "#C80000",
"theme": "dark"
},
"categories": [
"Programming Languages",
"Debuggers",
"Other"
],
"keywords": [
"Python",
"Print",
"Log",
"Colorful"
],
"main": "./src/extension.js",
"contributes": {
"languages": [
{
"id": "python",
"aliases": [
"Python",
"Python3"
],
"extensions": [
".py"
]
}
],
"commands": [
{
"command": "python-colorful-print.colorfulPrint",
"title": "Colorful Print"
},
{
"command": "python-colorful-print.removeAllPrints",
"title": "Remove All Print Statements"
}
],
"keybindings": [
{
"command": "python-colorful-print.colorfulPrint",
"key": "ctrl+shift+l",
"mac": "cmd+shift+l",
"when": "editorTextFocus"
},
{
"command": "python-colorful-print.removeAllPrints",
"key": "ctrl+shift+r",
"mac": "cmd+shift+r",
"when": "editorTextFocus"
}
],
"configuration": {
"type": "object",
"title": "Python Colorful Print Settings",
"properties": {
"python-colorful-print.enableLineInfo": {
"type": "boolean",
"default": true,
"description": "Enable or disable line number information in print statements"
},
"python-colorful-print.keyColorMode": {
"type": "string",
"enum": [
"random",
"custom"
],
"default": "random",
"description": "Choose how to set the key (variable name) color. 'random' for random colors, 'custom' for your own color"
},
"python-colorful-print.keyColorCustom": {
"type": "string",
"default": "#FF0000",
"description": "Custom color for the key (variable name) in hex format",
"scope": "window",
"markdownDescription": "Pick a custom color for the key (variable name)",
"when": "python-colorful-print.keyColorMode == 'custom'"
},
"python-colorful-print.valueColorMode": {
"type": "string",
"enum": [
"random",
"custom"
],
"default": "random",
"description": "Choose how to set the value (variable value) color. 'random' for random colors, 'custom' for your own color"
},
"python-colorful-print.valueColorCustom": {
"type": "string",
"default": "#00FF00",
"description": "Custom color for the value (variable value) in hex format",
"scope": "window",
"markdownDescription": "Pick a custom color for the value (variable value)",
"when": "python-colorful-print.valueColorMode == 'custom'"
},
"python-colorful-print.enableColor": {
"type": "boolean",
"default": true,
"description": "Enable or disable colorful output in print statements"
},
"python-colorful-print.enableDateStamp": {
"type": "boolean",
"default": false,
"description": "Enable or disable date stamp in print statements"
},
"python-colorful-print.enableTypeInfo": {
"type": "boolean",
"default": true,
"description": "Enable or disable variable type information in print statements"
}
}
}
},
"scripts": {
"lint": "eslint .",
"pretest": "npm run lint",
"test": "node ./test/runTest.js"
},
"devDependencies": {
"@types/mocha": "^10.0.0",
"@types/node": "16.x",
"@types/vscode": "^1.75.0",
"@vscode/test-electron": "^2.4.1",
"eslint": "^8.24.0",
"eslint-plugin-mocha": "^10.5.0",
"glob": "^8.0.3",
"mocha": "^10.2.0",
"typescript": "^4.8.4"
},
"dependencies": {
"lint": "^0.8.19"
}
}