@langchain/neo4j 0.0.1 → 0.1.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@langchain/neo4j",
3
- "version": "0.0.1",
3
+ "version": "0.1.1",
4
4
  "description": "Neo4j integrations for LangChain.js",
5
5
  "author": "LangChain",
6
6
  "license": "MIT",
@@ -13,27 +13,13 @@
13
13
  "url": "git@github.com:langchain-ai/langchainjs.git"
14
14
  },
15
15
  "homepage": "https://github.com/langchain-ai/langchainjs/tree/main/libs/providers/langchain-neo4j/",
16
- "scripts": {
17
- "build": "turbo build:compile --filter @langchain/neo4j --output-logs new-only",
18
- "build:compile": "tsdown",
19
- "lint:eslint": "eslint --cache src/",
20
- "lint:dpdm": "dpdm --skip-dynamic-imports circular --exit-code circular:1 --no-warning --no-tree src/*.ts src/**/*.ts",
21
- "lint": "pnpm lint:eslint && pnpm lint:dpdm",
22
- "lint:fix": "pnpm lint:eslint --fix && pnpm lint:dpdm",
23
- "clean": "rm -rf .turbo dist/",
24
- "test": "vitest run",
25
- "test:watch": "vitest",
26
- "test:int": "vitest run --mode int",
27
- "format": "prettier --write \"src\"",
28
- "format:check": "prettier --check \"src\""
29
- },
30
16
  "dependencies": {
31
17
  "neo4j-driver": "^6.0.1",
32
18
  "uuid": "^11.1.0"
33
19
  },
34
20
  "peerDependencies": {
35
- "@langchain/core": "workspace:^",
36
- "@langchain/classic": "workspace:*"
21
+ "@langchain/core": "^1.1.39",
22
+ "@langchain/classic": "1.0.29"
37
23
  },
38
24
  "peerDependenciesMeta": {
39
25
  "@langchain/classic": {
@@ -41,22 +27,19 @@
41
27
  }
42
28
  },
43
29
  "devDependencies": {
44
- "@langchain/classic": "workspace:*",
45
- "@langchain/core": "workspace:^",
46
- "@langchain/eslint": "workspace:*",
47
- "@langchain/standard-tests": "workspace:*",
48
- "@langchain/tsconfig": "workspace:*",
49
30
  "@tsconfig/recommended": "^1.0.10",
50
- "@types/node": "^25.2.3",
31
+ "@types/node": "^25.5.0",
51
32
  "@types/uuid": "^10.0.0",
52
33
  "@vitest/coverage-v8": "^3.2.4",
53
- "dotenv": "^17.2.1",
34
+ "dotenv": "^17.4.0",
54
35
  "dpdm": "^3.14.0",
55
- "eslint": "^9.34.0",
56
- "prettier": "^3.5.0",
57
36
  "rimraf": "^6.1.3",
58
37
  "typescript": "~5.8.3",
59
- "vitest": "^3.2.4"
38
+ "vitest": "^4.1.2",
39
+ "@langchain/classic": "1.0.29",
40
+ "@langchain/core": "^1.1.39",
41
+ "@langchain/standard-tests": "0.0.23",
42
+ "@langchain/tsconfig": "0.0.1"
60
43
  },
61
44
  "publishConfig": {
62
45
  "access": "public"
@@ -94,5 +77,13 @@
94
77
  "README.md",
95
78
  "LICENSE"
96
79
  ],
97
- "module": "./dist/index.js"
98
- }
80
+ "module": "./dist/index.js",
81
+ "scripts": {
82
+ "build": "turbo build:compile --filter @langchain/neo4j --output-logs new-only",
83
+ "build:compile": "tsdown",
84
+ "clean": "rm -rf .turbo dist/",
85
+ "test": "vitest run",
86
+ "test:watch": "vitest",
87
+ "test:int": "vitest run --mode int"
88
+ }
89
+ }