-
-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage.json
More file actions
86 lines (86 loc) · 2.37 KB
/
package.json
File metadata and controls
86 lines (86 loc) · 2.37 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
{
"name": "markdown-text-editor",
"version": "1.0.1",
"description": "A simple JavaScript Markdown editor plugin with real-time preview, and easy integration.",
"funding": "https://ko-fi.com/nezanuha",
"main": "./dist/markdown-text-editor.js",
"browser": "dist/markdown-text-editor.js",
"style": "./dist/markdown-text-editor.css",
"files": [
"dist/",
"README.md",
"LICENSE"
],
"repository": {
"type": "git",
"url": "git+https://github.com/nezanuha/markdown-text-editor.git"
},
"scripts": {
"clean": "rimraf ./dist",
"dev": "webpack serve --config scripts/webpack.config.dev.js --mode=development",
"build": "npm run clean && webpack --config scripts/webpack.config.prod.js --mode=production",
"prepublishOnly": "npm run build",
"postversion": "git push origin main --tags"
},
"publishConfig": {
"provenance": true,
"access": "public"
},
"keywords": [
"markdown",
"mde",
"markdown js library",
"markdown js plugin",
"editor",
"markdown editor",
"Simple Markdown editor js plugin",
"text editor",
"markdown preview",
"markdown syntax",
"markdown plugin",
"rich text editor",
"wysiwyg",
"markdown formatting",
"tailwindcss",
"code editor",
"editor plugin",
"text formatting",
"markdown-text-editor",
"Tailwind css markdown editor",
"Tailwind css markdown",
"WYSIWYG-style markdown editor",
"Simple Markdown",
"Responsive markdown js editor",
"RTL Support markdown editor"
],
"author": "Nezanuha",
"license": "MIT",
"homepage": "https://github.com/nezanuha/markdown-text-editor",
"bugs": {
"url": "https://github.com/nezanuha/markdown-text-editor/issues"
},
"dependencies": {
"marked": "~17.0.3"
},
"devDependencies": {
"@babel/core": "^7.29.0",
"@babel/preset-env": "^7.29.0",
"@tailwindcss/postcss": "^4.2.0",
"@tailwindcss/typography": "^0.5.19",
"babel-loader": "^10.0.0",
"css-loader": "^7.1.4",
"diff": "^8.0.3",
"frutjam": "^1.9.1",
"html-webpack-plugin": "^5.6.6",
"mini-css-extract-plugin": "^2.10.0",
"postcss": "^8.5.6",
"postcss-loader": "^8.2.1",
"rimraf": "^6.1.3",
"style-loader": "^4.0.0",
"tailwindcss": "^4.2.0",
"terser-webpack-plugin": "^5.3.16",
"webpack": "^5.105.2",
"webpack-cli": "^6.0.1",
"webpack-dev-server": "^5.2.3"
}
}