-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
50 lines (50 loc) · 1.22 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
{
"name": "storyblok-rich-text-react-renderer-ts",
"description": "A React renderer for Storyblok rich text content",
"version": "3.2.0",
"license": "MIT",
"main": "dist/index.js",
"module": "dist/index.esm.js",
"typings": "dist/index.d.ts",
"author": {
"name": "Dominic Garms",
"email": "[email protected]"
},
"files": [
"dist",
"src"
],
"repository": {
"type": "git",
"url": "https://github.com/dohomi/storyblok-rich-text-react-renderer-ts.git"
},
"bugs": {
"url": "https://github.com/dohomi/storyblok-rich-text-react-renderer-ts/issues"
},
"scripts": {
"start": "rimraf dist && microbundle watch",
"build": "rimraf dist && microbundle -f modern,esm,cjs --jsx React.createElement",
"prepublishOnly": "npm run build",
"check-types": "tsc --noEmit"
},
"keywords": [
"storyblok",
"react",
"rich text",
"resolver",
"renderer"
],
"peerDependencies": {
"react": "^16.0.0 || ^17.0.0 || ^18.0.0"
},
"devDependencies": {
"@babel/core": "^7.14.6",
"@types/react": "^18.0.15",
"microbundle": "^0.15.0",
"react": "^18.2.0",
"typescript": "^4.7.4"
},
"dependencies": {
"@marvr/storyblok-rich-text-types": "^2.0.1"
}
}