coakka-logger-electron 1.2.3 → 1.2.4

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/dist/index.d.ts CHANGED
@@ -1,5 +1,5 @@
1
1
  import { type LoggerRecordSnapshot, type LoggerSpec, type LoggerStatsSnapshot } from "coakka-logger-node";
2
- export declare const COAKKA_LOGGER_ELECTRON_VERSION = "1.2.3";
2
+ export declare const COAKKA_LOGGER_ELECTRON_VERSION = "1.2.4";
3
3
  export declare const COAKKA_ELECTRON_LOGGER_INTENT_CHANNEL = "coakka:logger-intent";
4
4
  export type ElectronLoggerLevelName = "trace" | "debug" | "info" | "warn" | "error" | "fatal";
5
5
  export interface ElectronLoggerIntent {
package/dist/index.js CHANGED
@@ -1,5 +1,5 @@
1
1
  import { CoakkaLoggerLevel, Logger, LoggerStatusError, } from "coakka-logger-node";
2
- export const COAKKA_LOGGER_ELECTRON_VERSION = "1.2.3";
2
+ export const COAKKA_LOGGER_ELECTRON_VERSION = "1.2.4";
3
3
  export const COAKKA_ELECTRON_LOGGER_INTENT_CHANNEL = "coakka:logger-intent";
4
4
  export class ElectronLoggerIntentBridge {
5
5
  logger;
package/package.json CHANGED
@@ -1,8 +1,25 @@
1
1
  {
2
2
  "name": "coakka-logger-electron",
3
- "version": "1.2.3",
3
+ "version": "1.2.4",
4
4
  "description": "Electron main-process intent bridge for the CoAkka logger",
5
5
  "license": "SEE LICENSE IN LICENSE.md",
6
+ "repository": {
7
+ "type": "git",
8
+ "url": "git+https://github.com/phuong-tran/coakkaJVMConnector.git",
9
+ "directory": "logger/electron"
10
+ },
11
+ "homepage": "https://github.com/phuong-tran/coakka-samples/tree/main/logger/electron",
12
+ "bugs": {
13
+ "url": "https://github.com/phuong-tran/coakkaJVMConnector/issues"
14
+ },
15
+ "keywords": [
16
+ "coakka",
17
+ "logger",
18
+ "native",
19
+ "electron",
20
+ "structured-logging",
21
+ "ipc"
22
+ ],
6
23
  "type": "module",
7
24
  "main": "./dist/index.js",
8
25
  "types": "./dist/index.d.ts",
@@ -30,7 +47,7 @@
30
47
  "smoke:packaged": "bash scripts/smoke-packaged-package.sh"
31
48
  },
32
49
  "dependencies": {
33
- "coakka-logger-node": "1.2.3"
50
+ "coakka-logger-node": "1.2.4"
34
51
  },
35
52
  "devDependencies": {
36
53
  "@types/node": "^24.0.0",