-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
41 lines (41 loc) · 910 Bytes
/
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
{
"name": "typeface-editor",
"version": "1.0.5",
"description": "A rich text editor package for react",
"main": "./build/index.js",
"repository": {
"type": "git",
"url": "https://github.com/ishita1805/typeface.git"
},
"homepage": "https://typeface.atishi.me/",
"scripts": {
"build": "webpack"
},
"keywords": [
"rich text editor",
"editor",
"wysiwyg",
"npm",
"packages",
"rich-text-editor"
],
"author": "Ishita Kabra",
"license": "ISC",
"devDependencies": {
"@babel/core": "^7.7.5",
"@babel/preset-env": "^7.7.6",
"@babel/preset-react": "^7.7.4",
"babel-loader": "^8.0.6",
"css-loader": "^3.3.0",
"style-loader": "^1.0.1",
"webpack": "^4.41.2",
"webpack-cli": "^3.3.10"
},
"dependencies": {
"prop-types": "^15.7.2"
},
"peerDependencies": {
"react": "^17.0.1",
"react-dom": "^17.0.1"
}
}