forked from uiwjs/react-codemirror
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
80 lines (80 loc) · 1.9 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
{
"name": "@uiw/react-codemirror",
"version": "3.0.10",
"description": "CodeMirror component for React.",
"homepage": "https://uiwjs.github.io/react-codemirror/",
"main": "lib/cjs/index.js",
"module": "lib/esm/index.js",
"typings": "typings/index.d.ts",
"scripts": {
"prepare": "npm run build:lib",
"watch": "tsbb watch --target react",
"build": "tsbb build --target react && npm run doc",
"build:lib": "tsbb build --target react",
"doc": "kkt build --app-src ./website",
"start": "kkt start --app-src ./website"
},
"repository": {
"type": "git",
"url": "https://github.com/uiwjs/react-codemirror.git"
},
"keywords": [
"react",
"codemirror",
"react-codemirror",
"editor",
"syntax",
"ide",
"code"
],
"files": [
"typings",
"lib"
],
"author": "kenny wong <wowohoo@qq.com>",
"license": "MIT",
"peerDependencies": {
"@babel/runtime": ">=7.11.0",
"react": ">=16.8.0",
"react-dom": ">=16.8.0",
"codemirror": ">=5.49.2"
},
"dependencies": {
"@babel/runtime": "7.14.6",
"codemirror": "5.61.1"
},
"eslintConfig": {
"extends": [
"react-app",
"react-app/jest"
]
},
"devDependencies": {
"@kkt/less-modules": "6.10.3",
"@kkt/raw-modules": "6.10.3",
"@kkt/scope-plugin-options": "6.10.3",
"@types/codemirror": "5.60.0",
"@uiw/react-github-corners": "1.4.0",
"@uiw/react-markdown-preview": "3.1.1",
"@uiw/react-shields": "1.1.1",
"@uiw/reset.css": "1.0.4",
"babel-plugin-transform-remove-imports": "1.5.5",
"code-example": "3.0.1",
"kkt": "6.10.3",
"react": "17.0.2",
"react-dom": "17.0.2",
"tsbb": "2.2.0"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
}
}