@camstack/addon-metrics-glances 0.1.1

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/package.json ADDED
@@ -0,0 +1,69 @@
1
+ {
2
+ "name": "@camstack/addon-metrics-glances",
3
+ "version": "0.1.1",
4
+ "description": "System metrics via Glances REST API — richer data than native collection with automatic fallback",
5
+ "keywords": [
6
+ "camstack",
7
+ "addon",
8
+ "camstack-addon",
9
+ "metrics",
10
+ "glances",
11
+ "monitoring"
12
+ ],
13
+ "license": "MIT",
14
+ "repository": {
15
+ "type": "git",
16
+ "url": "https://github.com/camstack/server"
17
+ },
18
+ "main": "./dist/index.js",
19
+ "module": "./dist/index.mjs",
20
+ "types": "./dist/index.d.ts",
21
+ "exports": {
22
+ ".": {
23
+ "types": "./dist/index.d.ts",
24
+ "import": "./dist/index.mjs",
25
+ "require": "./dist/index.js"
26
+ },
27
+ "./package.json": "./package.json"
28
+ },
29
+ "camstack": {
30
+ "displayName": "Glances System Metrics",
31
+ "addons": [
32
+ {
33
+ "id": "metrics-glances",
34
+ "name": "Glances System Metrics",
35
+ "version": "0.1.0",
36
+ "description": "Rich system metrics via Glances REST API with automatic native fallback",
37
+ "entry": "./dist/glances-metrics.addon.js",
38
+ "execution": {
39
+ "placement": "any-node",
40
+ "group": "metrics-glances"
41
+ },
42
+ "capabilities": [
43
+ {
44
+ "name": "metrics-provider"
45
+ }
46
+ ]
47
+ }
48
+ ]
49
+ },
50
+ "files": [
51
+ "dist"
52
+ ],
53
+ "scripts": {
54
+ "build": "tsup",
55
+ "dev": "tsup --watch",
56
+ "typecheck": "tsc --noEmit"
57
+ },
58
+ "dependencies": {
59
+ "@camstack/core": "*"
60
+ },
61
+ "peerDependencies": {
62
+ "@camstack/types": "^0.1.0"
63
+ },
64
+ "devDependencies": {
65
+ "@camstack/types": "*",
66
+ "tsup": "^8.0.0",
67
+ "typescript": "~5.9.0"
68
+ }
69
+ }