-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
71 lines (71 loc) · 2.34 KB
/
package.json
File metadata and controls
71 lines (71 loc) · 2.34 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
{
"name": "matugen-theme-bridge",
"displayName": "Matugen Theme Bridge",
"description": "Dynamically applies Matugen/Material You color palettes to VS Code / VSCodium without reloading",
"version": "1.0.0",
"publisher": "matugen-bridge",
"license": "MIT",
"engines": { "vscode": "^1.75.0" },
"categories": ["Themes", "Other"],
"keywords": ["matugen", "material-you", "dynamic-theme", "live-colors", "hyprland"],
"activationEvents": ["onStartupFinished"],
"main": "./out/extension.js",
"contributes": {
"themes": [
{
"label": "Matugen Dark",
"uiTheme": "vs-dark",
"path": "./resources/themes/matugen-dark-base.json"
},
{
"label": "Matugen Light",
"uiTheme": "vs",
"path": "./resources/themes/matugen-light-base.json"
}
],
"commands": [
{ "command": "matugenBridge.applyNow", "title": "Matugen: Apply Palette Now" },
{ "command": "matugenBridge.clearOverrides", "title": "Matugen: Clear Color Overrides" },
{ "command": "matugenBridge.showStatus", "title": "Matugen: Show Bridge Status" }
],
"configuration": {
"title": "Matugen Theme Bridge",
"properties": {
"matugenBridge.palettePath": {
"type": "string",
"default": "",
"markdownDescription": "Override palette file path. Leave empty for default:\n`~/.config/VSCodium/User/Theme/vscode-palette.json`\n\nSupports `~` expansion."
},
"matugenBridge.debounceMs": {
"type": "number",
"default": 300,
"minimum": 50,
"maximum": 5000,
"description": "Wait time (ms) after palette change before reapplying colors."
},
"matugenBridge.enabled": {
"type": "boolean",
"default": true,
"description": "Master switch for the Matugen Theme Bridge."
},
"matugenBridge.logLevel": {
"type": "string",
"default": "info",
"enum": ["silent", "info", "debug"],
"description": "Output channel verbosity."
}
}
}
},
"scripts": {
"vscode:prepublish": "npm run compile",
"compile": "tsc -p ./",
"watch": "tsc -watch -p ./",
"package": "npx vsce package"
},
"devDependencies": {
"@types/node": "^18.0.0",
"@types/vscode": "^1.75.0",
"typescript": "^5.0.0"
}
}