forked from langchain-ai/langchainjs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
68 lines (68 loc) · 2.31 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
{
"name": "langchainjs",
"version": "0.0.4",
"private": true,
"engines": {
"node": ">=18"
},
"workspaces": [
"langchain",
"examples",
"docs",
"test-exports-esbuild",
"test-exports-esm",
"test-exports-cjs",
"test-exports-cf",
"test-exports-vercel",
"test-exports-vite"
],
"repository": {
"type": "git",
"url": "https://github.com/hwchase17/langchainjs.git"
},
"packageManager": "[email protected]",
"scripts": {
"ci": "turbo run ci",
"build": "turbo run build --filter=\"!docs_skeleton\"",
"format": "turbo run format",
"format:check": "turbo run format:check",
"lint": "turbo run lint --filter=\"!docs_skeleton\"",
"lint:fix": "yarn lint -- --fix",
"test": "turbo run test && yarn test:exports:docker",
"test:unit": "turbo run test",
"test:int": "yarn run test:int:deps && turbo run 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:exports:docker": "docker compose up --force-recreate",
"publish": "bash scripts/release-branch.sh && turbo run --filter langchain build lint test && yarn run test:exports:docker && yarn workspace langchain run release && echo '🔗 Open https://github.com/hwchase17/langchainjs/compare/release?expand=1 and merge the release PR'",
"example": "yarn workspace examples start",
"precommit": "turbo run precommit",
"docs": "yarn workspace docs dev",
"postinstall": "husky install"
},
"author": "LangChain",
"license": "MIT",
"devDependencies": {
"@tsconfig/recommended": "^1.0.2",
"@types/jest": "^29.5.3",
"dotenv": "^16.0.3",
"husky": "^8.0.0",
"lint-staged": "^13.1.1",
"prettier": "^2.8.3",
"typescript": "^5.0.0"
},
"dependencies": {
"turbo": "latest"
},
"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"
},
"lint-staged": {
"**/*.{ts,tsx}": [
"prettier --write --ignore-unknown",
"eslint --cache --fix"
],
"*.md": "prettier --write"
}
}