-
-
Notifications
You must be signed in to change notification settings - Fork 12
/
package.json
58 lines (58 loc) · 1.56 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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
{
"name": "@lobehub/lobe-openai-plugins",
"version": "1.0.0",
"private": true,
"description": "a collection of openai plugins that chan work with LobeChat",
"homepage": "https://github.com/lobehub/lobe-openai-plugins",
"repository": "https://github.com/lobehub/lobe-openai-plugins.git",
"scripts": {
"build": "bun src/index.ts",
"ci": "npm run lint && npm run type-check",
"dev": "bun src/index.ts",
"lint": "eslint \"{src,api,docs}/**/*.{js,jsx,ts,tsx}\" --fix",
"lint:md": "remark . --quiet --frail --output",
"prepare": "husky install",
"prettier": "prettier -c --write \"**/**\"",
"start": "npm run dev",
"sync": "bun scripts/syncOpenAI.ts",
"test": "npm run lint",
"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",
"eslint --fix"
],
"*.{ts,tsx}": [
"prettier --parser=typescript --write",
"eslint --fix"
]
},
"devDependencies": {
"@commitlint/cli": "^17",
"@lobehub/lint": "latest",
"@types/lodash": "^4",
"@types/node": "^20",
"commitlint": "^17",
"consola": "^3",
"eslint": "^8",
"husky": "^8",
"js-yaml": "^4",
"lint-staged": "^15",
"lodash": "^4",
"p-map": "^7",
"prettier": "^3",
"remark": "^14",
"remark-cli": "^11",
"sharp": "^0.33",
"typescript": "^5",
"url-join": "^5"
}
}