UNPKG

avo-inspector

Version:

[![npm version](https://badge.fury.io/js/avo-inspector.svg)](https://badge.fury.io/js/avo-inspector)

88 lines (87 loc) 2.6 kB
{ "name": "avo-inspector", "version": "3.2.0", "description": "", "main": "dist/index.js", "browser": "dist/index.js", "types": "dist/index.d.ts", "exports": { ".": { "types": "./dist/index.d.ts", "default": "./dist/index.js" }, "./lite": { "types": "./dist/lite/index.d.ts", "default": "./dist/lite/index.js" } }, "files": [ "dist/**/*.js", "dist/**/*.d.ts", "dist/lite/**/*.js", "dist/lite/**/*.d.ts", "bin/", "bsconfig.json", "rescript.json", "rescript/" ], "bin": { "avo-inspector": "bin/avo-inspector.js" }, "scripts": { "build": "tsc --emitDeclarationOnly && webpack --config webpack.config.js && rm -rf dist/lite && tsc --project tsconfig.lite.json", "build-for-script-tag": "tsc --outDir dist-browser --emitDeclarationOnly && webpack --config webpack.browserConfig.js", "lint": "eslint ./src --ext .js,.ts", "test": "jest --roots='<rootDir>/src'", "test:browser": "BROWSER=1 jest --roots='<rootDir>/src'", "typecheck": "tsc --noEmit", "check:lite-size": "node scripts/check-lite-size.js", "verify:lite-sync": "bash scripts/verify-lite-sync.sh", "prepublishOnly": "yarn build && yarn verify:lite-sync && yarn check:lite-size && yarn test:browser && rm -rf examples/ts-avo-inspector-example/node_modules/ && cd examples/ts-avo-inspector-example/ && yarn && yarn test --watchAll=false" }, "repository": { "type": "git", "url": "git+https://github.com/avohq/web-avo-inspector.git" }, "keywords": [ "web", "analytics", "avo", "react", "node", "javascript" ], "author": "Avo (https://www.avo.app)", "license": "MIT", "bugs": { "url": "https://github.com/avohq/web-avo-inspector/issues" }, "homepage": "https://github.com/avohq/web-avo-inspector#readme", "engines": { "node": ">=18.0.0" }, "dependencies": { "@noble/curves": "^1.4.0", "safe-regex2": "^5.0.0" }, "devDependencies": { "@babel/core": "^7.25.2", "@babel/preset-env": "^7.25.3", "@types/jest": "^29.5.12", "@types/node": "^22.3.0", "@typescript-eslint/eslint-plugin": "^8.1.0", "eslint": "^9.9.0", "eslint-config-standard-with-typescript": "^43.0.1", "eslint-plugin-import": "^2.29.1", "eslint-plugin-n": "^17.10.2", "eslint-plugin-promise": "^7.1.0", "jest": "^29.7.0", "jest-environment-jsdom": "^29.7.0", "ts-jest": "^29.2.4", "terser": "^5.31.0", "ts-loader": "^9.5.1", "typescript": ">=5.7 <6", "webpack": "^5.93.0", "webpack-cli": "^5.1.4" } }