-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
83 lines (83 loc) · 2.25 KB
/
Copy pathpackage.json
File metadata and controls
83 lines (83 loc) · 2.25 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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
{
"name": "@sap/hana-langchain",
"version": "1.3.0",
"description": "Integrates LangChain.js with SAP HANA Cloud to make use of vector search, knowledge graph, and further in-database capabilities as part of LLM-driven applications.",
"type": "module",
"engines": {
"node": ">=20"
},
"main": "dist/index.cjs",
"types": "dist/index.d.cts",
"repository": {
"type": "git",
"url": "git@github.com:SAP/langchainjs-integration-for-sap-hana-cloud.git"
},
"homepage": "https://github.com/SAP/langchainjs-integration-for-sap-hana-cloud",
"scripts": {
"build": "tsdown",
"dev": "tsdown --watch",
"format": "oxfmt .",
"format:check": "oxfmt --check .",
"lint": "oxlint .",
"lint:fix": "oxlint . --fix",
"test": "vitest run",
"test:watch": "vitest",
"test:int": "vitest run --mode int",
"test:eval": "vitest run --mode eval"
},
"license": "Apache-2.0",
"dependencies": {
"@sap/hana-client": "^2.29.25",
"@traqula/parser-sparql-1-1": "^1.2.0",
"n3": "^2.2.0"
},
"peerDependencies": {
"@langchain/classic": "^1.0.41",
"@langchain/core": "^1.2.5",
"langchain": "^1.5.5",
"zod": "^4.4.3"
},
"devDependencies": {
"@arethetypeswrong/cli": "^0.18.5",
"@langchain/core": "^1.2.5",
"@langchain/textsplitters": "^1.0.1",
"@sap-ai-sdk/langchain": "^2.13.0",
"@types/n3": "^1.26.1",
"@types/node": "^26.1.2",
"agentevals": "^0.0.7",
"dedent": "^1.7.2",
"dotenv": "^17.4.2",
"eslint-plugin-no-instanceof": "^1.0.1",
"langchain": "^1.5.5",
"oxfmt": "^0.64.0",
"oxlint": "^1.79.0",
"oxlint-tsgolint": "^7.0.2001",
"publint": "^0.3.23",
"rdf-isomorphic": "^2.0.1",
"tsdown": "^0.21.10",
"typescript": "^6.0.3",
"typescript-eslint": "^8.66.0",
"unplugin-unused": "^0.5.7",
"vitest": "^4.1.10",
"zod": "^4.4.3"
},
"publishConfig": {
"access": "public"
},
"exports": {
".": {
"types": {
"import": "./dist/index.d.ts",
"require": "./dist/index.d.cts",
"default": "./dist/index.d.ts"
},
"import": "./dist/index.js",
"require": "./dist/index.cjs",
"default": "./dist/index.js"
},
"./package.json": "./package.json"
},
"files": [
"dist/"
]
}