traceperf
Version:
High-performance function execution tracking and monitoring for Node.js
80 lines (79 loc) • 2.04 kB
JSON
{
"name": "traceperf",
"version": "0.2.1",
"description": "High-performance function execution tracking and monitoring for Node.js",
"main": "dist/index.js",
"module": "dist/esm/index.js",
"types": "dist/index.d.ts",
"browser": "dist/browser.js",
"exports": {
".": {
"require": "./dist/index.js",
"import": "./dist/esm/index.js",
"types": "./dist/index.d.ts"
},
"./browser": {
"require": "./dist/browser.js",
"import": "./dist/esm/browser.js",
"types": "./dist/browser.d.ts"
}
},
"files": [
"dist"
],
"scripts": {
"build": "tsc",
"build:esm": "tsc -p tsconfig.esm.json",
"build:browser": "tsc -p tsconfig.browser.json",
"build:all": "npm run build && npm run build:esm && npm run build:browser",
"test": "jest",
"lint": "eslint src --ext .ts",
"format": "prettier --write \"src/**/*.ts\"",
"prepare": "husky install",
"prepublishOnly": "npm run build:all",
"dev": "tsc --watch"
},
"keywords": [
"performance",
"profiling",
"monitoring",
"tracking",
"execution",
"function-tracing",
"memory-tracking",
"bottleneck-detection",
"sampling",
"debug",
"optimization"
],
"author": "Shubh Wadekar",
"license": "MIT",
"engines": {
"node": ">=14.0.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/thelastbackspace/traceperf.git"
},
"bugs": {
"url": "https://github.com/thelastbackspace/traceperf/issues"
},
"homepage": "https://github.com/thelastbackspace/traceperf#readme",
"devDependencies": {
"@types/jest": "^29.5.14",
"@types/node": "^22.13.10",
"@types/uuid": "^10.0.0",
"@typescript-eslint/eslint-plugin": "^8.26.1",
"@typescript-eslint/parser": "^8.26.1",
"eslint": "^8.56.0",
"eslint-config-prettier": "^10.1.1",
"husky": "^9.1.7",
"jest": "^29.7.0",
"prettier": "^3.5.3",
"ts-jest": "^29.2.6",
"typescript": "^5.8.2"
},
"dependencies": {
"uuid": "^11.1.0"
}
}