-
Notifications
You must be signed in to change notification settings - Fork 125
/
Copy pathpackage.json
82 lines (82 loc) · 2.46 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
{
"name": "jodit-react",
"version": "5.0.0-beta.3",
"description": "Jodit is awesome and usefully wysiwyg editor with filebrowser",
"main": "build/jodit-react.js",
"author": "Chupurnov <[email protected]> (https://xdsoft.net/)",
"keywords": [
"react",
"jodit",
"html",
"text",
"editor",
"wysisyg",
"rich editor",
"rich text editor",
"rte"
],
"dependencies": {
"jodit": "^4.2.47"
},
"peerDependencies": {
"react": "~0.14 || ^15 || ^16 || ^17 || ^18 || ^19",
"react-dom": "~0.14 || ^15 || ^16 || ^17 || ^18 || ^19"
},
"devDependencies": {
"@eslint/compat": "^1.2.4",
"@swc-node/register": "^1.10.9",
"@swc/core": "^1.10.1",
"@types/react": "^19.0.1",
"@types/react-dom": "^19.0.2",
"@typescript-eslint/eslint-plugin": "^8.18.0",
"css-loader": "^7.1.2",
"eslint": "9.16.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.2.1",
"eslint-plugin-react": "^7.37.2",
"eslint-plugin-react-hooks": "^5.1.0",
"prettier": "^3.4.2",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"style-loader": "^4.0.0",
"swc-loader": "^0.2.6",
"typescript": "^5.7.2",
"webpack": "^5.97.1",
"webpack-cli": "^5.1.4",
"webpack-dev-server": "^5.1.0"
},
"scripts": {
"newversion": "npm version prerelease --preid=beta --no-git-tag-version && npm run github",
"lint": "npm run lint:ts && npm run lint:eslint",
"lint:ts": "tsc --noEmit",
"lint:eslint": "eslint ./",
"demo": "NODE_ENV=development node -r @swc-node/register ./node_modules/.bin/webpack serve --config ./examples/webpack.config.ts --mode development",
"start": "npm run demo",
"build": "npm run build:react && npm run build:types",
"build:react": "NODE_ENV=production node -r @swc-node/register ./node_modules/.bin/webpack --mode production",
"build:types": "rm -rf ./build/types && tsc --project tsconfig.types.json --emitDeclarationOnly",
"github": "npm run git && git push --tags origin HEAD:main",
"git": "git add --all && git commit -m \"New version $npm_package_version. Read more https://github.com/jodit/jodit-react/releases/tag/$npm_package_version \" && git tag $npm_package_version"
},
"repository": {
"type": "git",
"url": "git+https://github.com/jodit/jodit-react.git"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/jodit/jodit-react/issues"
},
"homepage": "https://xdsoft.net/jodit/",
"ava": {
"extensions": [
"ts",
"tsx"
],
"require": [
"@swc-node/register"
],
"files": [
"packages/**/*.spec.{ts,tsx}"
]
}
}