-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 1.11 KB
/
Copy pathpackage.json
File metadata and controls
39 lines (39 loc) · 1.11 KB
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
{
"name": "favicon-api",
"version": "1.0.0",
"description": "One-click favicon API — append any domain to get its favicon. Zero-dependency Node.js, with multi-source fallback, SSRF protection and validity checks.",
"type": "module",
"keywords": [
"favicon",
"favicon-api",
"favicon-fetcher",
"favicon-grabber",
"favicon-service",
"favicon-downloader",
"website-icon",
"icon",
"nodejs",
"zero-dependency",
"ssrf"
],
"scripts": {
"start": "node src/index.js",
"dev": "node --watch src/index.js",
"test": "node --test",
"check": "node --check src/index.js && node --check src/favicon.js && node --check src/usage-counter.js && node --check src/usage-qualifier.js && node --test",
"benchmark": "node scripts/benchmark.mjs"
},
"engines": {
"node": ">=18"
},
"license": "MIT",
"author": "VeteranBoLuo",
"homepage": "https://github.com/VeteranBoLuo/favicon-api",
"repository": {
"type": "git",
"url": "git+https://github.com/VeteranBoLuo/favicon-api.git"
},
"bugs": {
"url": "https://github.com/VeteranBoLuo/favicon-api/issues"
}
}