forked from uiwjs/react-monacoeditor
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
79 lines (79 loc) · 1.92 KB
/
package.json
File metadata and controls
79 lines (79 loc) · 1.92 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
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
{
"name": "@uiw/react-monacoeditor",
"version": "3.5.8",
"description": "Monaco Editor component for React.",
"homepage": "https://jaywcjlove.github.io/react-monacoeditor/",
"main": "lib/index.js",
"module": "esm/index.js",
"scripts": {
"prepare": "npm run build",
"doc": "kkt build --app-src ./example",
"start": "kkt start --app-src ./example",
"build": "tsbb build src/*.tsx --use-babel --bail",
"watch": "tsbb watch src/*.tsx --use-babel",
"map": "source-map-explorer build/static/js/*.js --html build/website-result.html"
},
"repository": {
"type": "git",
"url": "https://github.com/jaywcjlove/react-monacoeditor.git"
},
"keywords": [
"react-monacoeditor",
"monacoeditor",
"monaco-editor",
"monaco",
"editor",
"react",
"vscode"
],
"files": [
"lib",
"esm",
"src"
],
"author": "kenny wong <wowohoo@qq.com>",
"license": "MIT",
"eslintConfig": {
"extends": [
"react-app",
"react-app/jest"
]
},
"peerDependencies": {
"react": ">=16.8.0",
"react-dom": ">=16.8.0"
},
"dependencies": {
"@babel/runtime": "^7.16.7",
"monaco-editor": "^0.36.0"
},
"devDependencies": {
"@types/react": "^18.0.17",
"@types/react-dom": "^18.0.6",
"@kkt/less-modules": "^7.2.0",
"@kkt/raw-modules": "^7.2.0",
"@kkt/scope-plugin-options": "^7.2.0",
"@uiw/react-markdown-preview": "^4.0.24",
"@uiw/react-github-corners": "^1.5.14",
"@wcj/dark-mode": "^1.0.15",
"code-example": "^3.3.6",
"kkt": "^7.2.0",
"monaco-editor-webpack-plugin": "~7.0.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"source-map-explorer": "~2.5.2",
"tsbb": "^4.1.0"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
}
}