47 lines
974 B
JSON
47 lines
974 B
JSON
{
|
|
"name": "isomorphic-dompurify",
|
|
"version": "2.24.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.1.0"
|
|
},
|
|
"devDependencies": {
|
|
"terser": "^5.39.0",
|
|
"vitest": "^3.1.2"
|
|
},
|
|
"engines": {
|
|
"node": ">=18"
|
|
},
|
|
"scripts": {
|
|
"test": "vitest",
|
|
"build": "terser src/index.js --compress --mangle --module -o index.js"
|
|
}
|
|
} |