xmitter-11ty/package.json

53 lines
1.6 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-nocolor": "cross-env NODE_DISABLE_COLORS=1 npx @11ty/eleventy",
2023-01-23 12:37:44 -05:00
"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",
"debug": "cross-env DEBUG=Eleventy* npx @11ty/eleventy",
"debugstart": "cross-env DEBUG=Eleventy* npx @11ty/eleventy --serve --quiet",
"benchmark": "cross-env 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",
"@11ty/eleventy-img": "^5.0.0",
2023-01-23 12:37:44 -05:00
"@11ty/eleventy-navigation": "^0.3.5",
2024-07-25 17:06:34 -04:00
"@11ty/eleventy-plugin-rss": "^2.0.2",
2023-04-12 17:40:25 -04:00
"@11ty/eleventy-plugin-syntaxhighlight": "^5.0.0",
"cross-env": "^7.0.3",
2024-09-05 12:25:06 -04:00
"luxon": "^3.5.0",
2024-06-10 18:21:25 -04:00
"zod": "^3.23.8",
2024-09-05 12:25:06 -04:00
"zod-validation-error": "^3.3.1"
},
"dependencies": {
2024-11-05 09:39:42 -05:00
"@zachleat/heading-anchors": "^1.0.1",
"markdown-it-obsidian": "^1.1.0"
2023-01-23 12:37:44 -05:00
}
2018-01-16 22:08:47 -05:00
}