{ "name": "@ironservices/telemetry", "version": "0.1.0", "description": "Error monitoring and crash reporting SDK for JavaScript/TypeScript applications", "main": "dist/cjs/index.js", "module": "dist/esm/index.js", "types": "dist/types/index.d.ts", "exports": { ".": { "import": "./dist/esm/index.js", "require": "./dist/cjs/index.js", "types": "./dist/types/index.d.ts" } }, "files": [ "dist" ], "scripts": { "build": "npm run build:esm && npm run build:cjs && npm run build:types", "build:esm": "tsc -p tsconfig.esm.json", "build:cjs": "tsc -p tsconfig.cjs.json", "build:types": "tsc -p tsconfig.types.json", "test": "vitest run", "test:watch": "vitest", "lint": "eslint src --ext .ts", "prepublishOnly": "npm run build" }, "keywords": [ "error-monitoring", "crash-reporting", "telemetry", "exception-tracking", "irontelemetry", "ironservices" ], "author": "IronServices", "license": "MIT", "repository": { "type": "git", "url": "https://github.com/IronServices/irontelemetry-js.git" }, "bugs": { "url": "https://github.com/IronServices/irontelemetry-js/issues" }, "homepage": "https://www.irontelemetry.com", "devDependencies": { "@types/node": "^20.10.0", "typescript": "^5.3.0", "vitest": "^1.0.0", "eslint": "^8.55.0", "@typescript-eslint/eslint-plugin": "^6.13.0", "@typescript-eslint/parser": "^6.13.0" }, "engines": { "node": ">=16.0.0" } }