-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.25 KB
/
Copy pathpackage.json
File metadata and controls
55 lines (55 loc) · 1.25 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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
{
"name": "@prerenderbuddy/cli",
"version": "0.1.4",
"description": "Open-source crawler-readability and discovery-file diagnostics for public websites.",
"homepage": "https://github.com/kopachlager/prerenderbuddy-cli#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/kopachlager/prerenderbuddy-cli.git"
},
"bugs": {
"url": "https://github.com/kopachlager/prerenderbuddy-cli/issues"
},
"type": "module",
"bin": {
"prerenderbuddy": "bin/prerenderbuddy.js"
},
"exports": {
".": "./src/index.js"
},
"files": [
"bin",
"src",
"LICENSE",
"NOTICE",
"README.md",
"ROADMAP.md",
"SECURITY.md"
],
"scripts": {
"check": "node --check bin/prerenderbuddy.js && node --check src/*.js",
"demo:fixture": "node scripts/demo-fixture.js",
"test": "node --test",
"test:coverage": "node --test --experimental-test-coverage",
"pack:check": "node scripts/verify-package.js"
},
"engines": {
"node": ">=20"
},
"keywords": [
"crawler",
"technical-seo",
"javascript-seo",
"prerendering",
"googlebot",
"gptbot",
"robots-txt",
"sitemap",
"llms-txt",
"seo-cli"
],
"license": "Apache-2.0",
"publishConfig": {
"access": "public"
}
}