dom-watchdog
Version:
Observe mudanças no DOM com callbacks simples.
49 lines (48 loc) • 994 B
JSON
{
"name": "dom-watchdog",
"version": "1.0.6",
"description": "Observe mudanças no DOM com callbacks simples.",
"keywords": [
"dom",
"mutationobserver",
"watch",
"frontend",
"typescript",
"react"
],
"author": {
"email": "jarodsim@gmail.com",
"name": "Jarod Cavalcante",
"url": "https://jarod.dev"
},
"repository": {
"type": "git",
"url": "https://github.com/jarodsim/dom-watchdog.git"
},
"license": "MIT",
"type": "module",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"exports": {
".": {
"import": "./dist/index.js",
"types": "./dist/index.d.ts"
}
},
"scripts": {
"build": "tsc",
"prepare": "npm run build",
"test": "vitest",
"test:coverage": "vitest run --coverage"
},
"devDependencies": {
"@types/jsdom": "^21.1.7",
"@vitest/coverage-v8": "^3.2.0",
"jsdom": "^26.1.0",
"typescript": "^5.8.3",
"vitest": "^3.2.0"
},
"files": [
"dist"
]
}