-
Notifications
You must be signed in to change notification settings - Fork 16
/
package.json
45 lines (45 loc) · 1.2 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
{
"name": "storyblok-rich-text-react-renderer",
"description": "A React renderer for Storyblok rich text content",
"version": "2.9.2",
"license": "MIT",
"main": "dist/index.js",
"module": "dist/index.es.js",
"types": "./index.d.ts",
"author": {
"name": "Claus Wahlers",
"email": "claus@codeazur.com.br"
},
"repository": {
"type": "git",
"url": "https://github.com/claus/storyblok-rich-text-react-renderer.git"
},
"bugs": {
"url": "https://github.com/claus/storyblok-rich-text-react-renderer/issues"
},
"scripts": {
"build": "rollup -c",
"prepare": "npm run build"
},
"keywords": [
"storyblok",
"react",
"rich text",
"resolver",
"renderer"
],
"peerDependencies": {
"react": ">=16.0.0"
},
"devDependencies": {
"@babel/core": "^7.24.0",
"@babel/plugin-proposal-nullish-coalescing-operator": "^7.18.6",
"@babel/plugin-proposal-object-rest-spread": "^7.20.7",
"@babel/plugin-transform-arrow-functions": "^7.23.3",
"@babel/plugin-transform-destructuring": "^7.23.3",
"@rollup/plugin-babel": "^6.0.4",
"@rollup/plugin-commonjs": "^25.0.7",
"rollup": "^4.12.1",
"rollup-plugin-peer-deps-external": "^2.2.4"
}
}