All repositories

astro-lunr

License

Lunr integration for Astro; client-side search for statically hosted pages.

2022-05-14 17:06 #1: fixed base path replacement problem
Siver K. Volle 3f44311
2022-05-14 17:06 #1: fixed base path replacement problem master Siver K. Volle 3f44311
2022-05-01 13:57 Fixed problem with import.meta.env when proper npm-module Siver K. Volle 00a915f
2022-04-18 20:31 add demo-link to readme Siver K. Volle d930b81
2022-04-18 19:51 initial steps to turn astro-lunr into its own repo Siver K. Volle 9983ab3
2022-04-16 00:25 Included readme and licenses; made the plugins into npm-modules; removed more dead-links and ui/ux-bugs Siver K. Volle 077a354
2022-04-15 17:21 Multi-repo support; refactored astro-git and astro-lunr into independent plugins Siver K. Volle adfedbe
astro-lunr / package.json
28 lines (28 sloc) | 693 B
1 {
2 "name": "@siverv/astro-lunr",
3 "version": "0.0.3",
4 "license" : "GPL-3.0",
5 "description": "Lunr integration for Astro",
6 "type": "module",
7 "homepage": "https://siverv.github.io/astro-git-view/astro-lunr/",
8 "contributors": [
9 {
10 "name": "Siver K. Volle",
11 "email": "package-json.astro-lunr@siverv.no",
12 "url": "https://www.siverv.no"
13 }
14 ],
15 "repository": {
16 "type": "git",
17 "url": "https://github.com/siverv/astro-lunr.git"
18 },
19 "exports": {
20 "./plugin.mjs": "./plugin.mjs",
21 "./client/lunr.js": "./client/lunr.js",
22 "./server/renderer.js": "./server/renderer.js"
23 },
24 "dependencies": {
25 "lunr": "^2.3.9",
26 "rehype": "^12.0.1"
27 }
28 }