-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.15 KB
/
package.json
File metadata and controls
46 lines (46 loc) · 1.15 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
{
"name": "webpack-monaco-editor-plugin",
"version": "1.1.2",
"description": "A webpack plugin to load and configure the Monaco Editor esm modules.",
"main": "dist/index.js",
"packageManager": "npm@9.6.7",
"author": "Abdelouahed E. <errouaguy.pro@gmail.com>",
"repository": {
"type": "git",
"url": "https://github.com/erropix/webpack-monaco-editor-plugin.git"
},
"scripts": {
"watch": "tsc --watch",
"build": "tsc --build",
"prepare": "tsc --build",
"test": "jest"
},
"files": [
"dist"
],
"keywords": [
"webpack",
"monaco",
"editor",
"plugin",
"loader"
],
"license": "MIT",
"dependencies": {
"loader-utils": "^3.3.1",
"schema-utils": "^4.3.2"
},
"devDependencies": {
"@types/jest": "^29.5.14",
"css-loader": "^7.1.2",
"jest": "^29.7.0",
"memfs": "^4.17.2",
"style-loader": "^4.0.0",
"ts-jest": "^29.3.4",
"typescript": "^5.8.3"
},
"peerDependencies": {
"monaco-editor": ">= 0.31",
"webpack": ">= 5.94"
}
}