@langchain/anthropic 0.0.3 → 0.0.4

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.
Files changed (1) hide show
  1. package/package.json +9 -7
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@langchain/anthropic",
3
- "version": "0.0.3",
3
+ "version": "0.0.4",
4
4
  "description": "Anthropic integrations for LangChain.js",
5
5
  "type": "module",
6
6
  "engines": {
@@ -18,9 +18,11 @@
18
18
  "build:cjs": "NODE_OPTIONS=--max-old-space-size=4096 tsc --outDir dist-cjs/ -p tsconfig.cjs.json && node scripts/move-cjs-to-dist.js && rimraf dist-cjs",
19
19
  "build:watch": "node scripts/create-entrypoints.js && tsc --outDir dist/ --watch",
20
20
  "build:scripts": "node scripts/create-entrypoints.js && node scripts/check-tree-shaking.js",
21
- "lint": "NODE_OPTIONS=--max-old-space-size=4096 eslint src && dpdm --exit-code circular:1 --no-warning --no-tree src/*.ts src/**/*.ts",
22
- "lint:fix": "yarn lint --fix",
23
- "clean": "rimraf dist/ && NODE_OPTIONS=--max-old-space-size=4096 node scripts/create-entrypoints.js pre",
21
+ "lint:eslint": "NODE_OPTIONS=--max-old-space-size=4096 eslint src",
22
+ "lint:dpdm": "dpdm --exit-code circular:1 --no-warning --no-tree src/*.ts src/**/*.ts",
23
+ "lint": "yarn lint:eslint && yarn lint:dpdm",
24
+ "lint:fix": "yarn lint:eslint --fix && yarn lint:dpdm",
25
+ "clean": "rimraf .turbo/ dist/ && NODE_OPTIONS=--max-old-space-size=4096 node scripts/create-entrypoints.js pre",
24
26
  "prepack": "yarn build",
25
27
  "release": "release-it --only-version --config .release-it.json",
26
28
  "test": "NODE_OPTIONS=--experimental-vm-modules jest --testPathIgnorePatterns=\\.int\\.test.ts --testTimeout 30000 --maxWorkers=50%",
@@ -33,11 +35,10 @@
33
35
  "license": "MIT",
34
36
  "dependencies": {
35
37
  "@anthropic-ai/sdk": "^0.10.0",
36
- "@langchain/core": "~0.0.1"
38
+ "@langchain/core": "~0.1.0"
37
39
  },
38
40
  "devDependencies": {
39
41
  "@jest/globals": "^29.5.0",
40
- "@langchain/core": "workspace:*",
41
42
  "@swc/core": "^1.3.90",
42
43
  "@swc/jest": "^0.2.29",
43
44
  "dpdm": "^3.12.0",
@@ -45,6 +46,7 @@
45
46
  "eslint-config-airbnb-base": "^15.0.0",
46
47
  "eslint-config-prettier": "^8.6.0",
47
48
  "eslint-plugin-import": "^2.27.5",
49
+ "eslint-plugin-jest": "^27.6.0",
48
50
  "eslint-plugin-no-instanceof": "^1.0.1",
49
51
  "eslint-plugin-prettier": "^4.2.1",
50
52
  "jest": "^29.5.0",
@@ -52,7 +54,7 @@
52
54
  "prettier": "^2.8.3",
53
55
  "release-it": "^15.10.1",
54
56
  "rimraf": "^5.0.1",
55
- "typescript": "^5.0.0"
57
+ "typescript": "~5.1.6"
56
58
  },
57
59
  "publishConfig": {
58
60
  "access": "public"