-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
69 lines (69 loc) · 1.96 KB
/
package.json
File metadata and controls
69 lines (69 loc) · 1.96 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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
{
"name": "brewventy",
"version": "1.0.0",
"description": "Brewventy - The perfect brew of design and functionality. A beautiful Eleventy starter theme featuring Catppuccin Mocha and Latte color schemes with seamless theme switching.",
"main": "index.js",
"author": "Kyle Reddoch",
"license": "MIT",
"type": "module",
"engines": {
"node": ">=22.1.0"
},
"scripts": {
"build": "npm run build:sass && eleventy",
"start": "eleventy --serve",
"build:sass": "sass src/styles/main.scss:_site/css/main.css --style=compressed",
"watch:sass": "sass src/styles/main.scss:_site/css/main.css --watch",
"dev": "npm-run-all --parallel watch:sass start",
"predeploy": "npm run build",
"deploy": "gh-pages -d _site"
},
"keywords": [
"eleventy",
"11ty",
"theme",
"catppuccin",
"starter",
"static-site",
"brewventy",
"coffee",
"mocha",
"latte",
"dark-theme",
"light-theme"
],
"repository": {
"type": "git",
"url": "https://github.com/kylereddoch/brewventy.git"
},
"homepage": "https://github.com/kylereddoch/brewventy#readme",
"bugs": {
"url": "https://github.com/kylereddoch/brewventy/issues"
},
"devDependencies": {
"@11ty/eleventy": "^3.1.2",
"@11ty/eleventy-navigation": "^0.3.5",
"@11ty/eleventy-plugin-rss": "^2.0.2",
"@11ty/eleventy-plugin-syntaxhighlight": "^5.0.0",
"@11ty/is-land": "^4.0.1",
"dotenv": "^17.2.0",
"js-yaml": "^4.1.0",
"markdown-it": "^14.1.0",
"markdown-it-abbr": "^2.0.0",
"markdown-it-anchor": "^9.2.0",
"markdown-it-attrs": "^4.3.1",
"markdown-it-emoji": "^3.0.0",
"markdown-it-footnote": "^4.0.0",
"markdown-it-link-attributes": "^4.0.1",
"markdown-it-mark": "^4.0.0",
"markdown-it-prism": "^3.0.0",
"npm-run-all": "^4.1.5",
"sass": "^1.69.0"
},
"dependencies": {
"@11ty/eleventy-img": "^6.0.4",
"eleventy-sass": "^3.0.0-beta.0",
"latest": "^0.2.0",
"sharp": "^0.34.4"
}
}