Neah/node_modules/isomorphic-dompurify/package.json
2025-04-21 17:34:07 +02:00

47 lines
974 B
JSON

{
"name": "isomorphic-dompurify",
"version": "2.23.0",
"description": "Makes it possible to use DOMPurify on server and client in the same way.",
"keywords": [
"security",
"dompurify",
"xss-filter",
"xss",
"isomorphic",
"wrapper",
"universal",
"ssr",
"html-escape",
"sanitize",
"sanitize-html",
"sanitizer"
],
"bugs": {
"url": "https://github.com/kkomelin/isomorphic-dompurify/issues"
},
"files": [
"index.js",
"index.d.ts",
"browser.js"
],
"license": "MIT",
"repository": "kkomelin/isomorphic-dompurify",
"browser": "browser.js",
"main": "index.js",
"types": "index.d.ts",
"dependencies": {
"dompurify": "^3.2.5",
"jsdom": "^26.0.0"
},
"devDependencies": {
"terser": "^5.39.0",
"vitest": "^3.1.1"
},
"engines": {
"node": ">=18"
},
"scripts": {
"test": "vitest",
"build": "terser src/index.js --compress --mangle --module -o index.js"
}
}