forked from react-monaco-editor/react-monaco-editor
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
59 lines (59 loc) · 1.68 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
{
"name": "react-monaco-editor",
"version": "0.51.0",
"description": "Monaco Editor for React",
"main": "lib/index.js",
"module": "lib/index",
"types": "lib/index.d.ts",
"scripts": {
"preversion": "npm run lint",
"build": "tsc",
"clean": "rimraf lib",
"format": "eslint --fix '{src,example}/**/*.{ts,tsx}'",
"lint": "eslint '{src,example}/**/*.{ts,tsx}'",
"prepublishOnly": "npm run lint && npm run build"
},
"keywords": [
"monaco",
"editor",
"react",
"vscode"
],
"authors": [
"Daniele Esposti <[email protected]>",
"Dominik Moritz <[email protected]>",
"Leon Shi <[email protected]>"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/react-monaco-editor/react-monaco-editor/issues"
},
"homepage": "https://github.com/react-monaco-editor/react-monaco-editor",
"repository": "https://github.com/react-monaco-editor/react-monaco-editor",
"devDependencies": {
"@types/react": "^18.0.25",
"@typescript-eslint/eslint-plugin": "^5.43.0",
"@typescript-eslint/parser": "^5.43.0",
"eslint": "^8.28.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jsx-a11y": "^6.6.1",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-react": "^7.31.11",
"eslint-plugin-react-hooks": "^4.6.0",
"monaco-editor": "^0.34.1",
"prettier": "^2.7.1",
"react": "^18.2.0",
"rimraf": "^3.0.2",
"typescript": "^4.9.3"
},
"peerDependencies": {
"@types/react": ">=16 <= 18",
"monaco-editor": "^0.34.1",
"react": ">=16 <= 18"
},
"dependencies": {
"prop-types": "^15.8.1"
}
}