forked from ant-design/pro-chat
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
138 lines (138 loc) · 3.92 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
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
{
"name": "@ant-design/pro-chat",
"version": "1.15.2",
"description": "a solution for ai chat",
"keywords": [
"ai",
"ant-design",
"chat"
],
"homepage": "https://github.com/ant-design/pro-chat",
"bugs": {
"url": "https://github.com/ant-design/pro-chat/issues/new"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ant-design/pro-chat.git"
},
"license": "MIT",
"author": "arvinxx([email protected])",
"sideEffects": false,
"main": "es/index.js",
"module": "es/index.js",
"types": "es/index.d.ts",
"files": [
"es"
],
"scripts": {
"build": "father build",
"build:watch": "father dev",
"changelog": "conventional-changelog -n node_modules/conventional-changelog-gitmoji-config -i CHANGELOG.md -s -r 0",
"ci": "npm run lint && npm run type-check && npm run doctor && npm run build",
"clean": "rm -rf es lib dist coverage .dumi/tmp .eslintcache",
"dev": "dumi dev",
"docs:build": "dumi build",
"doctor": "father doctor",
"lint": "eslint \"{src,test}/**/*.{js,jsx,ts,tsx}\"",
"prepare": "husky install && npm run setup",
"prepublishOnly": "npm run doctor && npm run build",
"prettier": "prettier -c --write \"**/**\"",
"release": "semantic-release",
"setup": "dumi setup",
"start": "dumi dev",
"start-with-api": "vercel dev",
"test": "vitest --passWithNoTests",
"test:coverage": "vitest run --coverage --passWithNoTests",
"test:update": "vitest -u",
"type-check": "tsc -p tsconfig-check.json"
},
"lint-staged": {
"*.{md,json}": [
"prettier --write --no-error-on-unmatched-pattern"
],
"*.{js,jsx}": [
"eslint --fix",
"prettier --write"
],
"*.{ts,tsx}": [
"eslint --fix",
"prettier --parser=typescript --write"
]
},
"dependencies": {
"@ant-design/icons": "^5.3.7",
"@ant-design/pro-editor": "latest",
"@babel/runtime": "^7.24.7",
"@emotion/react": "^11.11.4",
"@testing-library/jest-dom": "^6.4.6",
"copy-to-clipboard": "^3.3.3",
"dayjs": "^1.11.11",
"emoji-regex": "^10.3.0",
"fast-deep-equal": "^3.1.3",
"immer": "^10.1.1",
"lodash-es": "^4.17.21",
"lucide-react": "^0.288.0",
"nanoid": "^5.0.7",
"polished": "^4.3.1",
"rc-resize-observer": "^1.4.0",
"rc-util": "^5.43.0",
"react-intersection-observer": "^9.10.3",
"react-layout-kit": "^1.9.0",
"react-markdown": "^8.0.7",
"zustand": "^4.5.2",
"zustand-utils": "^1.3.2"
},
"devDependencies": {
"@commitlint/cli": "^17.8.1",
"@testing-library/react": "^13.4.0",
"@types/chroma-js": "^2.4.4",
"@types/glob": "^8.1.0",
"@types/lodash-es": "^4.17.12",
"@types/react": "18.2.31",
"@types/react-dom": "^18.3.0",
"@umijs/lint": "^4.2.15",
"@vitest/coverage-v8": "latest",
"ai": "^2.2.37",
"antd": "^5.18.3",
"antd-style": "^3.6.2",
"babel-plugin-antd-style": "^1.0.4",
"commitlint": "^17.8.1",
"commitlint-config-gitmoji": "^2.3.1",
"conventional-changelog-gitmoji-config": "^1.5.2",
"cross-env": "^7.0.3",
"dumi": "2.2.16",
"dumi-theme-antd-style": "latest",
"eslint": "^8.57.0",
"father": "4.3.1",
"glob": "^10.4.2",
"husky": "^8.0.3",
"jest": "^29.7.0",
"jsdom": "^22.1.0",
"lint-staged": "^15.2.7",
"mockdate": "^3.0.5",
"openai": "^4.52.1",
"prettier": "^3.3.2",
"prettier-plugin-organize-imports": "^3.2.4",
"prettier-plugin-packagejson": "^2.5.0",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-i18next": "^14.1.2",
"semantic-release": "^21.1.2",
"semantic-release-config-gitmoji": "^1.5.3",
"stylelint": "^15.11.0",
"typescript": "^5.5.2",
"vitest": "^1.6.0"
},
"peerDependencies": {
"antd": "^5",
"antd-style": "^3",
"react": "^18"
},
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org"
},
"gitmoji": {
"capitalizeTitle": false
}
}