-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1.17 KB
/
package.json
File metadata and controls
43 lines (43 loc) · 1.17 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
{
"name": "eleventy-blog",
"version": "1.0.0",
"repository": "https://github.com/braidn/blrrrg/",
"description": "A BLRRG",
"type": "module",
"scripts": {
"serve": "eleventy --serve",
"build": "eleventy",
"clean": "rm -rf _site",
"test": "echo \"Error: no test specified\" && exit 1",
"lint-posts": "remark posts"
},
"keywords": [],
"author": "Braden Douglass (me@braidn.com)",
"license": "MIT",
"devDependencies": {
"@11ty/eleventy": "3.0.0",
"@11ty/eleventy-plugin-rss": "^2.0.3",
"@11ty/eleventy-plugin-syntaxhighlight": "^5.0.0",
"browserslist": "^4.24.5",
"clean-css": "^5.3.3",
"dotenv": "^16.5.0",
"eleventy-plugin-youtube-embed": "^1.12.0",
"lightningcss": "^1.29.2",
"lightningcss-cli": "^1.29.2",
"markdown-it-footnote": "^4.0",
"prettier": "3.5.3",
"remark-cli": "^12.0",
"remark-frontmatter": "^5.0",
"remark-lint": "^10.0",
"remark-preset-lint-consistent": "^6.0",
"typescript": "^5.8.2",
"typescript-language-server": "^4.3",
"xmlhttprequest-ssl": ">=1.6.1"
},
"remarkConfig": {
"plugins": [
"preset-lint-consistent",
"remark-frontmatter"
]
}
}