-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 1.47 KB
/
package.json
File metadata and controls
60 lines (60 loc) · 1.47 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
{
"name": "awesome-editor",
"version": "0.3.0",
"description": "An advanced Rich Text Editor component for React",
"main": "dist/index.js",
"module": "dist/index.esm.js",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"build": "rollup -c",
"prepublishOnly": "npm run build"
},
"peerDependencies": {
"react": "^18.0.0",
"react-dom": "^18.0.0"
},
"dependencies": {
"@ai-sdk/openai": "^1.1.9",
"@hookform/resolvers": "^3.10.0",
"ai": "^4.1.26",
"diff": "^7.0.0",
"marked": "^4.0.12",
"prismjs": "^1.27.0",
"react-hook-form": "^7.54.2",
"react-markdown": "^8.0.0",
"remark-gfm": "^3.0.1",
"rollup-plugin-livereload": "^2.0.5",
"rollup-plugin-serve": "^3.0.0"
},
"devDependencies": {
"@types/diff": "^7.0.1",
"@types/marked": "^4.0.3",
"@types/prismjs": "^1.26.0",
"@types/react": "^18.0.0",
"@types/react-dom": "^18.0.0",
"rollup": "^2.79.1",
"rollup-plugin-postcss": "^4.0.2",
"rollup-plugin-typescript2": "^0.31.2",
"typescript": "^4.5.5"
},
"keywords": [
"react",
"rich text editor",
"wysiwyg",
"markdown",
"code highlighting"
],
"author": "SylvainCodes",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/sylvaincodes/awesome-editor.git"
},
"bugs": {
"url": "https://github.com/sylvaincodes/awesome-editor/issues"
},
"homepage": "https://github.com/sylvaincodes/awesome-editor#readme"
}