generated from arvinxx/vercel-serverless-api-template
-
-
Notifications
You must be signed in to change notification settings - Fork 21
/
package.json
88 lines (88 loc) · 2.5 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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
{
"name": "@lobehub/chat-plugin-web-crawler",
"version": "1.3.0",
"private": true,
"description": "This plugin automatically crawls the main content of a specified URL webpage and uses it as context input",
"homepage": "https://github.com/lobehub/chat-plugin-web-crawler",
"repository": "https://github.com/lobehub/chat-plugin-web-crawler.git",
"scripts": {
"build": "father build",
"ci": "npm run lint && npm run type-check",
"dev": "father dev",
"docs:build": "dumi build",
"docs:dev": "dumi dev",
"doctor": "father doctor",
"lint": "eslint \"{src,api,docs}/**/*.{js,jsx,ts,tsx}\" --fix",
"lint:md": "remark . --quiet --frail --output",
"lint:prettier": "prettier --check \"api/**/*\" --end-of-line auto",
"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": "vercel dev",
"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",
"@mozilla/readability": "^0.4",
"jsdom": "^22",
"node-html-markdown": "^1"
},
"devDependencies": {
"@commitlint/cli": "^17",
"@lobehub/lint": "latest",
"@lobehub/ui": "latest",
"@types/jsdom": "^21",
"@vercel/node": "^2",
"@vitest/coverage-v8": "latest",
"babel-plugin-antd-style": "^1",
"commitlint": "^17",
"cross-env": "^7",
"dumi": "^2",
"dumi-theme-lobehub": "latest",
"eslint": "^8",
"father": "4.3.1",
"husky": "^8",
"lint-staged": "^13",
"lucide-react": "latest",
"prettier": "^3",
"remark": "^14",
"remark-cli": "^11",
"semantic-release": "^21",
"stylelint": "^15",
"typescript": "^5",
"vercel": "^28",
"vitest": "latest"
},
"peerDependencies": {
"react": ">=18",
"react-dom": ">=18"
}
}