-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
84 lines (84 loc) · 2.39 KB
/
package.json
File metadata and controls
84 lines (84 loc) · 2.39 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
{
"name": "inky",
"displayName": "Inky - experimental",
"description": "Per-workspace color themes stored outside your repo or global user settings, synced across devices using Settings Sync and global state.",
"version": "1.1.0",
"publisher": "alan-null",
"engines": {
"vscode": "^1.85.0"
},
"icon": "assets/logo.png",
"categories": [
"Themes",
"Other"
],
"activationEvents": [
"onStartupFinished"
],
"main": "./out/extension.js",
"repository": {
"type": "git",
"url": "https://github.com/alan-null/vscode-inky"
},
"contributes": {
"configuration": {
"title": "Inky",
"properties": {
"inky.logging": {
"type": "boolean",
"default": false,
"description": "Enable the Inky output channel for diagnostics. When disabled, no channel is created and nothing is logged. Takes effect immediately."
},
"inky.syncPolling.enabled": {
"type": "boolean",
"default": true,
"description": "Poll globalState for Settings Sync changes from other machines. Disable if you only use one machine or prefer restart-based sync."
},
"inky.syncPolling.intervalSeconds": {
"type": "number",
"default": 60,
"minimum": 5,
"maximum": 3600,
"description": "How often (in seconds) to check for Settings Sync updates from other machines. Only applies when polling is enabled."
}
}
},
"commands": [
{
"command": "inky.setTheme",
"title": "Inky: Set theme for this workspace"
},
{
"command": "inky.editCustomThemes",
"title": "Inky: Edit custom themes file"
},
{
"command": "inky.clearTheme",
"title": "Inky: Clear theme for this workspace"
},
{
"command": "inky.listMappings",
"title": "Inky: List / manage all workspace themes"
},
{
"command": "inky.debug",
"title": "Inky: Debug — dump global state to console"
},
{
"command": "inky.resetAll",
"title": "Inky: Reset — clear ALL saved data"
}
]
},
"scripts": {
"compile": "tsc -p ./",
"watch": "tsc -watch -p ./",
"package": "vsce package"
},
"devDependencies": {
"@types/node": "^20.0.0",
"@types/vscode": "^1.85.0",
"@vscode/vsce": "^2.24.0",
"typescript": "^5.3.0"
}
}