@mdfriday/foundry
Version:
The core engine of MDFriday. Convert Markdown and shortcodes into fully themed static sites – Hugo-style, powered by TypeScript.
94 lines (93 loc) • 2.59 kB
JSON
{
"name": "@mdfriday/foundry",
"version": "26.2.12",
"description": "The core engine of MDFriday. Convert Markdown and shortcodes into fully themed static sites – Hugo-style, powered by TypeScript.",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"private": false,
"files": [
"dist",
"README.md"
],
"scripts": {
"build": "node build.js",
"build:dev": "tsc && tsc-alias",
"build:watch": "tsc --watch & tsc-alias --watch",
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"lint": "eslint . --ext .ts",
"lint:fix": "eslint . --ext .ts --fix",
"clean": "rimraf dist",
"prepublishOnly": "npm run build"
},
"keywords": [
"markdown",
"hugo",
"static-site-generator",
"shortcode",
"template-engine",
"mdfriday",
"site-builder",
"typescript",
"ssg"
],
"author": "Sun Wei <me@sunwei.com>",
"license": "UNLICENSED",
"engines": {
"node": ">=24.5.0"
},
"devDependencies": {
"@types/hast": "^3.0.4",
"@types/jest": "^29.5.8",
"@types/jszip": "^3.4.0",
"@types/node": "^24.5.0",
"@types/terser": "^3.8.1",
"@types/workerpool": "^6.4.7",
"@types/ws": "^8.18.1",
"@typescript-eslint/eslint-plugin": "^6.13.1",
"@typescript-eslint/parser": "^6.13.1",
"esbuild": "^0.20.0",
"eslint": "^8.54.0",
"jest": "^29.7.0",
"rimraf": "^5.0.5",
"ts-jest": "^29.1.1",
"ts-node": "^10.9.1",
"ts-node-dev": "^2.0.0",
"tsc-alias": "^1.8.16",
"tsconfig-paths": "^4.2.0",
"typescript": "^5.3.2"
},
"dependencies": {
"@mdfriday/text-template": "^0.2.6",
"@types/js-yaml": "^4.0.9",
"@types/markdown-it": "^13.0.7",
"chokidar": "^4.0.3",
"github-slugger": "^2.0.0",
"hast": "^0.0.2",
"is-absolute-url": "^5.0.0",
"js-yaml": "^4.1.0",
"jszip": "^3.10.1",
"markdown-it": "^14.0.0",
"markdown-it-abbr": "^2.0.0",
"markdown-it-anchor": "^8.6.7",
"markdown-it-attrs": "^4.1.6",
"markdown-it-deflist": "^3.0.0",
"markdown-it-emoji": "^3.0.0",
"markdown-it-footnote": "^4.0.0",
"markdown-it-ins": "^4.0.0",
"markdown-it-mark": "^4.0.0",
"markdown-it-sub": "^2.0.0",
"markdown-it-sup": "^2.0.0",
"markdown-it-task-lists": "^2.1.1",
"markdown-it-toc-done-right": "^4.2.0",
"rehype-parse": "^9.0.1",
"rehype-stringify": "^10.0.1",
"smol-toml": "^1.4.1",
"terser": "^5.43.1",
"unified": "^11.0.5",
"unist-util-visit": "^5.1.0",
"workerpool": "^10.0.1",
"ws": "^8.18.3"
}
}