-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
176 lines (176 loc) · 5.13 KB
/
Copy pathpackage.json
File metadata and controls
176 lines (176 loc) · 5.13 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
168
169
170
171
172
173
174
175
176
{
"name": "markdown-checkbox-preview",
"displayName": "Markdown Checkbox Preview",
"description": "Interactive Markdown checkbox codelens actions (toggle) support, preview with real-time sync, tree view navigation, and comprehensive task management for VS Code",
"version": "1.0.9",
"publisher": "GSejas",
"license": "MIT",
"icon": "media/icon.png",
"repository": {
"type": "git",
"url": "https://github.com/gsejas/markdown-checkbox-preview.git"
},
"bugs": {
"url": "https://github.com/gsejas/markdown-checkbox-preview/issues"
},
"homepage": "https://github.com/gsejas/markdown-checkbox-preview#readme",
"keywords": [
"markdown",
"preview",
"checkbox",
"task",
"todo",
"checklist",
"interactive",
"sync",
"tree-view",
"productivity"
],
"engines": {
"vscode": "^1.84.0"
},
"categories": [
"Other",
"Visualization",
"Formatters"
],
"activationEvents": [
"onLanguage:markdown"
],
"main": "./dist/extension.js",
"contributes": {
"configuration": {
"title": "Markdown Checkbox Preview",
"properties": {
"markdown-checkbox-preview.enableCodeLens": {
"type": "boolean",
"default": true,
"description": "Enable CodeLens for markdown checkboxes"
},
"markdown-checkbox-preview.autoPreview": {
"type": "boolean",
"default": false,
"description": "Automatically open preview panel when opening markdown files"
}
}
},
"commands": [
{
"command": "checkboxPreview.open",
"title": "Open Interactive Checkbox Preview",
"icon": "$(preview)"
},
{
"command": "checkboxPreview.toggleAutoPreview",
"title": "Toggle Auto-Preview",
"icon": "$(eye)"
},
{
"command": "checkboxPreview.toggleDebug",
"title": "Toggle Debug Logging",
"icon": "$(bug)"
},
{
"command": "checkboxTree.refresh",
"title": "Refresh",
"icon": "$(refresh)"
},
{
"command": "checkboxTree.toggleHeaders",
"title": "Toggle Headers",
"icon": "$(eye)"
},
{
"command": "checkboxTree.toggle",
"title": "Toggle Checkbox",
"icon": "$(check)"
}
],
"views": {
"explorer": [
{
"id": "checkboxTree",
"name": "Markdown Checkboxes",
"when": "resourceExtname == .md"
}
]
},
"menus": {
"editor/title": [
{
"command": "checkboxPreview.open",
"when": "resourceLangId == markdown",
"group": "navigation"
}
],
"commandPalette": [
{
"command": "checkboxPreview.open",
"when": "resourceLangId == markdown"
}
],
"view/title": [
{
"command": "checkboxTree.refresh",
"when": "view == checkboxTree",
"group": "navigation"
}
,
{
"command": "checkboxTree.toggleHeaders",
"when": "view == checkboxTree",
"group": "navigation"
}
],
"view/item/context": [
{
"command": "checkboxTree.toggle",
"when": "view == checkboxTree && viewItem == checkbox"
}
]
}
},
"scripts": {
"vscode:prepublish": "npm run package",
"compile": "npm run check-types && npm run lint && node esbuild.js",
"watch": "npm-run-all -p watch:*",
"watch:esbuild": "node esbuild.js --watch",
"watch:tsc": "tsc --noEmit --watch --project tsconfig.json",
"package": "npm run check-types && npm run lint && node esbuild.js --production",
"compile-tests": "tsc -p . --outDir out",
"watch-tests": "tsc -p . -w --outDir out",
"pretest": "npm run compile-tests && npm run compile && npm run lint",
"check-types": "tsc --noEmit",
"lint": "eslint src",
"test": "vscode-test",
"test:unit:coverage": "vscode-test --coverage",
"test:integration": "vscode-test",
"test:e2e": "playwright test",
"test:e2e:ui": "playwright test --ui",
"test:e2e:headed": "playwright test --headed",
"test:e2e:debug": "playwright test --debug",
"test:visual": "playwright test src/test/e2e/webview/",
"test:performance": "playwright test src/test/e2e/performance-accessibility.test.ts",
"test:all": "npm run test && npm run test:e2e",
"serve:test": "node -e \"require('http').createServer((req, res) => { res.writeHead(200, {'Content-Type': 'text/html'}); res.end('Test server running'); }).listen(3000, () => console.log('Test server on port 3000'));\""
},
"devDependencies": {
"@types/vscode": "^1.84.0",
"@types/mocha": "^10.0.10",
"@types/node": "22.x",
"@types/markdown-it": "^13.0.0",
"@typescript-eslint/eslint-plugin": "^8.39.0",
"@typescript-eslint/parser": "^8.39.0",
"eslint": "^9.32.0",
"esbuild": "^0.25.8",
"npm-run-all": "^4.1.5",
"typescript": "^5.9.2",
"@vscode/test-cli": "^0.0.11",
"@vscode/test-electron": "^2.5.2",
"@playwright/test": "^1.40.0",
"playwright": "^1.40.0"
},
"dependencies": {
"markdown-it": "^14.0.0"
}
}