-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
74 lines (74 loc) · 2.14 KB
/
package.json
File metadata and controls
74 lines (74 loc) · 2.14 KB
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
65
66
67
68
69
70
71
72
73
74
{
"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": "eslint src/",
"lint:fix": "eslint src/ --fix",
"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.1.2",
"@eslint/js": "^9.35.0",
"@lingui/core": "^5.4.1",
"@semantic-release/commit-analyzer": "^13.0.1",
"@semantic-release/git": "^10.0.1",
"@semantic-release/github": "^12.0.0",
"@semantic-release/npm": "^13.1.1",
"@semantic-release/release-notes-generator": "^14.1.0",
"conventional-changelog-conventionalcommits": "^9.1.0",
"eslint": "^9.35.0",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-import-x": "^4.16.1",
"eslint-plugin-prettier": "^5.5.5",
"eslint-plugin-simple-import-sort": "^12.1.1",
"globals": "^17.4.0",
"jiti": "^2.5.1",
"prettier": "^3.6.2",
"semantic-release": "^25.0.1",
"typescript": "^5.9.2",
"typescript-eslint": "^8.43.0",
"vitest": "^4.0.3"
},
"dependencies": {
"@contentful/rich-text-types": "^17.2.1",
"parse5": "^8.0.0"
}
}