forked from langchain-ai/langchainjs
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
69 lines (69 loc) · 2.36 KB
/
package.json
File metadata and controls
69 lines (69 loc) · 2.36 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
{
"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": "turbo format --concurrency=50",
"format:check": "turbo format:check --concurrency=50",
"format:check:fix": "turbo format:check --concurrency=50 -- --write",
"lint": "turbo lint --concurrency=50",
"lint:fix": "turbo lint:fix --concurrency=50",
"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:ci",
"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.5.1",
"@changesets/cli": "^2.29.7",
"@langchain/build": "workspace:*",
"@langchain/tsconfig": "workspace:*",
"@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",
"tsdown": "^0.15.12",
"tsx": "^4.20.3",
"turbo": "^2.5.4",
"typescript": "^5.9.3"
},
"pnpm": {
"overrides": {
"@langchain/core": "workspace:*",
"protobufjs": "^7.2.5",
"rolldown": "1.0.0-beta.30"
}
},
"lint-staged": {
"**/*.{ts,tsx}": [
"prettier --write --ignore-unknown",
"eslint --cache --fix"
],
"*.md": "prettier --write"
}
}