-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
79 lines (79 loc) · 2.16 KB
/
package.json
File metadata and controls
79 lines (79 loc) · 2.16 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": "@codingame/monaco-editor-react",
"version": "0.0.0-semantic-release",
"description": "Monaco Editor React component",
"type": "module",
"release": {
"extends": "@codingame/semantic-release-config-github"
},
"scripts": {
"build": "npm run lint && npm run compile",
"compile": "tsc -p tsconfig.build.json",
"lint": "eslint 'src/**/*.ts' && prettier --check '**/*.{js,ts}'"
},
"repository": {
"type": "git",
"url": "https://github.com/CodinGame/monaco-editor-react"
},
"moduleResolution": "node",
"main": "dist/index.js",
"module": "dist/index.js",
"exports": {
".": {
"default": "./dist/index.js"
},
"./vscodeParts": {
"types": "./dist/vscodeParts.d.ts",
"default": "./dist/vscodeParts.js"
}
},
"typesVersions": {
"*": {
"vscodeParts": [
"./dist/vscodeParts.d.ts"
]
}
},
"files": [
"dist/"
],
"types": "dist/index.d.ts",
"dependencies": {
"@codingame/monaco-editor-wrapper": "^11.0.0",
"deep-equal": "^2.2.3",
"lodash.debounce": "^4.0.8",
"monaco-editor": "npm:@codingame/monaco-vscode-editor-api@^13.1.3",
"react-dom": "^18.3.1",
"vscode": "npm:@codingame/monaco-vscode-extension-api@^13.1.3"
},
"devDependencies": {
"@codingame/commitlint-config-codingame": "^1.1.1",
"@codingame/semantic-release-config-github": "^2.0.0",
"@codingame/tsconfig": "^1.1.1",
"@commitlint/cli": "^19.7.1",
"@types/deep-equal": "^1.0.4",
"@types/lodash.debounce": "^4.0.9",
"@types/react": "19.0.8",
"@types/react-dom": "^19.0.3",
"@types/vscode": "^1.96.0",
"@typescript-eslint/eslint-plugin": "8.23.0",
"@typescript-eslint/parser": "8.23.0",
"conventional-changelog-conventionalcommits": "^8.0.0",
"eslint": "9.19.0",
"eslint-plugin-react": "^7.37.4",
"eslint-plugin-react-hooks": "^5.1.0",
"prettier": "^3.4.2",
"typescript": "5.7.3",
"typescript-eslint": "^8.23.0"
},
"peerDependencies": {
"react": ">=16.0.0"
},
"overrides": {
"@typescript-eslint/eslint-plugin": "$@typescript-eslint/eslint-plugin"
},
"volta": {
"node": "20.10.0",
"npm": "10.4.0"
}
}