-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
64 lines (64 loc) · 1.82 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
56
57
58
59
60
61
62
63
64
{
"name": "contentful-rich-text-html-parser",
"version": "1.0.0",
"description": "Convert any HTML to the Contentful Rich Text format",
"author": {
"name": "oleast"
},
"license": "MIT",
"keywords": [
"Contentful",
"Rich Text",
"Parser",
"Converter"
],
"homepage": "https://github.com/oleast/contentful-rich-text-html-parser",
"repository": {
"type": "git",
"url": "https://github.com/oleast/contentful-rich-text-html-parser"
},
"bugs": "https://github.com/oleast/contentful-rich-text-html-parser/issues",
"main": "./dist/cjs/index.js",
"module": "./dist/es/index.js",
"exports": {
".": {
"types": "./dist/types/index.d.ts",
"import": "./dist/es/index.js",
"require": "./dist/cjs/index.js"
},
"./converters": {
"types": "./dist/types/converters.d.ts",
"import": "./dist/es/converters.js",
"require": "./dist/cjs/converters.js"
}
},
"types": "./dist/types/index.d.ts",
"sideEffects": false,
"files": [
"dist"
],
"scripts": {
"lint": "prettier --check ./src",
"lint:fix": "prettier --write ./src",
"build": "tsc --project tsconfig.build.json && tsc --project tsconfig.module.json",
"test": "vitest run",
"test:watch": "vitest watch"
},
"devDependencies": {
"@contentful/rich-text-html-renderer": "^17.0.0",
"@semantic-release/commit-analyzer": "^13.0.0",
"@semantic-release/git": "^10.0.1",
"@semantic-release/github": "^11.0.0",
"@semantic-release/npm": "^12.0.1",
"@semantic-release/release-notes-generator": "^14.0.0",
"conventional-changelog-conventionalcommits": "^8.0.0",
"prettier": "^3.2.5",
"semantic-release": "^24.0.0",
"typescript": "^5.4.5",
"vitest": "^3.0.2"
},
"dependencies": {
"@contentful/rich-text-types": "^17.0.0",
"parse5": "^7.1.2"
}
}