-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
89 lines (89 loc) · 1.97 KB
/
Copy pathpackage.json
File metadata and controls
89 lines (89 loc) · 1.97 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
87
88
89
{
"repository": {
"type": "git",
"url": "https://github.com/etozhealkhipce/editorjs-react"
},
"version": "0.1.4",
"license": "MIT",
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"files": [
"dist",
"src"
],
"engines": {
"node": ">=10"
},
"scripts": {
"start": "tsdx watch --transpileOnly",
"build": "tsdx build --transpileOnly",
"test": "tsdx test --passWithNoTests",
"lint": "tsdx lint",
"prepare": "tsdx build --transpileOnly",
"size": "size-limit",
"analyze": "size-limit --why"
},
"peerDependencies": {
"react": ">=16"
},
"husky": {
"hooks": {
"pre-commit": "tsdx lint"
}
},
"prettier": {
"printWidth": 80,
"semi": true,
"singleQuote": true,
"trailingComma": "es5"
},
"name": "@alkhipce/editorjs-react",
"author": "alkhipce & YunesB",
"module": "dist/editorjs-react.esm.js",
"size-limit": [
{
"path": "dist/editorjs-react.cjs.production.min.js",
"limit": "10 KB"
},
{
"path": "dist/editorjs-react.esm.js",
"limit": "10 KB"
}
],
"devDependencies": {
"@babel/core": "^7.17.10",
"@size-limit/preset-small-lib": "^7.0.8",
"@types/react": "^18.0.9",
"@types/react-dom": "^18.0.3",
"autoprefixer": "^10.4.13",
"babel-loader": "^8.2.5",
"husky": "^8.0.0",
"postcss": "^8.1.9",
"postcss-import": "12.0.1",
"react": "^18.1.0",
"react-dom": "^18.1.0",
"react-is": "^18.1.0",
"rollup-plugin-postcss": "^4.0.2",
"size-limit": "^7.0.8",
"tsdx": "^0.14.1",
"tslib": "^2.4.0",
"typescript": "^4.6.4"
},
"dependencies": {
"html-react-parser": "^1.4.12"
},
"keywords": [
"editor js react parser",
"Editor.js",
"editor.js markdown",
"react editor.js render",
"editorjs react",
"editorjs parser",
"wysiwyg editor parser",
"wysiwyg to html",
"wysiwyg to react",
"wysiwyg to tsx",
"wysiwyg to jsx",
"wysiwyg components"
]
}