{ "name": "@openreplay/tracker", "description": "The OpenReplay tracker main package", "version": "9.0.5", "keywords": [ "logging", "replay" ], "author": "Alex Tsokurov", "contributors": [ "Aleksandr K " ], "license": "MIT", "type": "module", "main": "./lib/index.js", "scripts": { "lint": "eslint src --ext .ts,.js --fix --quiet", "clean": "rm -Rf build && rm -Rf lib && rm -Rf cjs", "tscRun": "tsc -b src/main && tsc -b src/webworker && tsc --project src/main/tsconfig-cjs.json", "rollup": "rollup --config rollup.config.js", "compile": "node --experimental-modules --experimental-json-modules scripts/compile.cjs", "build": "npm run clean && npm run tscRun && npm run rollup && npm run compile", "prepare": "cd ../../ && husky install tracker/.husky/", "lint-front": "lint-staged", "test": "jest --coverage=false", "test:ci": "jest --coverage=true", "postversion": "npm run build", "prepublishOnly": "npm run build" }, "devDependencies": { "@babel/core": "^7.10.2", "@jest/globals": "^29.3.1", "@rollup/plugin-babel": "^5.0.3", "@rollup/plugin-node-resolve": "^10.0.0", "@typescript-eslint/eslint-plugin": "^5.30.0", "@typescript-eslint/parser": "^5.30.0", "eslint": "^7.8.0", "eslint-config-prettier": "^8.5.0", "eslint-plugin-prettier": "^4.2.1", "husky": "^8.0.1", "jest": "^29.3.1", "jest-environment-jsdom": "^29.3.1", "lint-staged": "^13.0.3", "prettier": "^2.7.1", "replace-in-files": "^2.0.3", "rollup": "^2.59.0", "rollup-plugin-terser": "^6.1.0", "semver": "^6.3.0", "ts-jest": "^29.0.3", "typescript": "^4.9.4" }, "dependencies": { "@medv/finder": "^3.0.0", "error-stack-parser": "^2.0.6", "fflate": "^0.7.4" }, "engines": { "node": ">=14.0" }, "husky": { "hooks": { "pre-commit": "sh lint.sh" } }, "lint-staged": { "*.{js,mjs,jsx,ts,tsx}": [ "eslint --fix --quiet" ], "*.{json,md,html,js,jsx,ts,tsx}": [ "prettier --write" ] } }