forked from langchain-ai/langchainjs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
50 lines (50 loc) · 1.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
{
"name": "langchainjs",
"version": "0.0.4",
"private": true,
"engines": {
"node": ">=18"
},
"workspaces": [
"langchain",
"examples",
"docs",
"test-exports"
],
"repository": {
"type": "git",
"url": "https://github.com/hwchase17/langchainjs.git"
},
"packageManager": "[email protected]",
"scripts": {
"ci": "turbo run ci",
"build": "turbo run build",
"format": "turbo run format",
"format:check": "turbo run format:check",
"lint": "turbo run lint",
"lint:fix": "yarn lint -- --fix",
"test": "yarn run test:unit && yarn run test:int",
"test:unit": "turbo run test",
"test:int": "yarn workspace langchain run test:integration",
"publish": "turbo run build lint test && yarn workspace langchain npm publish",
"example": "turbo run start --filter langchain-examples --",
"prepare": "husky install",
"docs": "yarn workspace docs start"
},
"author": "Langchain",
"license": "MIT",
"devDependencies": {
"@tsconfig/recommended": "^1.0.2",
"dotenv": "^16.0.3",
"husky": "^8.0.3",
"lint-staged": "^13.1.1",
"prettier": "^2.8.3",
"typescript": "^4.9.5"
},
"dependencies": {
"turbo": "^1.7.4"
},
"resolutions": {
"dpdm@^3.12.0": "patch:dpdm@npm%3A3.12.0#./.yarn/patches/dpdm-npm-3.12.0-0dfdd8e3b8.patch"
}
}