UNPKG

1.71 kBJSONView Raw
1{
2 "name": "react-monaco-editor",
3 "version": "0.47.0",
4 "description": "Monaco Editor for React",
5 "main": "lib/index.js",
6 "module": "lib/index",
7 "types": "lib/index.d.ts",
8 "scripts": {
9 "preversion": "npm run lint",
10 "build": "tsc",
11 "clean": "rimraf lib",
12 "format": "eslint --fix '{src,example}/**/*.{ts,tsx}'",
13 "lint": "eslint '{src,example}/**/*.{ts,tsx}'",
14 "prepublishOnly": "npm run lint && npm run build"
15 },
16 "keywords": [
17 "monaco",
18 "editor",
19 "react",
20 "vscode"
21 ],
22 "authors": [
23 "Daniele Esposti <daniele.espsoti@gmail.com>",
24 "Dominik Moritz <domoritz@cs.washington.edu>",
25 "Leon Shi <superRaytin@gmail.com>"
26 ],
27 "license": "MIT",
28 "bugs": {
29 "url": "https://github.com/react-monaco-editor/react-monaco-editor/issues"
30 },
31 "homepage": "https://github.com/react-monaco-editor/react-monaco-editor",
32 "repository": "https://github.com/react-monaco-editor/react-monaco-editor",
33 "devDependencies": {
34 "@types/react": "^17.0.38",
35 "@typescript-eslint/eslint-plugin": "^5.9.1",
36 "@typescript-eslint/parser": "^5.9.1",
37 "eslint": "^8.6.0",
38 "eslint-config-airbnb": "^19.0.4",
39 "eslint-config-prettier": "^8.3.0",
40 "eslint-plugin-import": "^2.25.4",
41 "eslint-plugin-jsx-a11y": "^6.5.1",
42 "eslint-plugin-prettier": "^4.0.0",
43 "eslint-plugin-react": "^7.28.0",
44 "eslint-plugin-react-hooks": "^4.3.0",
45 "monaco-editor": "^0.31.1",
46 "prettier": "^2.5.1",
47 "react": "^17.0.2",
48 "rimraf": "^3.0.2",
49 "typescript": "^4.5.4"
50 },
51 "peerDependencies": {
52 "@types/react": "^17.x",
53 "monaco-editor": "^0.31.1",
54 "react": "^17.x"
55 },
56 "dependencies": {
57 "prop-types": "^15.8.1"
58 }
59}