reporting-lib
Version:
A comprehensive monitoring and reporting library for web applications
56 lines (55 loc) • 1.15 kB
JSON
{
"name": "reporting-lib",
"version": "0.2.5",
"description": "A comprehensive monitoring and reporting library for web applications",
"type": "module",
"main": "dist/index.js",
"module": "dist/index.js",
"types": "dist/index.d.ts",
"exports": {
".": {
"import": "./dist/index.js",
"types": "./dist/index.d.ts"
}
},
"files": [
"dist",
"README.md"
],
"keywords": [
"monitoring",
"reporting",
"performance",
"error-tracking",
"analytics"
],
"author": "",
"license": "MIT",
"repository": {
"type": "git",
"url": ""
},
"homepage": "",
"bugs": {
"url": ""
},
"scripts": {
"build": "tsc",
"build:bundle": "tsup",
"dev": "tsc --watch",
"lint": "eslint src --ext .ts",
"prepublishOnly": "npm run build && npm run build:bundle",
"clean": "rm -rf dist",
"prebuild": "npm run clean"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^6.0.0",
"@typescript-eslint/parser": "^6.0.0",
"eslint": "^8.0.0",
"tsup": "^8.5.0",
"typescript": "^5.4.0"
},
"dependencies": {
"web-vitals": "^5.0.3"
}
}