forked from hygraph/rich-text
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
55 lines (55 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
53
54
55
{
"name": "@graphcms/rich-text-react-renderer",
"description": "GraphCMS Rich Text React renderer",
"version": "0.4.0",
"author": "João Pedro Schmitz <[email protected]> (https://joaopedro.dev)",
"license": "MIT",
"scripts": {
"start": "tsdx watch --tsconfig tsconfig.build.json --verbose --noClean",
"build": "tsdx build --tsconfig tsconfig.build.json",
"test": "tsdx test --passWithNoTests",
"lint": "tsdx lint",
"prepublish": "npm run build"
},
"dependencies": {
"@graphcms/rich-text-types": "^0.3.1",
"escape-html": "^1.0.3"
},
"devDependencies": {
"@types/escape-html": "^1.0.1"
},
"peerDependencies": {
"react": ">=16",
"react-dom": ">=16"
},
"publishConfig": {
"access": "public"
},
"keywords": [
"react",
"rich-text",
"renderer",
"graphcms"
],
"repository": {
"type": "git",
"url": "git+https://github.com/GraphCMS/rich-text.git",
"directory": "packages/react-renderer"
},
"main": "dist/index.js",
"module": "dist/rich-text-react-renderer.esm.js",
"types": "dist/index.d.ts",
"files": [
"README.md",
"LICENSE.md",
"dist"
],
"engines": {
"node": ">=10"
},
"jest": {
"setupFilesAfterEnv": [
"@testing-library/jest-dom/extend-expect"
]
}
}