-
-
Notifications
You must be signed in to change notification settings - Fork 42
/
package.json
64 lines (64 loc) · 1.42 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
{
"name": "react-trix",
"version": "0.10.1",
"description": "React wrapper around Basecamp's Trix editor.",
"main": "main.js",
"scripts": {
"build": "npm run build:lib && parcel build src/react-trix.tsx",
"build:lib": "rm -rf ./lib/* && tsc",
"prebuild": "rm -rf dist && mkdir dist",
"prepublish": "npm run build",
"postbuild": "parcel build src/react-trix.tsx",
"test": "./test.sh"
},
"repository": {
"type": "git",
"url": "https://github.com/dstpierre/react-trix"
},
"keywords": [
"react",
"component",
"edit",
"editable",
"wysiwyg",
"trix",
"editor",
"trix-editor"
],
"author": {
"name": "Rob Race",
"email": "rob@succinctsoftwarellc.com"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/dstpierre/react-trix/issues"
},
"homepage": "https://github.com/dstpierre/react-trix",
"dependencies": {
"trix": "^1.3.1"
},
"devDependencies": {
"@types/react": "^16.7.22",
"@types/react-dom": "^16.0.11",
"parcel": "^2.9.1",
"react": "^16.7.0",
"react-dom": "^16.7.0",
"source-map-loader": "^0.2.4",
"ts-loader": "^6.2.0",
"typescript": "^3.6.4"
},
"peerDependencies": {
"react": ">=17.0",
"react-dom": ">=17.0"
},
"files": [
"dist",
"lib",
"src/react-trix.tsx",
"src/main.js.map",
"README.md",
"LICENSE",
"main.js"
],
"types": "lib/react-trix.d.ts"
}