-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
47 lines (46 loc) · 1.34 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
{
"name": "reactjs-editor",
"version": "10.0.1",
"description": "A simple react library that lets you highlight text, make text bold, and add comment on any text as a sticky notes",
"main": "dist/index.js",
"module": "dist/index.es.js",
"typings": "typings/reactjs-editor.d.ts",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build-lib": "rollup -c"
},
"keywords": [
"react-editor",
"editor",
"highlight-text-react",
"reacthighlighttext"
],
"author": "Vivek Neupane",
"license": "MIT",
"homepage": "https://github.com/vivekneupane11/reactjs-editor/blob/main/README.md",
"repository": {
"type": "git",
"url": "https://github.com/vivekneupane11/reactjs-editor.git"
},
"devDependencies": {
"@babel/core": "^7.12.10",
"@babel/preset-react": "^7.23.3",
"@rollup/plugin-babel": "^6.0.4",
"@rollup/plugin-node-resolve": "^15.2.3",
"babel-loader": "^8.2.2",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"rollup": "^2.79.1",
"rollup-plugin-babel": "^4.4.0",
"rollup-plugin-peer-deps-external": "^2.2.4",
"rollup-plugin-postcss": "^4.0.2",
"rollup-plugin-terser": "^7.0.2"
},
"peerDependencies": {
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-from-dom": "^0.6.2",
"xpath-range": "^1.1.1",
"zustand": "^4.3.9"
}
}