-
-
Notifications
You must be signed in to change notification settings - Fork 36
/
Copy pathpackage.json
48 lines (48 loc) · 1.68 KB
/
package.json
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
{
"name": "github-monaco-browser-extension",
"private": true,
"version": "1.0.0",
"author": "Henning Dieterichs <[email protected]>",
"license": "UNLICENSED",
"scripts": {
"dev": "NODE_OPTIONS=--openssl-legacy-provider webpack --watch --mode development",
"dev-without-cdn": "webpack --watch --mode development",
"build": "NODE_OPTIONS=--openssl-legacy-provider yarn build-js && yarn bundle",
"build-js": "webpack --mode production",
"bundle": "yarn shx rm -rf ./dist/extension.zip && yarn jszip-cli add -o ./dist/extension.zip -i *.map dist manifest.json logo.drawio.png",
"update-actions": "yarn pin-github-action ./.github/workflows/master.yml && yarn prettier ./.github/workflows/master.yml -w"
},
"devDependencies": {
"@ffflorian/jszip-cli": "^3.1.0",
"@types/chrome": "^0.0.133",
"@types/html-webpack-plugin": "^3.2.2",
"@types/mini-css-extract-plugin": "^1.2.2",
"@types/webpack": "^4.41.6",
"clean-webpack-plugin": "^3.0.0",
"css-loader": "^7.1.2",
"file-loader": "^6.2.0",
"fork-ts-checker-webpack-plugin": "^6.2.0",
"html-webpack-plugin": "^5.3.1",
"mini-css-extract-plugin": "^1.3.3",
"monaco-editor-webpack-plugin": "~7.0.1",
"postcss": "^8.4.47",
"prettier": "^2.2.1",
"raw-loader": "^4.0.0",
"sass": "^1.25.0",
"sass-loader": "^11.0.1",
"shx": "^0.3.2",
"style-loader": "^2.0.0",
"ts-loader": "^9.4.1",
"ts-node": "^10.9.1",
"typescript": "^4.8.4",
"webpack": "^5.75.0",
"webpack-cli": "^4.5.0"
},
"dependencies": {
"@types/copy-webpack-plugin": "^6.4.0",
"copy-webpack-plugin": "^8.0.0",
"gemoji": "^6.1.0",
"monaco-editor": "~0.52.2",
"pin-github-action": "^1.1.3"
}
}