-
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) · 5.4 KB
/
package.json
File metadata and controls
167 lines (167 loc) · 5.4 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": "antigravity-markdown-comment",
"displayName": "Antigravity Markdown Comment",
"description": "Open generated Markdown as an interactive document and continue commenting in a conversation panel.",
"version": "0.0.1",
"publisher": "domino",
"private": true,
"engines": {
"vscode": "^1.89.0"
},
"categories": [
"Other"
],
"activationEvents": [
"onCommand:antigravityMarkdownComment.openInteractiveDocument",
"onCommand:antigravityMarkdownComment.showConversation",
"onCommand:antigravityMarkdownComment.commentCurrentSelection",
"onCommand:antigravityMarkdownComment.copyCommentedDocumentPrompt",
"onCommand:antigravityMarkdownComment.sendCommentedDocumentToCodex",
"onCommand:antigravityMarkdownComment.sendCommentedDocumentToCopilot",
"onCommand:antigravityMarkdownComment.sendCommentedDocumentToKimi",
"onCommand:antigravityMarkdownComment.addFileToKimi",
"onCustomEditor:antigravityMarkdownComment.interactiveMarkdown"
],
"main": "./dist/extension.js",
"contributes": {
"customEditors": [
{
"viewType": "antigravityMarkdownComment.interactiveMarkdown",
"displayName": "Interactive Markdown",
"selector": [
{
"filenamePattern": "*.md"
}
],
"priority": "option"
}
],
"commands": [
{
"command": "antigravityMarkdownComment.openInteractiveDocument",
"title": "Open Interactive Markdown",
"icon": "$(open-preview)"
},
{
"command": "antigravityMarkdownComment.showConversation",
"title": "Show Comment Conversation",
"icon": "$(comment-discussion)"
},
{
"command": "antigravityMarkdownComment.commentCurrentSelection",
"title": "Comment Current Selection",
"icon": "$(comment)"
},
{
"command": "antigravityMarkdownComment.copyCommentedDocumentPrompt",
"title": "Copy Commented Document for AI",
"icon": "$(copy)"
},
{
"command": "antigravityMarkdownComment.sendCommentedDocumentToCodex",
"title": "Chat in Codex",
"icon": "$(comment-discussion)"
},
{
"command": "antigravityMarkdownComment.sendCommentedDocumentToCopilot",
"title": "Chat in Copilot",
"icon": "$(sparkle)"
},
{
"command": "antigravityMarkdownComment.sendCommentedDocumentToKimi",
"title": "Chat in Kimi",
"icon": "$(mention)"
},
{
"command": "antigravityMarkdownComment.addFileToKimi",
"title": "Add File to Kimi",
"icon": "$(mention)"
}
],
"menus": {
"editor/title": [
{
"command": "antigravityMarkdownComment.openInteractiveDocument",
"when": "resourceExtname == .md",
"group": "navigation"
},
{
"command": "antigravityMarkdownComment.showConversation",
"when": "resourceExtname == .md",
"group": "navigation"
},
{
"command": "antigravityMarkdownComment.sendCommentedDocumentToCopilot",
"when": "resourceExtname == .md",
"group": "navigation@10"
}
],
"explorer/context": [
{
"command": "antigravityMarkdownComment.openInteractiveDocument",
"when": "resourceExtname == .md",
"group": "navigation"
},
{
"command": "antigravityMarkdownComment.sendCommentedDocumentToCopilot",
"when": "resourceExtname == .md",
"group": "navigation"
},
{
"command": "antigravityMarkdownComment.addFileToKimi",
"when": "resourceExtname == .md",
"group": "2_support@1"
}
],
"editor/context": [
{
"command": "antigravityMarkdownComment.commentCurrentSelection",
"when": "editorHasSelection"
}
]
},
"keybindings": [
{
"command": "antigravityMarkdownComment.commentCurrentSelection",
"key": "alt+m",
"mac": "alt+m",
"when": "editorTextFocus && editorHasSelection"
}
],
"configuration": {
"title": "Antigravity Markdown Comment",
"properties": {
"antigravityMarkdownComment.externalCommentCommand": {
"type": "string",
"default": "",
"description": "Optional command id to execute whenever a selection comment or conversation message is submitted. The extension sends a structured payload and will render the command result if it returns a string or object."
},
"antigravityMarkdownComment.enableDemoAssistant": {
"type": "boolean",
"default": true,
"description": "Show a built-in demo reply when no external command bridge is configured."
},
"antigravityMarkdownComment.autoSendCommentedDocumentToCodex": {
"type": "boolean",
"default": false,
"description": "When a review note is created or updated, automatically generate a commented snapshot and add it to the current Codex thread."
}
}
}
},
"scripts": {
"compile": "tsc -p ./",
"watch": "tsc -w -p ./",
"check": "npm run compile"
},
"devDependencies": {
"@types/markdown-it": "^14.1.2",
"@types/node": "^22.15.21",
"@types/vscode": "^1.89.0",
"typescript": "^5.8.3"
},
"dependencies": {
"markdown-it": "^14.1.0",
"mermaid": "^11.13.0"
}
}