forked from lwxyfer/new-markdown-extension
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
100 lines (100 loc) · 3.26 KB
/
Copy pathpackage.json
File metadata and controls
100 lines (100 loc) · 3.26 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
{
"name": "new-markdown-editor",
"displayName": "New Markdown Editor",
"publisher": "lwxyfer",
"description": "A rich WYSIWYG Markdown editor for VSCode with Mermaid diagram support",
"version": "1.0.3",
"repository": {
"type": "git",
"url": "https://github.com/lwxyfer/new-markdown-extension"
},
"icon": "logo.png",
"engines": {
"vscode": "^1.60.0"
},
"categories": [
"Formatters"
],
"main": "./dist/extension.js",
"activationEvents": [
"onCustomEditor:new-markdown.markdownEditor"
],
"contributes": {
"customEditors": [
{
"viewType": "new-markdown.markdownEditor",
"displayName": "New Markdown Editor",
"selector": [
{
"filenamePattern": "*.md"
}
]
}
]
},
"scripts": {
"dev": "concurrently \"npm run watch:extension\" \"npm run watch:webview\"",
"build": "tsc && vite build",
"lint": "eslint . --ext ts,tsx --report-unused-disable-directives --max-warnings 0",
"preview": "vite preview",
"package": "vsce package",
"compile": "tsc -p tsconfig.extension.json",
"build:vscode": "vite build --config vscode-build.config.js",
"build:extension": "npm run build:webview && npm run compile",
"build:webview": "vite build --config vite.webview.config.js",
"build:all": "npm run build:webview && npm run compile && node build.js",
"watch:extension": "tsc -watch -p tsconfig.extension.json",
"watch:webview": "vite build --config vite.webview.config.js --watch"
},
"devDependencies": {
"@types/mermaid": "^9.1.0",
"@types/node": "^20.x",
"@types/react": "^19.0.2",
"@types/react-dom": "^19.0.2",
"@types/turndown": "^5.0.5",
"@types/vscode": "^1.60.0",
"@typescript-eslint/eslint-plugin": "^8.0.0",
"@typescript-eslint/parser": "^8.0.0",
"@vitejs/plugin-react": "^4.3.0",
"concurrently": "^9.2.1",
"eslint": "^9.0.0",
"eslint-plugin-react-hooks": "^5.0.0",
"eslint-plugin-react-refresh": "^0.4.0",
"terser": "^5.44.0",
"typescript": "^5.6.3",
"vite": "^6.0.0",
"vsce": "^2.15.0"
},
"dependencies": {
"@tiptap/extension-bubble-menu": "^3.6.5",
"@tiptap/extension-code-block-lowlight": "^3.6.2",
"@tiptap/extension-highlight": "^3.6.2",
"@tiptap/extension-image": "^3.6.2",
"@tiptap/extension-link": "^3.6.2",
"@tiptap/extension-mathematics": "^3.7.0",
"@tiptap/extension-placeholder": "^3.6.5",
"@tiptap/extension-subscript": "^3.6.2",
"@tiptap/extension-superscript": "^3.6.2",
"@tiptap/extension-table": "^3.6.5",
"@tiptap/extension-table-cell": "^3.6.2",
"@tiptap/extension-table-header": "^3.6.2",
"@tiptap/extension-table-of-contents": "^3.6.6",
"@tiptap/extension-table-row": "^3.6.2",
"@tiptap/extension-task-item": "^3.6.2",
"@tiptap/extension-task-list": "^3.6.2",
"@tiptap/extension-text-align": "^3.6.2",
"@tiptap/extension-underline": "^3.6.2",
"@tiptap/react": "^3.6.2",
"@tiptap/starter-kit": "^3.6.2",
"@tiptap/suggestion": "^3.6.2",
"katex": "^0.16.25",
"lowlight": "^3.3.0",
"lucide-react": "^0.544.0",
"markdown-it": "^14.1.0",
"mermaid": "^11.12.0",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"tippy.js": "^6.3.7",
"turndown": "^7.2.1"
}
}