forked from microsoft/monaco-editor
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
48 lines (48 loc) · 1.31 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
{
"name": "monaco-editor-webpack-plugin",
"version": "7.0.1",
"description": "A webpack plugin for the Monaco Editor",
"main": "out/index.js",
"typings": "./out/index.d.ts",
"scripts": {
"smoketest": "node ./node_modules/webpack/bin/webpack.js --config smoketest/webpack.config.js --progress",
"smoketest-cross-origin": "node ./node_modules/webpack/bin/webpack.js --config smoketest/webpack-cross-origin.config.js --progress",
"watch": "tsc -w -p tsconfig.json",
"compile": "tsc -p tsconfig.json",
"import-editor": "node ./scripts/import-editor.js",
"prepublishOnly": "npm run compile"
},
"repository": {
"type": "git",
"url": "git+https://github.com/microsoft/monaco-editor.git"
},
"keywords": [
"webpack",
"monaco",
"editor",
"loader"
],
"author": "Microsoft Corporation",
"license": "MIT",
"bugs": {
"url": "https://github.com/microsoft/monaco-editor/issues"
},
"homepage": "https://github.com/microsoft/monaco-editor#readme",
"peerDependencies": {
"webpack": "^4.5.0 || 5.x",
"monaco-editor": ">= 0.31.0"
},
"devDependencies": {
"css-loader": "^6.5.1",
"file-loader": "^6.2.0",
"glob": "^7.2.0",
"monaco-editor": "^0.31.0",
"style-loader": "^3.3.1",
"typescript": "^4.4.4",
"webpack": "^5.64.1",
"webpack-cli": "^4.9.1"
},
"dependencies": {
"loader-utils": "^2.0.2"
}
}