monaco-editor/webpack-plugin/package.json

46 lines
1.0 KiB
JSON
Raw Permalink Normal View History

2021-11-06 07:15:13 +08:00
{
"name": "monaco-editor-webpack-plugin",
2023-07-08 02:38:25 +08:00
"version": "7.1.0",
2021-11-06 07:15:13 +08:00
"description": "A webpack plugin for the Monaco Editor",
"main": "out/index.js",
"typings": "./out/index.d.ts",
"scripts": {
"watch": "tsc -w -p tsconfig.json",
2021-11-16 05:16:09 +08:00
"compile": "tsc -p tsconfig.json",
"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.31.0"
2021-11-06 07:15:13 +08:00
},
"devDependencies": {
2022-02-04 05:43:53 +08:00
"css-loader": "^6.6.0",
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",
2022-02-04 05:43:53 +08:00
"monaco-editor": "^0.32.0",
2021-11-16 16:23:03 +08:00
"style-loader": "^3.3.1",
"typescript": "^5.4.5",
2022-02-04 05:43:53 +08:00
"webpack": "^5.68.0",
"webpack-cli": "^4.9.2"
2021-11-06 07:15:13 +08:00
},
"dependencies": {
"loader-utils": "^2.0.2"
2021-11-06 07:15:13 +08:00
}
}