-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
68 lines (68 loc) · 1.69 KB
/
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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
{
"name": "astro-mail-obfuscation",
"version": "2.3.4",
"description": "Protect email addresses, phone numbers and other sensitive data from bots scraping the source code of your Astro app.",
"homepage": "https://www.npmjs.com/package/astro-mail-obfuscation",
"repository": {
"type": "git",
"url": "git+https://github.com/andreas-brunner/astro-mail-obfuscation.git"
},
"author": "Andreas Brunner <opensource@brunner-andreas.de>",
"license": "MIT",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"type": "module",
"exports": {
".": {
"import": "./dist/index.js",
"require": "./dist/index.js",
"types": "./dist/index.d.ts"
}
},
"files": [
"dist/**/*",
"README.md",
"LICENSE"
],
"keywords": [
"astro",
"astro-component",
"astro-integration",
"withastro",
"email-obfuscation",
"email-protection",
"spam-protection",
"bot-protection",
"email-security",
"security",
"obfuscation",
"encoding",
"utils",
"utility"
],
"scripts": {
"build": "tsc && terser dist/index.js -o dist/index.js && terser dist/scripts/client.js -o dist/scripts/client.js",
"lint": "eslint 'src/**/*.{ts,tsx}'"
},
"peerDependencies": {
"astro": ">=4.0.0"
},
"dependencies": {
"cheerio": "^1.0.0",
"globby": "^14.0.2",
"p-limit": "^6.1.0"
},
"devDependencies": {
"@types/cheerio": "^0.22.35",
"@types/node": "^22.8.1",
"@typescript-eslint/eslint-plugin": "^8.12.0",
"@typescript-eslint/parser": "^8.12.0",
"eslint": "^9.13.0",
"eslint-plugin-security": "^3.0.1",
"terser": "^5.36.0",
"typescript": "^5.6.3"
},
"engines": {
"node": ">=18.17.1"
}
}