-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
52 lines (52 loc) · 1.27 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
{
"name": "bandicoot",
"version": "4.7.4",
"description": "React rich text editor",
"main": "dist/bandicoot.umd.js",
"module": "dist/bandicoot.esm.js",
"repository": "[email protected]:CanopyTax/bandicoot.git",
"home": "https://github.com/CanopyTax/bandicoot",
"author": "Joel Denning <[email protected]>",
"license": "MIT",
"files": [
"dist",
"typings"
],
"types": "typings/bandicoot.d.ts",
"keywords": [
"react",
"rich",
"text",
"editor"
],
"scripts": {
"build": "rimraf dist && rollup -c",
"watch": "rollup -c --watch",
"prepublishOnly": "yarn build"
},
"browserslist": [
"extends browserslist-config-canopy"
],
"peerDependencies": {
"react": ">=16.8.0",
"react-dom": ">=16.8.0"
},
"devDependencies": {
"@babel/cli": "^7.20.7",
"@babel/core": "^7.20.12",
"@babel/preset-env": "^7.20.2",
"@babel/preset-react": "^7.18.6",
"browserslist-config-canopy": "^3.1.2",
"react": "^16.12.0",
"react-dom": "^16.12.0",
"rimraf": "^3.0.0",
"rollup": "^1.27.0",
"rollup-plugin-babel": "^4.3.3",
"rollup-plugin-babel-minify": "^9.1.1",
"rollup-plugin-node-resolve": "^5.2.0",
"rollup-plugin-postcss": "^2.0.3"
},
"dependencies": {
"@types/react": "^16.9.11"
}
}