mirror of
https://github.com/Mintplex-Labs/langchainjs.git
synced 2026-07-01 12:17:38 -04:00
8035633874
* Add CI job * Add ci script * Run format in examples package * Format docs * Fix eslint config in langchain * Add ci command * Separate unit and integration tests * Fix ci command * Make path relative, adjust node version * Add os matrix * Set eol to lf * Do not cache CI command * Try to fix loadFromHub on windows * Update CONTRIBUTING for unit/int tests
36 lines
829 B
JSON
36 lines
829 B
JSON
{
|
|
"version": "0.0.4",
|
|
"private": true,
|
|
"engines": {
|
|
"node": ">=18"
|
|
},
|
|
"workspaces": [
|
|
"langchain",
|
|
"examples",
|
|
"docs"
|
|
],
|
|
"packageManager": "yarn@3.4.1",
|
|
"scripts": {
|
|
"ci": "turbo run ci",
|
|
"build": "turbo run build",
|
|
"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"
|
|
}
|
|
} |