mirror of
https://github.com/hwchase17/langchain.git
synced 2025-08-02 01:23:07 +00:00
This new version fixes the"Verified Sources" display that got broken. Instead of displaying the full URL, it shows the title of the page the source is from.
66 lines
1.9 KiB
JSON
66 lines
1.9 KiB
JSON
{
|
|
"name": "docs",
|
|
"version": "0.0.0",
|
|
"private": true,
|
|
"scripts": {
|
|
"docusaurus": "docusaurus",
|
|
"start": "rm -rf ./docs/api && docusaurus start",
|
|
"build": "bash vercel_build.sh && rm -rf ./build && docusaurus build",
|
|
"swizzle": "docusaurus swizzle",
|
|
"deploy": "docusaurus deploy",
|
|
"clear": "docusaurus clear",
|
|
"serve": "docusaurus serve",
|
|
"write-translations": "docusaurus write-translations",
|
|
"write-heading-ids": "docusaurus write-heading-ids",
|
|
"lint": "eslint --cache \"**/*.js\"",
|
|
"lint:fix": "yarn lint --fix",
|
|
"precommit": "lint-staged",
|
|
"format": "prettier --write \"**/*.{js,jsx,ts,tsx,md,mdx}\"",
|
|
"format:check": "prettier --check \"**/*.{js,jsx,ts,tsx,md,mdx}\""
|
|
},
|
|
"dependencies": {
|
|
"@docusaurus/core": "2.4.0",
|
|
"@docusaurus/preset-classic": "2.4.0",
|
|
"@docusaurus/remark-plugin-npm2yarn": "^2.4.0",
|
|
"@mdx-js/react": "^1.6.22",
|
|
"@mendable/search": "^0.0.125",
|
|
"clsx": "^1.2.1",
|
|
"json-loader": "^0.5.7",
|
|
"process": "^0.11.10",
|
|
"react": "^17.0.2",
|
|
"react-dom": "^17.0.2",
|
|
"typescript": "^5.1.3",
|
|
"webpack": "^5.75.0"
|
|
},
|
|
"devDependencies": {
|
|
"@babel/eslint-parser": "^7.18.2",
|
|
"docusaurus-plugin-typedoc": "next",
|
|
"eslint": "^8.19.0",
|
|
"eslint-config-airbnb": "^19.0.4",
|
|
"eslint-config-prettier": "^8.5.0",
|
|
"eslint-plugin-header": "^3.1.1",
|
|
"eslint-plugin-import": "^2.26.0",
|
|
"eslint-plugin-jsx-a11y": "^6.6.0",
|
|
"eslint-plugin-react": "^7.30.1",
|
|
"eslint-plugin-react-hooks": "^4.6.0",
|
|
"prettier": "^2.7.1",
|
|
"typedoc": "^0.24.4",
|
|
"typedoc-plugin-markdown": "next"
|
|
},
|
|
"browserslist": {
|
|
"production": [
|
|
">0.5%",
|
|
"not dead",
|
|
"not op_mini all"
|
|
],
|
|
"development": [
|
|
"last 1 chrome version",
|
|
"last 1 firefox version",
|
|
"last 1 safari version"
|
|
]
|
|
},
|
|
"engines": {
|
|
"node": ">=18"
|
|
}
|
|
}
|