-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
167 lines (167 loc) · 4.21 KB
/
package.json
File metadata and controls
167 lines (167 loc) · 4.21 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
156
157
158
159
160
161
162
163
164
165
166
167
{
"name": "vsc-a11y",
"displayName": "VSC A11Y",
"version": "2.1.1",
"repository": {
"type": "git",
"url": "https://github.com/Jsjjjs6066/VSC-a11y"
},
"publisher": "CHAOSJosipovac",
"icon": "images/icon.png",
"engines": {
"vscode": "^1.108.1"
},
"categories": [
"Other"
],
"activationEvents": [
"onStartupFinished"
],
"main": "./out/extension.js",
"contributes": {
"viewsContainers": {
"activitybar": [
{
"id": "bolji-pogled_color_container",
"title": "Color Configuration",
"icon": "$(symbol-color)"
},
{
"id": "bolji-pogled_ishihara_container",
"title": "Ishihara test",
"icon": "$(eye)"
}
]
},
"views": {
"bolji-pogled_color_container": [
{
"id": "bolji-pogled.colorWebview",
"name": "Color Configuration",
"type": "webview",
"icon": "$(palette)"
}
],
"bolji-pogled_ishihara_container": [
{
"id": "bolji-pogled_ishihara-webview",
"name": "Ishihara Test",
"type": "webview",
"icon": "$(eye)"
}
]
},
"commands": [
{
"command": "bolji-pogled.helloWorld",
"title": "Hello World"
},
{
"command": "bolji-pogled.configureDiagnosticColors",
"title": "Configure Error/Warning Colors"
},
{
"command": "bolji-pogled.setErrorColor",
"title": "Set Error Color"
},
{
"command": "bolji-pogled.setWarningColor",
"title": "Set Warning Color"
},
{
"command": "bolji-pogled.resetDiagnosticColors",
"title": "Reset Error/Warning Colors"
},
{
"command": "ishihara.start",
"title": "Start Ishihara Test"
}
],
"configuration": {
"title": "A11Y Settings",
"properties": {
"a11ySettings.errorColor": {
"type": "string",
"default": "#D81B60",
"description": "Hex color for errors. Use #RRGGBB or #RRGGBBAA."
},
"a11ySettings.warningColor": {
"type": "string",
"default": "#B26A00",
"description": "Hex color for warnings. Use #RRGGBB or #RRGGBBAA."
},
"a11ySettings.minFontSize": {
"type": "number",
"default": 20,
"minimum": 1,
"description": "Minimum font size for the terminal and debug console."
}
}
},
"themes": [
{
"label": "normal-dark-theme",
"uiTheme": "vs-dark",
"path": "./themes/normal-dark-theme.json"
},
{
"label": "normal-light-theme",
"uiTheme": "vs",
"path": "./themes/normal-light-theme.json"
},
{
"label": "deuteranopia-dark-theme",
"uiTheme": "vs-dark",
"path": "./themes/deuteranopia-dark-theme.json"
},
{
"label": "deuteranopia-white-theme",
"uiTheme": "vs",
"path": "./themes/deuteranopia-white-theme.json"
},
{
"label": "protanopia-dark-theme",
"uiTheme": "vs-dark",
"path": "./themes/protanopia-dark-theme.json"
},
{
"label": "protanopia-white-theme",
"uiTheme": "vs",
"path": "./themes/protanopia-white-theme.json"
},
{
"label": "tritanopia-dark-theme",
"uiTheme": "vs-dark",
"path": "./themes/tritanopia-dark-theme.json"
},
{
"label": "tritanopia-white-theme",
"uiTheme": "vs",
"path": "./themes/tritanopia-white-theme.json"
}
]
},
"scripts": {
"vscode:prepublish": "npm run compile",
"compile": "tsc -p ./",
"watch": "tsc -watch -p ./",
"pretest": "npm run compile && npm run lint",
"lint": "eslint src",
"test": "vscode-test"
},
"devDependencies": {
"@types/mocha": "^10.0.10",
"@types/node": "^22.19.17",
"@types/sinon": "^21.0.1",
"@types/vscode": "^1.108.1",
"@vscode/test-cli": "^0.0.11",
"@vscode/test-electron": "^2.5.2",
"eslint": "^9.39.2",
"typescript": "^5.9.3",
"typescript-eslint": "^8.54.0"
},
"dependencies": {
"sinon": "^21.0.3",
"vsce": "^2.15.0"
}
}