chat-plugin-template/package.json
semantic-release-bot 86b7942830 🔖 chore(release): v1.5.1 [skip ci]
### [Version 1.5.1](https://github.com/lobehub/chat-plugin-template/compare/v1.5.0...v1.5.1)
<sup>Released on **2024-01-11**</sup>

#### 🐛 Bug Fixes

- **misc**: Fix gateway runtime, fix gateway runtime.

<br/>

<details>
<summary><kbd>Improvements and Fixes</kbd></summary>

#### What's fixed

* **misc**: Fix gateway runtime ([f181fa3](https://github.com/lobehub/chat-plugin-template/commit/f181fa3))
* **misc**: Fix gateway runtime, closes [#24](https://github.com/lobehub/chat-plugin-template/issues/24) ([8b1a443](https://github.com/lobehub/chat-plugin-template/commit/8b1a443))

</details>

<div align="right">

[![](https://img.shields.io/badge/-BACK_TO_TOP-151515?style=flat-square)](#readme-top)

</div>
2024-01-11 05:05:39 +00:00

91 lines
2.4 KiB
JSON

{
"name": "plugin-identifier",
"version": "1.5.1",
"private": true,
"description": "This is the plugin template for LobeChat plugin development",
"homepage": "https://github.com/lobehub/chat-plugin-template",
"repository": "https://github.com/lobehub/chat-plugin-template.git",
"workspaces": [
"docs/*",
"./*"
],
"scripts": {
"build": "npm run docs:build && next build",
"ci": "npm run lint && npm run type-check",
"dev": "next dev -p 3400",
"docs:build": "cd docs && npm run build",
"docs:dev": "cd docs && npm run dev",
"lint": "eslint \"{src,api,docs}/**/*.{js,jsx,ts,tsx}\" --fix",
"lint:md": "remark . --quiet --frail --output",
"lint:style": "stylelint \"src/**/*.{js,jsx,ts,tsx}\" --fix",
"prepare": "husky install",
"prepublishOnly": "npm run doctor && npm run build",
"prettier": "prettier -c --write \"**/**\"",
"release": "semantic-release",
"start": "next start",
"test": "vitest --passWithNoTests",
"test:coverage": "vitest --coverage --passWithNoTests",
"type-check": "tsc --noEmit"
},
"lint-staged": {
"*.md": [
"remark --quiet --output --",
"prettier --write --no-error-on-unmatched-pattern"
],
"*.json": [
"prettier --write --no-error-on-unmatched-pattern"
],
"*.{js,jsx}": [
"prettier --write",
"stylelint --fix",
"eslint --fix"
],
"*.{ts,tsx}": [
"prettier --parser=typescript --write",
"stylelint --fix",
"eslint --fix"
]
},
"browserslist": [
"> 1%",
"last 2 versions",
"not ie <= 10"
],
"dependencies": {
"@lobehub/chat-plugin-sdk": "^1",
"@lobehub/chat-plugins-gateway": "^1",
"@lobehub/ui": "latest",
"antd": "^5",
"antd-style": "^3",
"dayjs": "^1",
"next": "13.4.7",
"react": "^18",
"react-dom": "^18",
"react-layout-kit": "^1"
},
"devDependencies": {
"@commitlint/cli": "^18",
"@lobehub/lint": "latest",
"@types/react": "18",
"@vercel/node": "^2",
"@vitest/coverage-v8": "latest",
"commitlint": "^18",
"cross-env": "^7",
"eslint": "^8",
"father": "4.3.1",
"husky": "^8",
"lint-staged": "^15",
"prettier": "^3",
"remark": "^14",
"remark-cli": "^11",
"semantic-release": "^21",
"stylelint": "^15",
"typescript": "^5",
"vitest": "latest"
},
"peerDependencies": {
"react": ">=18",
"react-dom": ">=18"
}
}