You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
monaco-editor/webpack-plugin/package.json

48 lines
1.3 KiB
JSON

3 years ago
{
"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": {
"smoketest": "node ./node_modules/webpack/bin/webpack.js --config smoketest/webpack.config.js --progress",
3 years ago
"smoketest-cross-origin": "node ./node_modules/webpack/bin/webpack.js --config smoketest/webpack-cross-origin.config.js --progress",
3 years ago
"watch": "tsc -w -p tsconfig.json",
"compile": "tsc -p tsconfig.json",
3 years ago
"import-editor": "node ./scripts/import-editor.js",
"prepublishOnly": "npm run compile"
3 years ago
},
"repository": {
"type": "git",
"url": "git+https://github.com/microsoft/monaco-editor-webpack-plugin.git"
},
"keywords": [
"webpack",
"monaco",
"editor",
"loader"
],
"author": "Microsoft Corporation",
"license": "MIT",
"bugs": {
"url": "https://github.com/microsoft/monaco-editor-webpack-plugin/issues"
},
"homepage": "https://github.com/microsoft/monaco-editor-webpack-plugin#readme",
"peerDependencies": {
"webpack": "^4.5.0 || 5.x",
"monaco-editor": "0.30.x"
},
"devDependencies": {
"css-loader": "^6.5.1",
3 years ago
"file-loader": "^6.2.0",
"glob": "^7.2.0",
"style-loader": "^3.3.1",
"typescript": "^4.4.4",
"webpack": "^5.64.1",
"webpack-cli": "^4.9.1"
3 years ago
},
"dependencies": {
"loader-utils": "^3.2.0"
3 years ago
}
}