forked from langchain-ai/langchainjs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
73 lines (73 loc) · 2.81 KB
/
package.json
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
{
"name": "langchainjs",
"private": true,
"engines": {
"node": ">=18"
},
"homepage": "https://github.com/langchain-ai/langchainjs/tree/main/",
"workspaces": [
"langchain",
"langchain-core",
"libs/*",
"examples",
"docs/*"
],
"repository": {
"type": "git",
"url": "https://github.com/langchain-ai/langchainjs.git"
},
"packageManager": "[email protected]",
"scripts": {
"build": "turbo build --filter=\"!test-exports-*\"",
"turbo:command": "turbo",
"clean": "turbo clean",
"format": "turbo format --concurrency=50",
"format:check": "turbo format:check --concurrency=50",
"lint": "turbo lint --concurrency=50",
"lint:fix": "turbo lint:fix --concurrency=50",
"test": "yarn test:unit && yarn test:exports:docker",
"test:unit": "turbo test --filter=\"!test-exports-*\" --filter=!examples --filter=!api_refs --filter=!core_docs --filter=!create-langchain-integration",
"test:unit:ci": "turbo test:ci",
"test:int": "yarn run test:int:deps && turbo test:integration ; yarn run test:int:deps:down",
"test:int:deps": "docker compose -f test-int-deps-docker-compose.yml up -d",
"test:int:deps:down": "docker compose -f test-int-deps-docker-compose.yml down",
"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": "yarn test:standard:unit && yarn test:standard:int",
"example": "yarn workspace examples start",
"precommit": "turbo precommit",
"docs": "yarn workspace core_docs start",
"docs:api_refs": "yarn workspace api_refs start",
"release": "node release_workspace.js --workspace"
},
"author": "LangChain",
"license": "MIT",
"devDependencies": {
"@tsconfig/recommended": "^1.0.2",
"@types/jest": "^29.5.3",
"@types/semver": "^7",
"commander": "^11.1.0",
"dotenv": "^16.0.3",
"lint-staged": "^13.1.1",
"prettier": "^2.8.3",
"semver": "^7.5.4",
"turbo": "^1.13.3",
"typescript": "~5.1.6"
},
"resolutions": {
"dpdm@^3.12.0": "patch:dpdm@npm%3A3.12.0#./.yarn/patches/dpdm-npm-3.12.0-0dfdd8e3b8.patch",
"typedoc-plugin-markdown@next": "patch:typedoc-plugin-markdown@npm%3A4.0.0-next.6#./.yarn/patches/typedoc-plugin-markdown-npm-4.0.0-next.6-96b4b47746.patch",
"[email protected]": "patch:voy-search@npm%3A0.6.2#./.yarn/patches/voy-search-npm-0.6.2-d4aca30a0e.patch",
"protobufjs": "^7.2.5",
"zod": "3.23.8"
},
"lint-staged": {
"**/*.{ts,tsx}": [
"prettier --config .prettierrc --write --ignore-unknown",
"eslint --cache --fix"
],
"*.md": "prettier --config .prettierrc --write"
}
}