xmitter-11ty/package.json

48 lines
1.4 KiB
JSON
Raw Normal View History

2018-01-16 22:08:47 -05:00
{
2023-01-23 12:37:44 -05:00
"name": "eleventy-base-blog",
2023-11-10 17:41:13 -05:00
"version": "9.0.0",
2023-01-23 15:39:36 -05:00
"description": "A starter repository for a blog web site using the Eleventy site generator.",
2023-11-10 17:41:13 -05:00
"type": "module",
2023-01-23 12:37:44 -05:00
"scripts": {
"build": "npx @11ty/eleventy",
"build-ghpages": "npx @11ty/eleventy --pathprefix=/eleventy-base-blog/",
"start": "npx @11ty/eleventy --serve --quiet",
"start-ghpages": "npx @11ty/eleventy --pathprefix=/eleventy-base-blog/ --serve --quiet",
2023-01-23 13:34:39 -05:00
"debug": "DEBUG=Eleventy* npx @11ty/eleventy",
"debugstart": "DEBUG=Eleventy* npx @11ty/eleventy --serve --quiet",
2023-01-23 13:34:39 -05:00
"benchmark": "DEBUG=Eleventy:Benchmark* npx @11ty/eleventy"
2023-01-23 12:37:44 -05:00
},
"repository": {
"type": "git",
"url": "git://github.com/11ty/eleventy-base-blog.git"
},
"author": {
"name": "Zach Leatherman",
"email": "zachleatherman@gmail.com",
"url": "https://zachleat.com/"
},
"license": "MIT",
2023-01-23 15:39:36 -05:00
"engines": {
2024-02-12 10:19:19 -05:00
"node": ">=18"
2023-01-23 15:39:36 -05:00
},
"funding": {
"type": "opencollective",
"url": "https://opencollective.com/11ty"
},
2023-01-23 12:37:44 -05:00
"bugs": {
"url": "https://github.com/11ty/eleventy-base-blog/issues"
},
"homepage": "https://github.com/11ty/eleventy-base-blog#readme",
2023-01-23 15:39:36 -05:00
"devDependencies": {
"@11ty/eleventy": "3.0.0-alpha.10",
"@11ty/eleventy-img": "5.0.0-beta.1",
2023-01-23 12:37:44 -05:00
"@11ty/eleventy-navigation": "^0.3.5",
"@11ty/eleventy-plugin-rss": "^2.0.0-beta.5",
2023-04-12 17:40:25 -04:00
"@11ty/eleventy-plugin-syntaxhighlight": "^5.0.0",
2024-01-13 18:32:15 -05:00
"luxon": "^3.4.4",
"markdown-it-anchor": "^8.6.7",
"zod": "^3.23.4",
"zod-validation-error": "^3.2.0"
2023-01-23 12:37:44 -05:00
}
2018-01-16 22:08:47 -05:00
}