-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
65 lines (65 loc) · 2.13 KB
/
package.json
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
{
"name": "theme-font-switcher",
"displayName": "Theme Font Switcher",
"description": "Switch fonts based on VS Code theme",
"version": "0.0.1",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/yourusername/theme-font-switcher"
},
"engines": {
"vscode": "^1.60.0"
},
"main": "./out/extension.js",
"contributes": {
"configuration": {
"title": "Theme Font Switcher",
"properties": {
"themeFontSwitcher.lightThemeFont": {
"type": "string",
"default": "monospace",
"description": "Font to use with light themes."
},
"themeFontSwitcher.darkThemeFont": {
"type": "string",
"default": "monospace",
"description": "Font to use with dark themes."
},
"themeFontSwitcher.lightThemeFontSize": {
"type": "number",
"default": 14,
"description": "Font size to use with light themes",
"minimum": 6,
"maximum": 72,
"order": 2
},
"themeFontSwitcher.darkThemeFontSize": {
"type": "number",
"default": 14,
"description": "Font size to use with dark themes",
"minimum": 6,
"maximum": 72,
"order": 2
},
"themeFontSwitcher.verbose": {
"type": "boolean",
"default": false,
"description": "Enable verbose logging for debugging"
}
}
}
},
"scripts": {
"compile": "tsc -p ./",
"watch": "tsc -watch -p ./",
"package": "vsce package"
},
"devDependencies": {
"@types/node": "^20.10.5",
"@types/vscode": "^1.60.0",
"@vscode/vsce": "^3.2.1",
"typescript": "^5.3.3"
},
"activationEvents": ["onStartupFinished"]
}