@electrojs/runtime 1.0.3 → 1.0.5
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 -0
- package/package.json +18 -6
package/README.md
CHANGED
|
@@ -2,6 +2,8 @@
|
|
|
2
2
|
|
|
3
3
|
The main-process runtime for ElectroJS applications.
|
|
4
4
|
|
|
5
|
+
Documentation: https://electrojs.myraxbyte.dev/guide/getting-started
|
|
6
|
+
|
|
5
7
|
`@electrojs/runtime` manages the full lifecycle of an Electron main process: scanning decorator metadata, building the module graph, wiring dependency injection, running lifecycle hooks, exposing a typed IPC bridge, dispatching signals, and scheduling background jobs. It is the layer between your application code and the Electron APIs.
|
|
6
8
|
|
|
7
9
|
---
|
package/package.json
CHANGED
|
@@ -1,8 +1,20 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@electrojs/runtime",
|
|
3
|
-
"version": "1.0.
|
|
4
|
-
"description": "
|
|
3
|
+
"version": "1.0.5",
|
|
4
|
+
"description": "Electron main-process runtime for ElectroJS with DI, lifecycle hooks, typed IPC, and jobs",
|
|
5
|
+
"keywords": [
|
|
6
|
+
"dependency-injection",
|
|
7
|
+
"desktop-app",
|
|
8
|
+
"electrojs",
|
|
9
|
+
"electron",
|
|
10
|
+
"ipc",
|
|
11
|
+
"runtime",
|
|
12
|
+
"typescript"
|
|
13
|
+
],
|
|
5
14
|
"homepage": "https://electrojs.myraxbyte.dev/",
|
|
15
|
+
"bugs": {
|
|
16
|
+
"url": "https://github.com/MyraxByte/electrojs/issues"
|
|
17
|
+
},
|
|
6
18
|
"license": "MIT",
|
|
7
19
|
"repository": {
|
|
8
20
|
"type": "git",
|
|
@@ -37,12 +49,12 @@
|
|
|
37
49
|
"publint": "^0.3.18",
|
|
38
50
|
"tsdown": "^0.21.4",
|
|
39
51
|
"vitest": "^4.1.1",
|
|
40
|
-
"@electrojs/common": "1.0.
|
|
41
|
-
"@electrojs/config": "1.0.
|
|
52
|
+
"@electrojs/common": "1.0.5",
|
|
53
|
+
"@electrojs/config": "1.0.5"
|
|
42
54
|
},
|
|
43
55
|
"peerDependencies": {
|
|
44
|
-
"@electrojs/common": "1.0.
|
|
45
|
-
"@electrojs/config": "1.0.
|
|
56
|
+
"@electrojs/common": "1.0.5",
|
|
57
|
+
"@electrojs/config": "1.0.5",
|
|
46
58
|
"@types/node": "^25.5.0",
|
|
47
59
|
"electron": ">=41"
|
|
48
60
|
},
|