forked from langchain-ai/langchainjs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
43 lines (43 loc) · 1.01 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
{
"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": "turbo run test",
"publish": "turbo run build lint test && yarn workspace langchain npm publish",
"example": "turbo run start --filter langchain-examples --",
"prepare": "husky install"
},
"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"
}
}