-
-
Notifications
You must be signed in to change notification settings - Fork 176
/
Copy pathpackage.json
85 lines (85 loc) · 2.69 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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
{
"name": "@uiw/react-md-editor",
"version": "1.14.1",
"description": "A markdown editor with preview, implemented with React.js and TypeScript.",
"homepage": "https://uiwjs.github.io/react-md-editor/",
"author": "kenny wang <wowohoo@qq.com>",
"main": "lib/cjs/index.js",
"module": "lib/esm/index.js",
"typings": "lib/cjs/index.d.ts",
"scripts": {
"prepare": "npm run build",
"test": "tsbb test --env=jsdom",
"coverage": "tsbb test --env=jsdom --coverage",
"released": "npm run build && npm run doc",
"doc": "ENTRYDIR=website kkt build",
"doc:dev": "ENTRYDIR=website PUBLIC_URL=/ kkt start",
"build": "npm run ts:build && npm run types:esm && npm run types:cjs && npm run css:build && npm run css:build:dist",
"types:build": "tsbb types --sourceRoot src --target ESNEXT",
"types:watch": "npm run types:esm -- --watch & npm run types:cjs -- --watch",
"types:esm": "npm run types:build -- --outDir ../lib/esm",
"types:cjs": "npm run types:build -- --outDir ../lib/cjs",
"css:build": "compile-less -d src -o lib/esm",
"css:build:dist": "compile-less -d src --combine dist/markdown-editor.css --rm-global",
"watch": "npm run ts:watch & npm run types:watch",
"ts:watch": "tsbb watch --env-name esm:dev --env-name cjs --target react",
"ts:build": "tsbb build --target react",
"map": "source-map-explorer build/static/js/*.js --html build/website-result.html"
},
"repository": {
"type": "git",
"url": "https://github.com/uiwjs/react-md-editor"
},
"files": [
"dist",
"lib",
"src"
],
"keywords": [],
"license": "MIT",
"peerDependencies": {
"react": ">=16.8.0",
"react-dom": ">=16.8.0"
},
"devDependencies": {
"@kkt/loader-less": "5.8.0",
"@kkt/loader-raw": "5.8.0",
"@types/classnames": "2.2.10",
"@types/katex": "0.11.0",
"@types/node": "13.13.0",
"@types/prismjs": "1.16.0",
"@types/react": "16.9.34",
"@types/react-dom": "16.9.6",
"@types/react-test-renderer": "16.9.2",
"@uiw/react-github-corners": "1.1.3",
"@uiw/react-shields": "1.1.0",
"compile-less-cli": "1.4.0",
"katex": "0.11.1",
"kkt": "5.8.0",
"react": "16.13.1",
"react-dom": "16.13.1",
"react-test-renderer": "16.13.1",
"source-map-explorer": "2.4.2",
"tsbb": "1.7.1"
},
"dependencies": {
"@babel/runtime": "^7.8.4",
"@uiw/react-markdown-preview": "^1.0.2",
"classnames": "^2.2.6"
},
"eslintConfig": {
"extends": "react-app"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
}
}