eleventy-plugin-related
Version:
Find related documents in eleventy.
70 lines (69 loc) • 1.79 kB
JSON
{
"name": "eleventy-plugin-related",
"version": "1.0.6",
"description": "Find related documents in eleventy.",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"homepage": "https://github.com/jpoehnelt/eleventy-plugin-related",
"repository": {
"type": "git",
"url": "https://github.com/jpoehnelt/eleventy-plugin-related.git"
},
"scripts": {
"build": "tsc --emitDeclarationOnly && esbuild src/index.ts --outfile=dist/index.js --sourcemap --platform=node --bundle --format=cjs --external:related-documents",
"docs": "typedoc src/index.ts",
"format": "eslint . --fix",
"lint": "eslint .",
"prepare": "npm run build",
"test": "tsc --noEmit && jest src",
"samples:dev": "eleventy --serve",
"samples:build": "eleventy --config samples/eleventy.js"
},
"files": [
"src",
"dist"
],
"funding": [
{
"type": "patreon",
"url": "https://www.patreon.com/jpoehnelt"
},
{
"type": "opencollective",
"url": "https://opencollective.com/jpoehnelt"
}
],
"keywords": [
"eleventy",
"eleventy-plugin",
"11ty",
"documents",
"nlp",
"related",
"tfidf"
],
"author": "Justin Poehnelt",
"license": "Apache-2.0",
"dependencies": {
"related-documents": "^1.0.6"
},
"devDependencies": {
"@11ty/eleventy": "^1.0.0",
"@types/jest": "^27.4.1",
"@types/natural": "^5.1.1",
"axios": "^1.1.3",
"esbuild": "^0.15.10",
"eslint": "^8.8.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-jest": "^27.0.4",
"eslint-plugin-prettier": "^4.0.0",
"jest": "^27.5.1",
"prettier": "^2.6.2",
"ts-jest": "^27.1.4",
"typedoc": "^0.23.2",
"typescript": "^4.6.3"
},
"publishConfig": {
"access": "public"
}
}