UNPKG

@sap-ux/fiori-docs-embeddings

Version:

SAP Fiori documentation indexing

53 lines 1.67 kB
{ "name": "@sap-ux/fiori-docs-embeddings", "version": "0.2.0", "description": "SAP Fiori documentation indexing", "private": false, "dependencies": {}, "devDependencies": { "@types/node": "20.0.0", "@lancedb/lancedb": "0.22.0", "@xenova/transformers": "2.17.2", "npm-run-all2": "8.0.4", "node-fetch": "^3.3.2", "marked": "^12.0.0", "gray-matter": "^4.0.3", "fast-xml-parser": "^4.3.4", "tsx": "^4.7.0", "@sap-ux/logger": "0.7.0" }, "keywords": [ "mcp", "model-context-protocol", "sap", "fiori", "documentation", "indexing" ], "license": "Apache-2.0", "files": [ "data/index.js", "data/embeddings/**/*", "data/search/**/*", "README.md", "package.json", "LICENSE" ], "main": "index.js", "scripts": { "build-compile": "tsc --noEmit", "build": "npm-run-all -l -s build-compile update-docs-script update-embeddings-script", "update-docs-script": "tsx src/scripts/build-docs.ts", "update-local-docs": "tsx src/scripts/build-local-docs.ts", "update-docs": "npm-run-all -l -s clean-data update-docs-script", "update-embeddings-script": "tsx src/scripts/build-embeddings.ts", "update-embeddings": "npm-run-all -l -s clean-embeddings update-embeddings-script", "update-all": "npm-run-all -l -s update-docs update-embeddings", "clean-embeddings": "rm -rf dist data/embeddings", "clean-data": "rm -rf dist data/docs data/search", "clean": "npm-run-all -l -s clean-data clean-embeddings", "test": "jest --passWithNoTests --silent", "lint": "eslint . --ext .ts", "lint:fix": "eslint . --ext .ts --fix" } }