-
Notifications
You must be signed in to change notification settings - Fork 3.2k
Expand file tree
/
Copy pathpackage.json
More file actions
102 lines (102 loc) · 3.23 KB
/
Copy pathpackage.json
File metadata and controls
102 lines (102 loc) · 3.23 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
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
{
"name": "langchainjs",
"author": "LangChain",
"license": "MIT",
"private": true,
"homepage": "https://github.com/langchain-ai/langchainjs/tree/main/",
"repository": {
"type": "git",
"url": "https://github.com/langchain-ai/langchainjs.git"
},
"packageManager": "pnpm@10.14.0",
"scripts": {
"build": "turbo build:compile",
"watch": "turbo watch build:compile",
"clean": "turbo clean",
"dev": "pnpm --filter @langchain/build watch",
"format": "oxfmt .",
"format:check": "oxfmt --check .",
"lint": "oxlint .",
"lint:fix": "oxlint . --fix",
"precommit": "turbo precommit",
"prerelease": "BUILD_MODE=prerelease pnpm build",
"release": "changeset publish",
"test": "pnpm test:unit && pnpm test:exports:docker",
"test:bench": "turbo test:bench",
"test:unit": "turbo test --filter=\"!test-exports-*\" --filter=!examples --filter=!create-langchain-integration",
"test:unit:ci": "turbo test",
"test:ranges:docker": "docker compose -f dependency_range_tests/docker-compose.yml up --force-recreate",
"test:exports:docker": "docker compose -f environment_tests/docker-compose.yml up --force-recreate",
"test:standard:unit": "turbo test:standard:unit",
"test:standard:int": "turbo test:standard:int",
"test:standard": "pnpm test:standard:unit && pnpm test:standard:int",
"changeset": "changeset",
"changeset:version": "changeset version"
},
"devDependencies": {
"@changesets/changelog-github": "^0.7.0",
"@changesets/cli": "^2.30.0",
"@langchain/build": "workspace:*",
"@langchain/tsconfig": "workspace:*",
"@tsconfig/recommended": "^1.0.2",
"@types/jest": "^30.0.0",
"@types/semver": "^7",
"commander": "^14.0.3",
"dotenv": "^17.4.0",
"lint-staged": "^17.0.7",
"oxfmt": "^0.53.0",
"oxlint": "^1.68.0",
"semver": "^7.8.1",
"tsdown": "^0.21.7",
"tsx": "^4.22.4",
"turbo": "^2.9.16",
"typescript": "^6.0.3"
},
"pnpm": {
"overrides": {
"@langchain/core": "workspace:^",
"langchain": "workspace:^",
"protobufjs": "^7.5.5",
"form-data": "^4.0.4",
"tar": ">=7.5.11",
"node-forge": ">=1.4.0",
"minimatch": ">=3.1.3",
"underscore": ">=1.13.8",
"esbuild": ">=0.25.0",
"undici": ">=7.24.0",
"qs": ">=6.15.2",
"ws@8": ">=8.20.1",
"ip-address": ">=10.1.1",
"ajv@8": ">=8.18.0",
"yauzl": ">=3.2.1",
"fast-xml-parser": ">=5.5.7",
"@grpc/grpc-js": ">=1.8.22",
"flatted": ">=3.4.2",
"simple-git": ">=3.32.3",
"hono": ">=4.12.25",
"@hono/node-server": ">=2.0.4",
"express-rate-limit": ">=8.2.2",
"basic-ftp": ">=5.3.0",
"vite": "^7.3.2",
"defu": "^6.1.5",
"axios": ">=0.30.3",
"@tootallnate/once": ">=3.0.1",
"convict": ">=6.2.5",
"lodash": ">=4.18.0",
"path-to-regexp": ">=8.4.0",
"brace-expansion": ">=5.0.6",
"micromatch>picomatch": "2.3.2",
"anymatch>picomatch": "2.3.2",
"readdirp>picomatch": "2.3.2",
"express>path-to-regexp": "0.1.13",
"router>path-to-regexp": ">=8.4.0",
"picomatch@2": ">=2.3.2",
"picomatch@4": ">=4.0.4"
}
},
"lint-staged": {
"**/*.{ts,tsx}": [
"oxfmt --write"
]
}
}