forked from imzbf/md-editor-rt
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
109 lines (109 loc) · 2.73 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
102
103
104
105
106
107
108
109
{
"name": "md-editor-rt",
"version": "4.11.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": "tsc && tsx ./scripts/build"
},
"dependencies": {
"@codemirror/lang-markdown": "^6.1.1",
"@codemirror/language-data": "^6.3.0",
"@types/markdown-it": "^12.2.3",
"@vavt/util": "^1.4.1",
"codemirror": "^6.0.1",
"copy-to-clipboard": "^3.3.3",
"lru-cache": "^8.0.4",
"markdown-it": "^13.0.1",
"markdown-it-image-figures": "^2.1.1",
"markdown-it-task-lists": "^2.1.1",
"medium-zoom": "^1.0.8",
"punycode": "^2.3.0"
},
"devDependencies": {
"@babel/core": "^7.21.3",
"@babel/preset-react": "^7.18.6",
"@types/katex": "^0.16.0",
"@types/multiparty": "^0.0.33",
"@types/node": "^18.15.3",
"@types/prettier": "^2.7.2",
"@types/react": "^18.0.28",
"@types/react-dom": "^18.0.11",
"@typescript-eslint/eslint-plugin": "^5.55.0",
"@typescript-eslint/parser": "^5.55.0",
"@vavt/markdown-theme": "^3.2.0",
"@vavt/vite-plugin-import-markdown": "^1.0.0",
"@vitejs/plugin-react": "^3.1.0",
"axios": "^1.3.4",
"cropperjs": "^1.5.13",
"eslint": "^8.36.0",
"eslint-plugin-react": "^7.32.2",
"eslint-plugin-react-hooks": "^4.6.0",
"highlight.js": "^11.7.0",
"katex": "^0.16.4",
"less": "^4.1.3",
"mermaid": "^10.0.2",
"multiparty": "^4.2.3",
"prettier": "^2.8.4",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"screenfull": "^6.0.2",
"tsx": "^3.12.7",
"typescript": "^5.0.4",
"vite": "^4.3.5",
"vite-plugin-dts": "^2.3.0"
},
"prettier": {
"singleQuote": true,
"trailingComma": "none",
"semi": true,
"printWidth": 90,
"proseWrap": "never",
"endOfLine": "auto"
},
"peerDependencies": {
"react": ">=16.9.0",
"react-dom": ">=16.9.0"
},
"browserslist": [
"> 1%",
"last 2 versions",
"not dead"
]
}