-
Notifications
You must be signed in to change notification settings - Fork 46
/
package.json
101 lines (101 loc) · 2.52 KB
/
package.json
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
{
"name": "md-editor-rt",
"version": "5.0.2",
"license": "MIT",
"keywords": [
"react",
"nextjs",
"javascript",
"typescript",
"jsx",
"tsx",
"ssr",
"markdown",
"editor",
"theme",
"html"
],
"description": "Markdown editor for react, developed in jsx and typescript, dark theme、beautify content by prettier、render articles directly、paste or clip the picture and upload it...",
"author": {
"name": "zbf",
"url": "https://github.com/imzbf"
},
"homepage": "https://imzbf.github.io/md-editor-rt/",
"repository": {
"type": "git",
"url": "git+https://github.com/imzbf/md-editor-rt.git"
},
"bugs": {
"url": "https://github.com/imzbf/md-editor-rt/issues"
},
"files": [
"lib"
],
"type": "module",
"types": "./lib/types/index.d.ts",
"main": "./lib/cjs/index.cjs",
"module": "./lib/es/index.mjs",
"sideEffects": [
"**/*.css"
],
"scripts": {
"dev": "tsx ./scripts/dev",
"build": "tsx ./scripts/build"
},
"dependencies": {
"@codemirror/lang-markdown": "^6.3.0",
"@codemirror/language-data": "^6.5.1",
"@types/markdown-it": "^14.0.1",
"@vavt/util": "^2.1.0",
"codemirror": "^6.0.1",
"copy-to-clipboard": "^3.3.3",
"lru-cache": "^11.0.1",
"lucide-react": "^0.454.0",
"markdown-it": "^14.0.0",
"markdown-it-image-figures": "^2.1.1",
"markdown-it-sub": "^2.0.0",
"markdown-it-sup": "^2.0.0",
"medium-zoom": "^1.1.0",
"xss": "^1.0.15"
},
"devDependencies": {
"@eslint/js": "^9.13.0",
"@types/katex": "^0.16.7",
"@types/multiparty": "^4.2.1",
"@types/node": "^22.8.2",
"@types/react": "^18.3.12",
"@types/react-dom": "^18.3.1",
"@vavt/markdown-theme": "^4.2.1",
"@vavt/vite-plugin-import-markdown": "^1.0.1",
"@vitejs/plugin-react": "^4.3.3",
"axios": "^1.7.7",
"cropperjs": "^1.6.2",
"eslint": "^9.13.0",
"eslint-plugin-react-hooks": "^5.0.0",
"eslint-plugin-react-refresh": "^0.4.13",
"globals": "^15.11.0",
"highlight.js": "^11.10.0",
"katex": "^0.16.11",
"less": "^4.2.0",
"mermaid": "^11.3.0",
"multiparty": "^4.2.3",
"prettier": "^3.3.3",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"screenfull": "^6.0.2",
"tsc-alias": "^1.8.10",
"tsx": "^4.19.2",
"typescript": "~5.6.2",
"typescript-eslint": "^8.10.0",
"vite": "^5.4.9"
},
"peerDependencies": {
"react": ">=18.0.0",
"react-dom": ">=18.0.0"
},
"browserslist": [
"> 1%",
"last 2 versions",
"not dead"
]
}