xmitter-11ty/package.json

45 lines
1.3 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-01-23 15:39:36 -05:00
"version": "8.0.0",
"description": "A starter repository for a blog web site using the Eleventy site generator.",
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",
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": {
"node": ">=14"
},
"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": {
2023-02-09 11:04:04 -05:00
"@11ty/eleventy": "^2.0.0",
2023-01-30 18:06:32 -05:00
"@11ty/eleventy-img": "^3.0.0",
2023-01-23 12:37:44 -05:00
"@11ty/eleventy-navigation": "^0.3.5",
2023-03-02 16:55:00 -05:00
"@11ty/eleventy-plugin-bundle": "^1.0.3",
2023-01-23 12:37:44 -05:00
"@11ty/eleventy-plugin-rss": "^1.2.0",
"@11ty/eleventy-plugin-syntaxhighlight": "^4.2.0",
"luxon": "^3.2.1",
"markdown-it-anchor": "^8.6.6"
}
2018-01-16 22:08:47 -05:00
}