Files
langchainjs/package.json
T
Sean Sullivan 98f0df29d7 initial commit
2023-02-07 17:00:39 -08:00

52 lines
1.3 KiB
JSON

{
"name": "langchain",
"version": "0.0.1",
"description": "Typescript bindings for langchain",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"files": [
"dist/"
],
"scripts": {
"build": "tsc --declaration --outDir dist/",
"lint": "eslint src",
"lint:fix": "yarn lint --fix",
"precommit": "tsc --noEmit && lint-staged",
"clean": "rm -rf dist/",
"prepack": "yarn build",
"test": "jest",
"prepare": "husky install"
},
"author": "Langchain",
"license": "MIT",
"devDependencies": {
"@babel/preset-env": "^7.20.2",
"@jest/globals": "^29.4.2",
"@tsconfig/recommended": "^1.0.2",
"@typescript-eslint/eslint-plugin": "^5.51.0",
"@typescript-eslint/parser": "^5.51.0",
"babel-jest": "^29.4.2",
"eslint": "^8.33.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-prettier": "^8.6.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-prettier": "^4.2.1",
"husky": "^8.0.3",
"jest": "^29.4.2",
"lint-staged": "^13.1.1",
"prettier": "^2.8.3",
"ts-jest": "^29.0.5",
"typescript": "^4.9.5"
},
"dependencies": {
"node-fetch": "^3.3.0",
"yaml": "^2.2.1"
},
"lint-staged": {
"src/**/*.{ts,tsx}": [
"prettier --write --ignore-unknown",
"eslint --cache --fix"
]
}
}