-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.43 KB
/
Copy pathpackage.json
File metadata and controls
50 lines (50 loc) · 1.43 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
47
48
49
50
{
"name": "monaco-editor-extra-libs",
"version": "0.0.1",
"license": "MIT",
"author": "Przemysław Niedziela",
"description": "Enhance Monaco Editor with extra libraries for IntelliSense. Streamline code editing with TypeScript support and advanced features.",
"keywords": [
"monaco editor",
"extra libraries",
"intellisense",
"typescript",
"code editor",
"development tools",
"web development"
],
"repository": {
"url": "https://github.com/loremipsumowski/monaco-editor-extra-libs.git"
},
"homepage": "https://loremipsumowski.github.io/monaco-editor-extra-libs/",
"main": "index.ts",
"scripts": {
"build": "webpack --mode=production --node-env=production",
"build:dev": "webpack --mode=development",
"build:prod": "webpack --mode=production --node-env=production",
"watch": "webpack --watch",
"serve": "webpack serve",
"deploy": "gh-pages -d dist"
},
"devDependencies": {
"copy-webpack-plugin": "^12.0.2",
"css-loader": "^5.2.7",
"file-loader": "^6.2.0",
"gh-pages": "^6.1.1",
"html-webpack-plugin": "^5.5.0",
"monaco-editor": "^0.32.1",
"monaco-editor-webpack-plugin": "^7.0.1",
"style-loader": "^3.3.1",
"terser-webpack-plugin": "^5.3.1",
"ts-loader": "^9.2.6",
"typescript": "^5.0.2",
"webpack": "^5.76.0",
"webpack-cli": "^4.9.2",
"webpack-dev-server": "^4.7.4",
"webpack-manifest-plugin": "^5.0.0"
},
"dependencies": {
"@types/lodash": "^4.14.202",
"lodash": "^4.17.21"
}
}