-
Notifications
You must be signed in to change notification settings - Fork 357
/
Copy pathpackage.json
130 lines (130 loc) · 3.54 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
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
{
"name": "jodit",
"version": "4.5.3",
"description": "Jodit is an awesome and useful wysiwyg editor with filebrowser",
"main": "build/jodit.min.js",
"types": "./types/index.d.ts",
"scripts": {
"start": "make start",
"clean": "make clean",
"lint": "make lint",
"coverage": "make coverage",
"newversion": "make newversion",
"build": "make build-all",
"test": "make test browsers=chrome_headless",
"test:screenshots": "make screenshots-test",
"test:debug": "make test-only-run browsers=chrome_debug singleRun=false",
"test:chrome": "make test-only-run browsers=chrome_debug",
"jodit": "make jodit",
"pretty": "make prettify",
"fix": "make fix",
"type:build": "make dts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/xdan/jodit.git"
},
"keywords": [
"wysiwyg",
"wysiwyg editor",
"wysiwyg html editor",
"rich text",
"rich editor",
"rich text editor",
"html",
"text",
"editor",
"contenteditable",
"javascript",
"typescript",
"vanillajs",
"jodit"
],
"author": "Chupurnov <chupurnov@gmail.com> (https://xdsoft.net/jodit/)",
"license": "MIT",
"bugs": {
"url": "https://github.com/xdan/jodit/issues"
},
"homepage": "https://xdsoft.net/jodit/",
"dependencies": {
"autobind-decorator": "^2.4.0"
},
"devDependencies": {
"@eslint/compat": "^1.2.3",
"@eslint/eslintrc": "^3.2.0",
"@eslint/js": "^9.16.0",
"@playwright/test": "^1.49.0",
"@swc/core": "^1.10.11",
"@types/ace": "^0.0.52",
"@types/fs-extra": "^11.0.4",
"@types/karma": "^6.3.9",
"@types/mime-types": "^2.1.4",
"@types/mocha": "^10.0.10",
"@types/node": "^22.10.1",
"@types/postcss-css-variables": "^0.18.3",
"@types/yargs": "^17.0.33",
"@typescript-eslint/eslint-plugin": "^8.16.0",
"@typescript-eslint/parser": "^8.16.0",
"autoprefixer": "^10.4.20",
"axios": "^1.7.8",
"chai": "^4.5.0",
"classlist-polyfill": "^1.2.0",
"compression": "^1.7.5",
"core-js": "^3.39.0",
"cross-env": "^7.0.3",
"css-loader": "^7.1.2",
"css-minimizer-webpack-plugin": "^7.0.0",
"cssnano-preset-advanced": "^7.0.6",
"dotenv": "^16.4.5",
"es6-promise": "^4.2.8",
"eslint": "^9.16.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-header": "^3.1.1",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-mocha": "^10.5.0",
"eslint-plugin-prettier": "^5.2.1",
"eslint-plugin-simple-import-sort": "^12.1.1",
"eslint-plugin-tsdoc": "^0.4.0",
"glob": "^11.0.0",
"globals": "^15.12.0",
"karma": "^6.4.4",
"karma-chrome-launcher": "^3.2.0",
"karma-firefox-launcher": "^2.1.3",
"karma-mocha": "^2.0.1",
"karma-sourcemap-loader": "^0.4.0",
"less": "^4.2.1",
"less-loader": "^12.2.0",
"merge-stream": "^2.0.0",
"mime-types": "^2.1.35",
"mini-css-extract-plugin": "^2.9.2",
"mocha": "^10.8.2",
"node-jq": "^6.0.1",
"open": "^10.1.0",
"postcss": ">=8.4.49",
"postcss-css-variables": "^0.19.0",
"postcss-less": "^6.0.0",
"postcss-loader": "^8.1.1",
"prettier": "^3.4.1",
"raw-loader": "^4.0.2",
"replace": "^1.2.2",
"style-loader": "^4.0.0",
"stylelint": "^16.11.0",
"stylelint-config-idiomatic-order": "v10.0.0",
"stylelint-config-standard": "^36.0.1",
"stylelint-prettier": "^5.0.2",
"swc-loader": "^0.2.6",
"synchronous-promise": "2.0.17",
"terser-webpack-plugin": "^5.3.10",
"ts-loader": "^9.5.1",
"ts-node": "^10.9.2",
"tslib": "^2.8.1",
"tsx": "^4.19.2",
"typescript": "^5.7.2",
"webpack": "5.96.1",
"webpack-cli": "^5.1.4",
"webpack-dev-middleware": "^7.4.2",
"webpack-dev-server": "^5.1.0",
"webpack-hot-middleware": "^2.26.1",
"yargs": "^17.7.2"
}
}