forked from onedark23/suneditor
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
75 lines (75 loc) · 1.94 KB
/
package.json
File metadata and controls
75 lines (75 loc) · 1.94 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
{
"name": "suneditor",
"version": "2.47.6",
"description": "Vanilla JavaScript WYSIWYG web editor (2.x legacy version, actively maintained)",
"author": "JiHong.Lee",
"license": "MIT",
"main": "src/suneditor.js",
"sideEffects": [
"./src/assets/css/*.css"
],
"scripts": {
"dev": "NODE_OPTIONS=--openssl-legacy-provider webpack-dev-server --config webpack.dev.js",
"start": "NODE_OPTIONS=--openssl-legacy-provider npm run dev",
"build": "NODE_OPTIONS=--openssl-legacy-provider webpack --config webpack.prod.js",
"lint": "jshint src",
"test": "karma start"
},
"bugs": {
"url": "https://github.com/JiHong88/SunEditor/issues"
},
"homepage": "http://suneditor.com",
"repository": {
"type": "git",
"url": "https://github.com/JiHong88/SunEditor.git"
},
"ignore": [
"**/.*",
"node_modules",
"bower_components"
],
"devDependencies": {
"@babel/core": "~7.21.3",
"@octokit/rest": "~20.1.0",
"@webpack-cli/init": "~1.1.3",
"babel-loader": "~8.1.0",
"clean-webpack-plugin": "~0.1.19",
"codemirror": "~5.61.0",
"css-loader": "~1.0.1",
"csstype": "~2.6.13",
"file-loader": "~2.0.0",
"html-webpack-plugin": "~3.2.0",
"jasmine": "~2.99.0",
"jasmine-core": "~2.99.1",
"jshint": "~2.13.4",
"karma": "~6.3.19",
"karma-chrome-launcher": "~2.2.0",
"karma-jasmine": "~1.1.2",
"katex": "^0.16.21",
"mini-css-extract-plugin": "~0.4.5",
"optimize-css-assets-webpack-plugin": "~5.0.4",
"url-loader": "~1.1.2",
"webpack": "~4.44.1",
"webpack-cli": "~3.3.12",
"webpack-dev-server": "~3.11.0",
"webpack-merge": "~4.2.2"
},
"keywords": [
"wysiwyg",
"wysiwyg editor",
"wysiwyg html editor",
"rich text",
"rich editor",
"rich text editor",
"html",
"text",
"editor",
"contenteditable",
"javascript",
"vanillajs"
],
"dependencies": {
"anchorme": "^3.0.8",
"showdown": "^2.1.0"
}
}