-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
79 lines (79 loc) · 2.01 KB
/
package.json
File metadata and controls
79 lines (79 loc) · 2.01 KB
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
{
"name": "@cognipeer/chat-ui",
"version": "0.1.3",
"description": "A customizable React chat UI component for AI agents",
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.mjs",
"require": "./dist/index.js"
},
"./styles.css": "./dist/styles.css"
},
"sideEffects": [
"**/*.css"
],
"files": [
"dist"
],
"scripts": {
"dev": "tsup --watch",
"clean": "node -e \"require('fs').rmSync('dist',{recursive:true,force:true})\"",
"build": "npm run clean && tsup && npm run build:css",
"build:css": "tailwindcss -i ./src/styles/globals.css -o ./dist/styles.css --minify",
"verify:dist": "node scripts/verify-dist.js",
"prepack": "npm run build && npm run verify:dist",
"prepublishOnly": "npm run prepack",
"lint": "eslint src/",
"typecheck": "tsc --noEmit",
"storybook": "storybook dev -p 6006",
"build-storybook": "storybook build",
"docs:dev": "vitepress dev docs",
"docs:build": "vitepress build docs",
"docs:preview": "vitepress preview docs"
},
"peerDependencies": {
"react": ">=18.0.0",
"react-dom": ">=18.0.0"
},
"dependencies": {
"@formatjs/intl": "^2.10.0",
"clsx": "^2.1.0",
"lucide-react": "^0.312.0",
"react-intl": "^6.6.0",
"react-markdown": "^9.0.1",
"remark-gfm": "^4.0.0",
"tailwind-merge": "^2.2.0"
},
"devDependencies": {
"@types/react": "^18.2.48",
"@types/react-dom": "^18.2.18",
"autoprefixer": "^10.4.17",
"postcss": "^8.4.33",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"tailwindcss": "^3.4.1",
"tsup": "^8.0.1",
"typescript": "^5.3.3",
"vitepress": "^1.0.0"
},
"keywords": [
"react",
"chat",
"ui",
"ai",
"agent",
"chatgpt",
"streaming",
"sse"
],
"author": "Cognipeer",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/Cognipeer/chat-ui"
}
}