UNPKG

1.93 kBJSONView Raw
1{
2 "name": "react-monaco-editor",
3 "version": "0.36.0",
4 "description": "Monaco Editor for React",
5 "main": "lib/index.js",
6 "module": "lib/index",
7 "jsnext:main": "src/index.js",
8 "types": "src/index.d.ts",
9 "scripts": {
10 "preversion": "npm run lint",
11 "build": "babel src --out-dir lib",
12 "clean": "rimraf lib",
13 "format": "eslint --fix '{src,test,example}/**/*.{ts,js}'",
14 "lint": "eslint '{src,test,example}/**/*.{ts,js}'",
15 "prepublishOnly": "npm run lint && npm run test && npm run build",
16 "test": "npm run test:typescript",
17 "test:typescript": "typings-tester --dir test/typescript"
18 },
19 "keywords": [
20 "monaco",
21 "editor",
22 "react",
23 "vscode"
24 ],
25 "authors": [
26 "Daniele Esposti <daniele.espsoti@gmail.com>",
27 "Dominik Moritz <domoritz@cs.washington.edu>",
28 "Leon Shi <superRaytin@gmail.com>"
29 ],
30 "license": "MIT",
31 "bugs": {
32 "url": "https://github.com/react-monaco-editor/react-monaco-editor/issues"
33 },
34 "homepage": "https://github.com/react-monaco-editor/react-monaco-editor",
35 "repository": "https://github.com/react-monaco-editor/react-monaco-editor",
36 "devDependencies": {
37 "@babel/cli": "^7.8.4",
38 "@babel/core": "^7.9.0",
39 "@babel/plugin-proposal-class-properties": "^7.8.3",
40 "@babel/preset-env": "^7.9.5",
41 "@babel/preset-react": "^7.9.4",
42 "babel-eslint": "^10.1.0",
43 "eslint": "^6.8.0",
44 "eslint-config-airbnb": "^18.1.0",
45 "eslint-config-prettier": "^6.10.1",
46 "eslint-plugin-import": "^2.20.2",
47 "eslint-plugin-jsx-a11y": "^6.2.3",
48 "eslint-plugin-prettier": "^3.1.2",
49 "eslint-plugin-react": "^7.19.0",
50 "prettier": "^2.0.4",
51 "react": "^16.8.3",
52 "rimraf": "^3.0.2",
53 "typescript": "^3.8.3",
54 "typings-tester": "^0.3.2"
55 },
56 "peerDependencies": {
57 "react": "^16.x"
58 },
59 "dependencies": {
60 "@types/react": "^16.x",
61 "monaco-editor": "*",
62 "prop-types": "^15.7.2"
63 }
64}