-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
65 lines (65 loc) · 1.7 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
{
"name": "@mobtakr/editorjs-parser",
"version": "0.2.1",
"description": "Editor JS Parser and Renderer for React with server-side SimpleSchema validation",
"main": "dist/index.js",
"types": "dist/index.d.js",
"scripts": {
"build": "npm run build:types && npm run build:js",
"build:types": "tsc",
"build:js": "babel src --out-dir dist --extensions \".ts,.tsx\"",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mobtakr/editorjs-parser.git"
},
"keywords": [
"Editor.js",
"Parser",
"Renderer",
"React.js",
"Next.js"
],
"contributors": [
{
"name": "Mohamed Gad",
"url": "https://mohamedgad.me",
"email": "[email protected]"
},
{
"name": "Klaucode",
"url": "https://github.com/klaucode"
}
],
"author": "Mobtakr <[email protected]> (https://mobtakr.com)",
"license": "MIT",
"bugs": {
"url": "https://github.com/mobtakr/editorjs-parser/issues"
},
"homepage": "https://mobtakr.com/",
"devDependencies": {
"@babel/cli": "^7.19.3",
"@babel/core": "^7.19.3",
"@babel/plugin-proposal-class-properties": "^7.18.6",
"@babel/preset-env": "^7.19.3",
"@babel/preset-react": "^7.12.13",
"@babel/preset-typescript": "^7.18.6",
"@types/react": ">=16",
"@types/react-dom": ">=16",
"@types/sanitize-html": "^2.9.0",
"babel-loader": "^8.2.2",
"next": ">=12.3.1",
"react": ">=16",
"typescript": "^4.8.4"
},
"peerDependencies": {
"next": ">=10.3.1",
"react": ">=16"
},
"dependencies": {
"html-react-parser": "^3.0.15",
"sanitize-html": "^2.10.0",
"simpl-schema": "^3.4.1"
}
}