-
Notifications
You must be signed in to change notification settings - Fork 218
/
package.json
37 lines (37 loc) · 957 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
{
"name": "react-contenteditable",
"version": "3.3.7",
"description": "React component representing an element with editable contents",
"main": "./lib/react-contenteditable.js",
"types": "./lib/react-contenteditable.d.ts",
"peerDependencies": {
"react": ">=16.3"
},
"author": "Ophir LOJKINE (original code posted by Sebastien Lorber on stackoverflow)",
"license": "Apache-2.0",
"keywords": [
"react-component",
"contenteditable",
"editable",
"html",
"react"
],
"repository": {
"type": "git",
"url": "https://github.com/lovasoa/react-contenteditable.git"
},
"devDependencies": {
"@types/react": "^17.0.2",
"react": "^17.0.2",
"typescript": "^4.3.5"
},
"scripts": {
"compile": "tsc",
"test": "npm run compile && cd tests && npm install && npm test",
"prepare": "npm run compile"
},
"dependencies": {
"prop-types": "^15.7.1",
"fast-deep-equal": "^3.1.3"
}
}