-
Notifications
You must be signed in to change notification settings - Fork 59
Expand file tree
/
Copy pathpackage.json
More file actions
66 lines (66 loc) · 2.37 KB
/
package.json
File metadata and controls
66 lines (66 loc) · 2.37 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
{
"name": "@sap-ux/fiori-docs-embeddings",
"version": "0.4.16",
"description": "SAP Fiori documentation indexing",
"repository": {
"type": "git",
"url": "https://github.com/SAP/open-ux-tools.git",
"directory": "packages/fiori-docs-embeddings"
},
"private": false,
"scripts": {
"build-compile": "tsc --noEmit",
"copy-create-readme": "node -e \"require('fs').copyFileSync('node_modules/@sap-ux/create/README.md', 'data_local/create-README.md')\"",
"fetch-ux-ui5-tooling-readme": "tsx src/scripts/load-readme-from-npm.ts @sap/ux-ui5-tooling",
"build": "npm-run-all -l -p build-compile copy-create-readme fetch-ux-ui5-tooling-readme 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",
"prepublishOnly": "npm run build",
"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",
"lint:fix": "eslint --fix"
},
"dependencies": {},
"devDependencies": {
"@npm/types": "2.1.0",
"@types/node": "20.19.37",
"@lancedb/lancedb": "0.22.0",
"@sap-ux/logger": "workspace:*",
"@sap-ux/create": "workspace:*",
"@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": "5.7.0",
"tsx": "^4.7.0"
},
"keywords": [
"mcp",
"model-context-protocol",
"sap",
"fiori",
"documentation",
"indexing"
],
"license": "Apache-2.0",
"engines": {
"node": ">=20.x"
},
"files": [
"data/index.js",
"data/embeddings/**/*",
"data/search/**/*",
"README.md",
"package.json",
"LICENSE"
],
"main": "index.js"
}