2021-11-06 07:15:13 +08:00
|
|
|
{
|
|
|
|
"name": "monaco-editor-webpack-plugin",
|
|
|
|
"version": "6.0.0",
|
|
|
|
"description": "A webpack plugin for the Monaco Editor",
|
|
|
|
"main": "out/index.js",
|
|
|
|
"typings": "./out/index.d.ts",
|
|
|
|
"scripts": {
|
2021-11-16 05:16:09 +08:00
|
|
|
"smoketest": "node ./node_modules/webpack/bin/webpack.js --config smoketest/webpack.config.js --progress",
|
2021-11-16 05:37:47 +08:00
|
|
|
"smoketest-cross-origin": "node ./node_modules/webpack/bin/webpack.js --config smoketest/webpack-cross-origin.config.js --progress",
|
2021-11-06 07:15:13 +08:00
|
|
|
"watch": "tsc -w -p tsconfig.json",
|
2021-11-16 05:16:09 +08:00
|
|
|
"compile": "tsc -p tsconfig.json",
|
2021-11-06 07:15:13 +08:00
|
|
|
"import-editor": "node ./scripts/import-editor.js",
|
2021-11-16 05:16:09 +08:00
|
|
|
"prepublishOnly": "npm run compile"
|
2021-11-06 07:15:13 +08:00
|
|
|
},
|
|
|
|
"repository": {
|
|
|
|
"type": "git",
|
2021-11-17 06:18:23 +08:00
|
|
|
"url": "git+https://github.com/microsoft/monaco-editor.git"
|
2021-11-06 07:15:13 +08:00
|
|
|
},
|
|
|
|
"keywords": [
|
|
|
|
"webpack",
|
|
|
|
"monaco",
|
|
|
|
"editor",
|
|
|
|
"loader"
|
|
|
|
],
|
|
|
|
"author": "Microsoft Corporation",
|
|
|
|
"license": "MIT",
|
|
|
|
"bugs": {
|
2021-11-17 06:18:23 +08:00
|
|
|
"url": "https://github.com/microsoft/monaco-editor/issues"
|
2021-11-06 07:15:13 +08:00
|
|
|
},
|
2021-11-17 06:18:23 +08:00
|
|
|
"homepage": "https://github.com/microsoft/monaco-editor#readme",
|
2021-11-06 07:15:13 +08:00
|
|
|
"peerDependencies": {
|
|
|
|
"webpack": "^4.5.0 || 5.x",
|
|
|
|
"monaco-editor": "0.30.x"
|
|
|
|
},
|
|
|
|
"devDependencies": {
|
2021-11-16 16:23:03 +08:00
|
|
|
"css-loader": "^6.5.1",
|
2021-11-06 07:15:13 +08:00
|
|
|
"file-loader": "^6.2.0",
|
2021-11-16 16:23:03 +08:00
|
|
|
"glob": "^7.2.0",
|
2021-12-10 06:55:04 +08:00
|
|
|
"monaco-editor": "^0.30.1",
|
2021-11-16 16:23:03 +08:00
|
|
|
"style-loader": "^3.3.1",
|
|
|
|
"typescript": "^4.4.4",
|
|
|
|
"webpack": "^5.64.1",
|
|
|
|
"webpack-cli": "^4.9.1"
|
2021-11-06 07:15:13 +08:00
|
|
|
},
|
|
|
|
"dependencies": {
|
2021-11-16 16:23:03 +08:00
|
|
|
"loader-utils": "^3.2.0"
|
2021-11-06 07:15:13 +08:00
|
|
|
}
|
|
|
|
}
|