@devisfuture/electron-modular 1.2.20 → 1.2.22
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +2 -2
- package/package.json +2 -2
package/README.md
CHANGED
|
@@ -95,10 +95,10 @@ pnpm add @devisfuture/electron-modular
|
|
|
95
95
|
|
|
96
96
|
Peer dependency:
|
|
97
97
|
|
|
98
|
-
This package targets Electron's main process and declares Electron >=
|
|
98
|
+
This package targets Electron's main process and declares Electron >=28.3.3 as a peer dependency. Ensure Electron is installed in your project:
|
|
99
99
|
|
|
100
100
|
```bash
|
|
101
|
-
npm install --save-dev electron
|
|
101
|
+
npm install --save-dev electron
|
|
102
102
|
```
|
|
103
103
|
|
|
104
104
|
TypeScript setup:
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@devisfuture/electron-modular",
|
|
3
|
-
"version": "1.2.
|
|
3
|
+
"version": "1.2.22",
|
|
4
4
|
"description": "Core module system, DI container, IPC handlers, and window utilities for Electron main process.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "./dist/index.js",
|
|
@@ -36,7 +36,7 @@
|
|
|
36
36
|
"prepublishOnly": "npm run build"
|
|
37
37
|
},
|
|
38
38
|
"peerDependencies": {
|
|
39
|
-
"electron": ">=
|
|
39
|
+
"electron": ">=28.3.3"
|
|
40
40
|
},
|
|
41
41
|
"dependencies": {},
|
|
42
42
|
"devDependencies": {
|