@electron-memory/monitor 0.2.1 → 0.2.2
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.js +26 -7
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +26 -7
- package/dist/index.mjs.map +1 -1
- package/dist/ui/index.html +3 -3
- package/package.json +70 -70
package/dist/ui/index.html
CHANGED
|
@@ -4,9 +4,9 @@
|
|
|
4
4
|
<meta charset="UTF-8" />
|
|
5
5
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
6
6
|
<title>Electron Memory Monitor</title>
|
|
7
|
-
<script type="module"
|
|
8
|
-
<link rel="modulepreload"
|
|
9
|
-
<link rel="stylesheet"
|
|
7
|
+
<script type="module" src="./assets/index-BXj3TlLS.js"></script>
|
|
8
|
+
<link rel="modulepreload" href="./assets/vendor-BMPuFM9B.js">
|
|
9
|
+
<link rel="stylesheet" href="./assets/index-DpEoEDgy.css">
|
|
10
10
|
</head>
|
|
11
11
|
<body>
|
|
12
12
|
<div id="monitor-root"></div>
|
package/package.json
CHANGED
|
@@ -1,70 +1,70 @@
|
|
|
1
|
-
{
|
|
2
|
-
"name": "@electron-memory/monitor",
|
|
3
|
-
"version": "0.2.
|
|
4
|
-
"description": "Electron memory profiling SDK - zero-intrusion memory monitoring, anomaly detection, and regression analysis",
|
|
5
|
-
"main": "dist/index.js",
|
|
6
|
-
"module": "dist/index.mjs",
|
|
7
|
-
"types": "dist/index.d.ts",
|
|
8
|
-
"exports": {
|
|
9
|
-
".": {
|
|
10
|
-
"types": "./dist/index.d.ts",
|
|
11
|
-
"import": "./dist/index.mjs",
|
|
12
|
-
"require": "./dist/index.js"
|
|
13
|
-
},
|
|
14
|
-
"./preload": {
|
|
15
|
-
"types": "./dist/preload.d.ts",
|
|
16
|
-
"import": "./dist/preload.mjs",
|
|
17
|
-
"require": "./dist/preload.js"
|
|
18
|
-
}
|
|
19
|
-
},
|
|
20
|
-
"files": [
|
|
21
|
-
"dist"
|
|
22
|
-
],
|
|
23
|
-
"scripts": {
|
|
24
|
-
"build": "tsup && vite build",
|
|
25
|
-
"build:node": "tsup",
|
|
26
|
-
"build:ui": "vite build",
|
|
27
|
-
"dev": "tsup --watch",
|
|
28
|
-
"clean": "rimraf dist"
|
|
29
|
-
},
|
|
30
|
-
"peerDependencies": {
|
|
31
|
-
"electron": ">=20.0.0"
|
|
32
|
-
},
|
|
33
|
-
"devDependencies": {
|
|
34
|
-
"electron": "^33.2.1",
|
|
35
|
-
"tsup": "^8.0.0",
|
|
36
|
-
"typescript": "^5.6.3",
|
|
37
|
-
"rimraf": "^5.0.0",
|
|
38
|
-
"react": "^18.3.1",
|
|
39
|
-
"react-dom": "^18.3.1",
|
|
40
|
-
"@types/react": "^18.3.12",
|
|
41
|
-
"@types/react-dom": "^18.3.1",
|
|
42
|
-
"recharts": "^2.12.0",
|
|
43
|
-
"vite": "^6.0.3",
|
|
44
|
-
"@vitejs/plugin-react": "^4.3.4",
|
|
45
|
-
"less": "^4.2.1"
|
|
46
|
-
},
|
|
47
|
-
"keywords": [
|
|
48
|
-
"electron",
|
|
49
|
-
"memory",
|
|
50
|
-
"profiling",
|
|
51
|
-
"monitoring",
|
|
52
|
-
"performance",
|
|
53
|
-
"memory-leak",
|
|
54
|
-
"v8-heap",
|
|
55
|
-
"dashboard",
|
|
56
|
-
"anomaly-detection",
|
|
57
|
-
"regression-testing"
|
|
58
|
-
],
|
|
59
|
-
"license": "MIT",
|
|
60
|
-
"repository": {
|
|
61
|
-
"type": "git",
|
|
62
|
-
"url": "git+https://github.com/spcBackToLife/electron-memery-track.git",
|
|
63
|
-
"directory": "packages/electron-memory-monitor"
|
|
64
|
-
},
|
|
65
|
-
"homepage": "https://github.com/spcBackToLife/electron-memery-track#readme",
|
|
66
|
-
"bugs": {
|
|
67
|
-
"url": "https://github.com/spcBackToLife/electron-memery-track/issues"
|
|
68
|
-
},
|
|
69
|
-
"author": "spcBackToLife"
|
|
70
|
-
}
|
|
1
|
+
{
|
|
2
|
+
"name": "@electron-memory/monitor",
|
|
3
|
+
"version": "0.2.2",
|
|
4
|
+
"description": "Electron memory profiling SDK - zero-intrusion memory monitoring, anomaly detection, and regression analysis",
|
|
5
|
+
"main": "dist/index.js",
|
|
6
|
+
"module": "dist/index.mjs",
|
|
7
|
+
"types": "dist/index.d.ts",
|
|
8
|
+
"exports": {
|
|
9
|
+
".": {
|
|
10
|
+
"types": "./dist/index.d.ts",
|
|
11
|
+
"import": "./dist/index.mjs",
|
|
12
|
+
"require": "./dist/index.js"
|
|
13
|
+
},
|
|
14
|
+
"./preload": {
|
|
15
|
+
"types": "./dist/preload.d.ts",
|
|
16
|
+
"import": "./dist/preload.mjs",
|
|
17
|
+
"require": "./dist/preload.js"
|
|
18
|
+
}
|
|
19
|
+
},
|
|
20
|
+
"files": [
|
|
21
|
+
"dist"
|
|
22
|
+
],
|
|
23
|
+
"scripts": {
|
|
24
|
+
"build": "tsup && vite build",
|
|
25
|
+
"build:node": "tsup",
|
|
26
|
+
"build:ui": "vite build",
|
|
27
|
+
"dev": "tsup --watch",
|
|
28
|
+
"clean": "rimraf dist"
|
|
29
|
+
},
|
|
30
|
+
"peerDependencies": {
|
|
31
|
+
"electron": ">=20.0.0"
|
|
32
|
+
},
|
|
33
|
+
"devDependencies": {
|
|
34
|
+
"electron": "^33.2.1",
|
|
35
|
+
"tsup": "^8.0.0",
|
|
36
|
+
"typescript": "^5.6.3",
|
|
37
|
+
"rimraf": "^5.0.0",
|
|
38
|
+
"react": "^18.3.1",
|
|
39
|
+
"react-dom": "^18.3.1",
|
|
40
|
+
"@types/react": "^18.3.12",
|
|
41
|
+
"@types/react-dom": "^18.3.1",
|
|
42
|
+
"recharts": "^2.12.0",
|
|
43
|
+
"vite": "^6.0.3",
|
|
44
|
+
"@vitejs/plugin-react": "^4.3.4",
|
|
45
|
+
"less": "^4.2.1"
|
|
46
|
+
},
|
|
47
|
+
"keywords": [
|
|
48
|
+
"electron",
|
|
49
|
+
"memory",
|
|
50
|
+
"profiling",
|
|
51
|
+
"monitoring",
|
|
52
|
+
"performance",
|
|
53
|
+
"memory-leak",
|
|
54
|
+
"v8-heap",
|
|
55
|
+
"dashboard",
|
|
56
|
+
"anomaly-detection",
|
|
57
|
+
"regression-testing"
|
|
58
|
+
],
|
|
59
|
+
"license": "MIT",
|
|
60
|
+
"repository": {
|
|
61
|
+
"type": "git",
|
|
62
|
+
"url": "git+https://github.com/spcBackToLife/electron-memery-track.git",
|
|
63
|
+
"directory": "packages/electron-memory-monitor"
|
|
64
|
+
},
|
|
65
|
+
"homepage": "https://github.com/spcBackToLife/electron-memery-track#readme",
|
|
66
|
+
"bugs": {
|
|
67
|
+
"url": "https://github.com/spcBackToLife/electron-memery-track/issues"
|
|
68
|
+
},
|
|
69
|
+
"author": "spcBackToLife"
|
|
70
|
+
}
|