-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
99 lines (98 loc) · 4.23 KB
/
Copy pathpackage.json
File metadata and controls
99 lines (98 loc) · 4.23 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
{
"name": "commentstyler-ai",
"displayName": "CommentStyler.AI",
"description": "Renders structured comments as styled headings, callouts, and more — language agnostic.",
"version": "1.0.0",
"publisher": "commentstylerai",
"type": "commonjs",
"engines": { "vscode": "^1.85.0" },
"categories": ["Other"],
"activationEvents": ["onStartupFinished", "workspaceContains:**/*"],
"main": "./out/extension.js",
"repository": {
"type": "git",
"url": "https://github.com/RylanHexx/CommentStyler-AI"
},
"contributes": {
"commands": [
{
"command": "commentstyle.toggle",
"title": "CommentStyler.AI: Toggle Styling On/Off"
},
{
"command": "commentstyle.refresh",
"title": "CommentStyler.AI: Refresh Outline"
},
{
"command": "commentstyle.init",
"title": "CommentStyler.AI: Add .commentstyle.md to Project"
}
],
"views": {
"explorer": [
{
"icon": "icon.png",
"id": "commentstyle.outline",
"name": "Code Outline",
"when": "true"
}
]
},
"configuration": {
"title": "CommentStyle",
"properties": {
"commentstyle.enabled": {
"type": "boolean",
"default": true,
"description": "Enable comment styling."
},
"commentstyle.theme": {
"type": "string",
"enum": ["dark", "minimal", "vibrant"],
"enumDescriptions": [
"Dark theme (default) — muted purples, cyans, and pastels",
"Minimal — low-contrast greyscale, easy on the eyes",
"Vibrant — high-contrast Dracula-style colors"
],
"default": "dark",
"description": "Base color theme. Individual tag colors below override this."
},
"commentstyle.colors.h1": { "type": "string", "format": "color", "description": "# H1 heading color" },
"commentstyle.colors.h2": { "type": "string", "format": "color", "description": "## H2 heading color" },
"commentstyle.colors.h3": { "type": "string", "format": "color", "description": "### H3 heading color" },
"commentstyle.colors.bold": { "type": "string", "format": "color", "description": "*bold* text color" },
"commentstyle.colors.para": { "type": "string", "format": "color", "description": "\"\"\" paragraph \"\"\" text color" },
"commentstyle.colors.noteBg": { "type": "string", "format": "color", "description": "> Note: background color" },
"commentstyle.colors.noteFg": { "type": "string", "format": "color", "description": "> Note: text & border color" },
"commentstyle.colors.warnBg": { "type": "string", "format": "color", "description": "! WARNING: background color" },
"commentstyle.colors.warnFg": { "type": "string", "format": "color", "description": "! WARNING: text color" },
"commentstyle.colors.dangerBg": { "type": "string", "format": "color", "description": "!! DANGER: background color" },
"commentstyle.colors.dangerFg": { "type": "string", "format": "color", "description": "!! DANGER: text color" },
"commentstyle.colors.todo": { "type": "string", "format": "color", "description": "[ ] TODO: color" },
"commentstyle.colors.done": { "type": "string", "format": "color", "description": "[x] DONE: color" },
"commentstyle.colors.depr": { "type": "string", "format": "color", "description": "~~ deprecated ~~ color" },
"commentstyle.colors.divider": { "type": "string", "format": "color", "description": "--- divider --- color" },
"commentstyle.colors.param": { "type": "string", "format": "color", "description": "@param color" },
"commentstyle.colors.returns": { "type": "string", "format": "color", "description": "@returns color" }
}
},
"keybindings": [
{
"command": "commentstyle.toggle",
"key": "ctrl+shift+;",
"mac": "cmd+shift+;",
"when": "editorTextFocus"
}
]
},
"scripts": {
"vscode:prepublish": "npm run compile",
"compile": "tsc -p ./",
"watch": "tsc -watch -p ./"
},
"devDependencies": {
"@types/vscode": "^1.85.0",
"@types/node": "^18.0.0",
"typescript": "^5.3.0"
}
}