@hs-web-team/adblocker-detect
Version:
Script to detect the presence of AdBlockers
41 lines (40 loc) • 1.06 kB
JSON
{
"name": "@hs-web-team/adblocker-detect",
"version": "2.0.0",
"description": "Script to detect the presence of AdBlockers",
"repository": "https://github.com/HubSpotWebTeam/adblock-detect",
"main": "./dist/index.js",
"engines": {
"node": ">=18.0.0"
},
"browser": {
"dist/index.js": "./dist/index.js"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"prepare": "npm run build",
"build": "rm -Rf dist/ && webpack --config webpack.config.js",
"dev": "webpack --config webpack.config.js --watch",
"lint": "eslint --ext .js,.ts src"
},
"keywords": [
"adblock"
],
"files": [
"/dist"
],
"types": "dist/index.d.ts",
"author": "@darkmavis1980",
"license": "ISC",
"devDependencies": {
"@types/node": "^20.10.8",
"@typescript-eslint/eslint-plugin": "^6.18.1",
"@typescript-eslint/parser": "^6.18.1",
"eslint": "^8.56.0",
"ts-loader": "^9.5.1",
"tslib": "^2.6.2",
"typescript": "^5.3.3",
"webpack": "^5.89.0",
"webpack-cli": "^5.1.4"
}
}