This commit is contained in:
2025-05-12 05:38:44 +09:00
parent dced21c3f8
commit 6d78bfa46e
8120 changed files with 1161564 additions and 0 deletions

40
book/node_modules/gitbook-plugin-lunr/package.json generated vendored Normal file
View File

@ -0,0 +1,40 @@
{
"name": "gitbook-plugin-lunr",
"description": "Index book in a lunr index accessible from the search plugin",
"main": "index.js",
"version": "1.2.0",
"engines": {
"gitbook": ">=3.0.0-pre.0"
},
"dependencies": {
"gitbook-plugin-search": "*",
"html-entities": "1.2.0",
"lunr": "0.5.12"
},
"homepage": "https://github.com/GitbookIO/plugin-lunr",
"repository": {
"type": "git",
"url": "https://github.com/GitbookIO/plugin-lunr.git"
},
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/GitbookIO/plugin-lunr/issues"
},
"gitbook": {
"properties": {
"maxIndexSize": {
"type": "number",
"title": "Limit size for the index",
"default": 1000000
},
"ignoreSpecialCharacters": {
"type": "boolean",
"title": "Ignore special characters in words",
"default": false
}
}
},
"scripts": {
"prepublish": "cp node_modules/lunr/lunr.min.js ./assets/lunr.min.js"
}
}