forked from reaviz/reachat
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
130 lines (130 loc) · 3.84 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
{
"name": "reachat",
"version": "1.5.0",
"description": "Chat UI for Building LLMs",
"scripts": {
"build-storybook": "storybook build",
"build": "npm run build:js && npm run build:docs",
"build:js": "vite build --mode library",
"build:docs": "node scripts/docs.js",
"lint": "eslint --ext js,ts,tsx",
"lint:fix": "eslint --ext js,ts,tsx --fix src",
"lint:prettier": "prettier --loglevel warn --write 'src/**/*.{ts,tsx,js,jsx}'",
"prettier": "prettier --loglevel warn --write 'src/**/*.{ts,tsx,js,jsx}'",
"start": "storybook dev -p 9009",
"test": "vitest --passWithNoTests",
"test:coverage": "vitest run --coverage --passWithNoTests",
"prepare": "husky install"
},
"license": "Apache-2.0",
"files": [
"dist"
],
"type": "module",
"types": "dist/index.d.ts",
"main": "./dist/index.umd.cjs",
"module": "./dist/index.js",
"source": "src/index.ts",
"exports": {
".": {
"import": "./dist/index.js",
"require": "./dist/index.umd.cjs",
"types": "./dist/index.d.ts"
},
"./docs.json": "./dist/docs.json",
"./index.css": "./dist/index.css"
},
"browser": "dist/index.js",
"typings": "dist/index.d.ts",
"dependencies": {
"@radix-ui/react-slot": "^1.1.0",
"date-fns": "^3.6.0",
"framer-motion": "^10.16.16",
"katex": "^0.16.11",
"mdast-util-find-and-replace": "^3.0.1",
"reablocks": "^8.4.7",
"react-markdown": "^9.0.1",
"react-syntax-highlighter": "^15.5.0",
"reakeys": "^2.0.3",
"rehype-katex": "^7.0.0",
"remark-gfm": "^4.0.0",
"remark-math": "^6.0.0",
"remark-youtube": "^1.3.2"
},
"peerDependencies": {
"react": ">=18",
"react-dom": ">=18"
},
"devDependencies": {
"@ai-sdk/openai": "^0.0.40",
"@storybook/addon-docs": "^8.2.6",
"@storybook/addon-essentials": "^8.2.6",
"@storybook/addon-mdx-gfm": "^8.2.6",
"@storybook/addon-storysource": "^8.2.6",
"@storybook/addon-themes": "^8.2.6",
"@storybook/manager-api": "^8.2.6",
"@storybook/preview-api": "^8.2.6",
"@storybook/react": "^8.2.6",
"@storybook/react-vite": "^8.2.6",
"@storybook/theming": "^8.2.6",
"@types/classnames": "^2.3.1",
"@types/react": "^18.2.61",
"@types/react-dom": "^18.2.19",
"@typescript-eslint/eslint-plugin": "^7.6.0",
"@typescript-eslint/parser": "^7.6.0",
"@vitejs/plugin-react": "^4.2.1",
"@vitest/coverage-v8": "^1.4.0",
"ai": "^3.2.43",
"autoprefixer": "^10.4.19",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-no-relative-import-paths": "^1.5.4",
"eslint-plugin-react": "^7.34.1",
"eslint-plugin-react-hooks": "^4.3.0",
"eslint-plugin-storybook": "^0.8.0",
"fast-glob": "^3.3.2",
"husky": "^9.0.11",
"jsdom": "^24.0.0",
"lint-staged": "^15.2.2",
"openai": "^4.53.0",
"postcss": "^8.4.39",
"postcss-nested": "^6.0.1",
"postcss-preset-env": "^9.5.2",
"prettier": "^3.2.5",
"react": "^18.3.1",
"react-docgen-typescript": "^2.2.2",
"react-dom": "^18.3.1",
"rollup-plugin-peer-deps-external": "2.2.4",
"storybook": "^8.2.6",
"tailwindcss": "^3.4.6",
"tw-colors": "^3.3.1",
"typescript": "^4.9.5",
"vite": "^5.2.2",
"vite-plugin-checker": "^0.6.4",
"vite-plugin-css-injected-by-js": "^3.5.0",
"vite-plugin-dts": "^3.7.3",
"vite-plugin-svgr": "^4.2.0",
"vite-tsconfig-paths": "^4.3.2",
"vitest": "^1.4.0"
},
"prettier": {
"semi": true,
"singleQuote": true,
"trailingComma": "none",
"arrowParens": "avoid",
"bracketSpacing": true,
"printWidth": 80
},
"lint-staged": {
"src/**/*.{js,jsx,ts,tsx,json,css,scss,md}": [
"prettier --write",
"git add"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"packageManager": "[email protected]+sha1.8c155dc114e1689d18937974f6571e0ceee66f1d"
}