-
-
Notifications
You must be signed in to change notification settings - Fork 615
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1.18 KB
/
package.json
File metadata and controls
44 lines (44 loc) · 1.18 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
{
"name": "@electron-forge/plugin-webpack",
"version": "8.0.0-alpha.6",
"type": "module",
"description": "Webpack plugin for Electron Forge, lets you use Webpack directly in your tooling",
"repository": "https://github.com/electron/forge",
"author": "Samuel Attard",
"license": "MIT",
"exports": "./dist/WebpackPlugin.js",
"typings": "dist/WebpackPlugin.d.ts",
"devDependencies": {
"@electron/packager": "^19.0.1",
"@malept/cross-spawn-promise": "^2.0.0",
"@types/node": "^22.10.7",
"vitest": "^4.0.14",
"which": "^2.0.2",
"xvfb-maybe": "^0.2.1"
},
"engines": {
"node": ">= 22.18.0"
},
"dependencies": {
"@electron-forge/core-utils": "workspace:*",
"@electron-forge/plugin-base": "workspace:*",
"@electron-forge/shared-types": "workspace:*",
"@electron-forge/web-multi-logger": "workspace:*",
"chalk": "^4.0.0",
"debug": "^4.3.1",
"fast-glob": "^3.2.7",
"fs-extra": "^10.0.0",
"html-webpack-plugin": "^5.5.3",
"listr2": "^7.0.2",
"webpack": "^5.69.1",
"webpack-dev-server": "^4.0.0",
"webpack-merge": "^5.7.3"
},
"publishConfig": {
"access": "public"
},
"files": [
"dist",
"src"
]
}