-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
35 lines (35 loc) · 851 Bytes
/
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
{
"name": "rich-editor-to-markdown-parser",
"version": "1.2.0",
"description": "Rich Editor response convert to markdown.",
"main": "./dist/rich-editor-to-markdown-parser.js",
"module": "./dist/esm/rich-editor-to-markdown-parser.js",
"types": "./dist/rich-editor-to-markdown-parser.d.ts",
"scripts": {
"build": "tsup",
"watch": "tsup src/index.ts --watch",
"test": "vitest",
"coverage": "vitest run --coverage",
"lint": "biome lint ./*"
},
"keywords": [
"markdown",
"microCMS"
],
"author": "hiro08",
"license": "MIT",
"files": [
"dist"
],
"devDependencies": {
"@biomejs/biome": "1.8.3",
"@vitest/coverage-v8": "^2.0.5",
"prettier": "^3.1.0",
"tsup": "^8.0.1",
"typescript": "^5.3.2",
"vitest": "^2.0.5"
},
"dependencies": {
"html-dom-parser": "^5.0.4"
}
}