-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 850 Bytes
/
package.json
File metadata and controls
33 lines (33 loc) · 850 Bytes
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
{
"name": "pkb-hugo-theme",
"version": "1.0.0",
"description": "PKB Hugo Theme - Optional Node.js scripts for advanced SEO automation",
"private": true,
"scripts": {
"build": "hugo --gc --minify",
"build:advanced": "npm run build && npm run optimize-images && npm run seo-audit",
"dev": "hugo server --disableFastRender --navigateToChanged",
"optimize-images": "node scripts/optimize-images.js",
"seo-audit": "node scripts/seo-audit.js",
"validate-seo": "node scripts/validate-seo.js"
},
"devDependencies": {
"sharp": "^0.34.0",
"glob": "^11.0.0",
"cheerio": "^1.0.0"
},
"engines": {
"node": ">=18.17.0"
},
"repository": {
"type": "git",
"url": "https://github.com/your-username/pkb-theme"
},
"keywords": [
"hugo",
"theme",
"seo",
"academic",
"blog"
]
}