-
Notifications
You must be signed in to change notification settings - Fork 18
/
package.json
48 lines (48 loc) · 1.16 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
{
"name": "@graphcms/rich-text-html-renderer",
"description": "Hygraph Rich Text HTML renderer",
"version": "0.3.1",
"author": "João Pedro Schmitz <hey@joaopedro.dev> (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 --silent",
"lint": "tsdx lint",
"prepublish": "npm run build"
},
"dependencies": {
"@graphcms/rich-text-types": "^0.5.0",
"escape-html": "^1.0.3"
},
"devDependencies": {
"@types/escape-html": "^1.0.2"
},
"publishConfig": {
"access": "public"
},
"keywords": [
"html",
"rich-text",
"renderer",
"hygraph"
],
"repository": {
"type": "git",
"url": "git+https://github.com/hygraph/rich-text.git",
"directory": "packages/html-renderer"
},
"main": "dist/index.js",
"module": "dist/rich-text-html-renderer.esm.js",
"types": "dist/index.d.ts",
"files": [
"README.md",
"LICENSE.md",
"dist"
],
"jest": {
"setupFilesAfterEnv": [
"@testing-library/jest-dom/extend-expect"
]
}
}