forked from vingeraycn/editorjs-markdown-converter
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
43 lines (43 loc) · 1.17 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
{
"name": "@ezyostudio/editorjs-markdown-converter",
"description": "A data model convert between Markdown string and data of EditorJS",
"version": "0.1.2",
"scripts": {
"build": "vite build",
"dev": "vite",
"lint": "prettier --check .",
"format": "yarn lint --write",
"prepare": "vite build"
},
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"files": [
"./dist",
"README.md",
"package.json"
],
"devDependencies": {
"@babel/core": "^7.21.8",
"@editorjs/editorjs": "^2.27.0",
"@rollup/plugin-typescript": "^11.1.1",
"@types/node": "^20.1.7",
"@typescript-eslint/eslint-plugin": "^5.59.6",
"@typescript-eslint/parser": "^5.59.6",
"eslint": "^8.40.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-typescript-sort-keys": "^2.3.0",
"prettier": "^2.8.8",
"typescript": "^5.0.4",
"vite": "^4.3.7"
},
"dependencies": {
"rehype-parse": "^8.0.4",
"rehype-remark": "^9.1.2",
"remark": "^14.0.3",
"remark-stringify": "^10.0.3",
"unified": "^10.1.2"
}
}