-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1.14 KB
/
package.json
File metadata and controls
43 lines (43 loc) · 1.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
{
"name": "@react-libraries/markdown-editor",
"description": "Markdown editor for React",
"version": "1.0.17",
"main": "dist/index.js",
"license": "MIT",
"scripts": {
"build": "tsc -b",
"build:test": "tsc -b && xcopy /y /s dist\\*.* \\prog\\test\\next-markdown\\src\\libs\\@react-libraries\\markdown-editor\\dist",
"lint:fix": "eslint --fix && prettier -w src"
},
"dependencies": {
"@react-libraries/use-local-event": "^1.0.2",
"react": "*",
"react-dom": "*",
"remark-gfm": "^3.0.1",
"remark-parse": "^10.0.1",
"unified": "^10.1.1"
},
"devDependencies": {
"@types/react": "^17.0.37",
"@types/react-dom": "^17.0.11",
"eslint": "^8.4.1",
"eslint-config-next": "^12.0.7",
"eslint-config-prettier": "^8.3.0",
"prettier": "^2.5.1",
"typescript": "^4.5.4"
},
"type": "module",
"publishConfig": {
"access": "public"
},
"keywords": [
"react",
"nextjs",
"markdown",
"editor",
"ssr",
"typescript"
],
"repository": "https://github.com/ReactLibraries/markdown-editor",
"author": "SoraKumo <[email protected]>"
}