ak-diagnostic
Version:
A lightweight Node.js diagnostic tool for monitoring runtime performance, memory usage, and system metrics with minimal overhead
98 lines (97 loc) • 2.23 kB
JSON
{
"name": "ak-diagnostic",
"version": "1.0.0",
"description": "A lightweight Node.js diagnostic tool for monitoring runtime performance, memory usage, and system metrics with minimal overhead",
"main": "index.js",
"module": "index.mjs",
"types": "index.d.ts",
"exports": {
".": {
"types": "./index.d.ts",
"require": "./index.js",
"import": "./index.mjs"
}
},
"scripts": {
"test": "vitest run",
"test:watch": "vitest",
"test:ui": "vitest --ui",
"test:coverage": "vitest run --coverage",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"format": "prettier --write .",
"format:check": "prettier --check .",
"typecheck": "tsc --noEmit",
"validate": "npm run lint && npm run format:check && npm run typecheck && npm test",
"prepack": "npm run validate",
"example": "node examples/basic.js",
"example:stress": "node examples/stress-test.js",
"post": "npm publish"
},
"keywords": [
"diagnostics",
"performance",
"monitoring",
"memory",
"cpu",
"profiling",
"metrics",
"runtime",
"nodejs",
"developer-tools",
"debugging",
"performance-monitoring",
"memory-leak",
"system-monitoring",
"zero-dependency",
"event-loop",
"heap-monitoring",
"lightweight"
],
"author": {
"name": "ak-diagnostic",
"email": "",
"url": ""
},
"license": "MIT",
"engines": {
"node": ">=12.0.0",
"npm": ">=6.0.0"
},
"os": [
"darwin",
"linux",
"win32"
],
"cpu": [
"x64",
"arm64"
],
"repository": {
"type": "git",
"url": "https://github.com/yourusername/ak-diagnostic.git"
},
"bugs": {
"url": "https://github.com/yourusername/ak-diagnostic/issues"
},
"homepage": "https://github.com/yourusername/ak-diagnostic#readme",
"files": [
"index.js",
"index.mjs",
"index.d.ts",
"README.md",
"LICENSE"
],
"funding": {
"type": "github",
"url": "https://github.com/sponsors/yourusername"
},
"devDependencies": {
"@eslint/js": "^9.33.0",
"@types/node": "^24.2.1",
"eslint": "^9.33.0",
"prettier": "^3.6.2",
"typescript": "^5.9.2",
"vitest": "^3.2.4"
}
}