forked from suren-atoyan/monaco-react
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
64 lines (64 loc) · 1.79 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
{
"name": "@monaco-editor/react",
"version": "4.6.0",
"description": "Monaco Editor for React - use the monaco-editor in any React application without needing to use webpack (or rollup/parcel/etc) configuration files / plugins",
"author": "Suren Atoyan <[email protected]>",
"main": "dist/index.js",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"scripts": {
"lint": "eslint src",
"build": "tsup",
"dev": "tsup --watch",
"prepublishOnly": "npm test && npm run lint && npm run build",
"test": "vitest run"
},
"repository": {
"type": "git",
"url": "git+https://github.com/suren-atoyan/monaco-react.git"
},
"keywords": [
"monaco",
"editor",
"react",
"vscode",
"code",
"text"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/suren-atoyan/monaco-react/issues"
},
"homepage": "https://github.com/suren-atoyan/monaco-react#readme",
"peerDependencies": {
"monaco-editor": ">= 0.25.0 < 1",
"react": "^16.8.0 || ^17.0.0 || ^18.0.0",
"react-dom": "^16.8.0 || ^17.0.0 || ^18.0.0"
},
"devDependencies": {
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/react": "^14.0.0",
"@typescript-eslint/eslint-plugin": "^5.54.0",
"@typescript-eslint/parser": "^5.54.0",
"eslint": "^8.35.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-jsx-a11y": "6.7.1",
"eslint-plugin-react": "7.32.2",
"eslint-plugin-react-hooks": "4.6.0",
"husky": "^4.2.3",
"prettier": "^2.8.7",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"tsup": "^6.7.0",
"typescript": "^4.9.5",
"vitest": "^0.29.2"
},
"husky": {
"hooks": {
"pre-commit": "rm -rf ./lib && npm test && npm run lint"
}
},
"dependencies": {
"@monaco-editor/loader": "^1.4.0"
}
}