-
Notifications
You must be signed in to change notification settings - Fork 13
/
package.json
48 lines (48 loc) · 1009 Bytes
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
{
"name": "isomorphic-dompurify",
"version": "2.16.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"
],
"scripts": {
"test": "vitest",
"build": "terser src/index.js --compress --mangle --module -o index.js"
},
"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": {
"@types/dompurify": "^3.0.5",
"dompurify": "^3.1.7",
"jsdom": "^25.0.1"
},
"devDependencies": {
"terser": "^5.34.0",
"vitest": "^2.1.1"
},
"engines": {
"node": ">=18"
}
}