You've already forked hugo-extended
mirror of
https://github.com/jakejarvis/hugo-extended.git
synced 2026-06-13 02:55:29 -04:00
e579501456
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
98 lines
2.2 KiB
JSON
98 lines
2.2 KiB
JSON
{
|
|
"name": "hugo-extended",
|
|
"version": "0.163.1",
|
|
"description": "✏️ Plug-and-play binary wrapper for Hugo Extended, the awesomest static-site generator.",
|
|
"license": "MIT",
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git+https://github.com/jakejarvis/hugo-extended.git"
|
|
},
|
|
"bugs": {
|
|
"url": "https://github.com/jakejarvis/hugo-extended/issues"
|
|
},
|
|
"author": {
|
|
"name": "Jake Jarvis",
|
|
"email": "jake@jarv.is",
|
|
"url": "https://github.com/jakejarvis"
|
|
},
|
|
"publishConfig": {
|
|
"access": "public"
|
|
},
|
|
"type": "module",
|
|
"main": "./dist/hugo.mjs",
|
|
"module": "./dist/hugo.mjs",
|
|
"types": "./dist/hugo.d.mts",
|
|
"bin": {
|
|
"hugo": "dist/cli.mjs",
|
|
"hugo-extended": "dist/cli.mjs"
|
|
},
|
|
"exports": {
|
|
".": {
|
|
"types": "./dist/hugo.d.mts",
|
|
"import": "./dist/hugo.mjs",
|
|
"default": "./dist/hugo.mjs"
|
|
},
|
|
"./types": {
|
|
"types": "./dist/generated/types.d.mts",
|
|
"default": "./dist/generated/types.mjs"
|
|
}
|
|
},
|
|
"files": [
|
|
"dist",
|
|
"postinstall.js"
|
|
],
|
|
"scripts": {
|
|
"build": "tsdown",
|
|
"dev": "tsdown --watch",
|
|
"generate-types": "bun scripts/generate-types.ts",
|
|
"lint": "biome check",
|
|
"lint:fix": "biome check --write",
|
|
"typecheck": "tsc --noEmit",
|
|
"test": "vitest run",
|
|
"test:watch": "vitest",
|
|
"test:unit": "vitest run tests/unit",
|
|
"test:integration": "vitest run tests/integration",
|
|
"test:e2e": "vitest run tests/e2e",
|
|
"test:coverage": "vitest run --coverage",
|
|
"postinstall": "node postinstall.js",
|
|
"prepublishOnly": "npm run generate-types && npm run build"
|
|
},
|
|
"dependencies": {
|
|
"adm-zip": "^0.5.17",
|
|
"tar": "^7.5.15"
|
|
},
|
|
"devDependencies": {
|
|
"@biomejs/biome": "^2.4.15",
|
|
"@types/adm-zip": "^0.5.8",
|
|
"@types/node": "^25.9.1",
|
|
"@types/tar": "^6.1.13",
|
|
"@vitest/coverage-v8": "^4.1.7",
|
|
"tinyexec": "^1.2.2",
|
|
"tsdown": "^0.22.0",
|
|
"typescript": "^6.0.3",
|
|
"vitest": "^4.1.7"
|
|
},
|
|
"engines": {
|
|
"node": ">=18.17"
|
|
},
|
|
"keywords": [
|
|
"hugo",
|
|
"hugo extended",
|
|
"gohugoio",
|
|
"cli",
|
|
"front-end",
|
|
"bin",
|
|
"binary",
|
|
"wrapper",
|
|
"static site generator",
|
|
"static-site",
|
|
"ssg",
|
|
"static",
|
|
"markdown",
|
|
"blog",
|
|
"frontmatter",
|
|
"go",
|
|
"golang"
|
|
]
|
|
}
|