-
Notifications
You must be signed in to change notification settings - Fork 49
/
package.hugo.json
63 lines (63 loc) · 1.99 KB
/
package.hugo.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
{
"name": "hugo-theme-gruvbox",
"version": "1.0.0",
"description": "A retro-looking Hugo theme inspired by gruvbox. The pastel colors are high contrast, easily distinguishable, pleasing to the eye, and feature light and dark color palettes.",
"author": {
"name": "Michael Schnerring",
"email": "3743342+schnerring@users.noreply.github.com",
"url": "https://schnerring.net"
},
"license": "MIT",
"main": "index.js",
"homepage": "https://github.com/schnerring/hugo-theme-gruvbox#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/schnerring/hugo-theme-gruvbox.git"
},
"bugs": {
"url": "https://github.com/schnerring/hugo-theme-gruvbox/issues"
},
"keywords": ["hugo", "gruvbox", "theme"],
"scripts": {
"lint:css": "stylelint --fix **/*.css",
"lint:js": "eslint --fix .",
"lint:md": "markdownlint --fix **/*.md",
"lint": "npm run lint:css && npm run lint:js && npm run lint:md",
"prepare": "husky"
},
"lint-staged": {
"*.js": "eslint --cache --fix",
"*.css": "stylelint --fix --allow-empty-input",
"*.md": "markdownlint --fix"
},
"dependencies": {
"@tabler/icons": "^3.22.0",
"flexsearch": "0.7.43",
"normalize.css": "^8.0.1",
"prism-themes": "^1.9.0",
"prismjs": "^1.29.0",
"typeface-fira-code": "^1.1.13",
"typeface-roboto-slab": "^1.1.13"
},
"devDependencies": {
"@fullhuman/postcss-purgecss": "^6.0.0",
"cssnano": "^7.0.6",
"eslint": "^9.14.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.2.1",
"husky": "^9.1.6",
"lint-staged": "^15.2.10",
"markdownlint-cli": "^0.42.0",
"postcss": "^8.4.47",
"postcss-cli": "^11.0.0",
"postcss-custom-media": "^11.0.5",
"postcss-import": "^16.1.0",
"postcss-nesting": "^13.0.1",
"postcss-preset-env": "^10.0.9",
"postcss-url": "^10.1.3",
"prettier": "^3.3.3",
"prettier-plugin-go-template": "^0.0.15",
"stylelint": "^16.10.0",
"stylelint-prettier": "^5.0.2"
}
}