-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
85 lines (85 loc) · 2.57 KB
/
package.json
File metadata and controls
85 lines (85 loc) · 2.57 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
80
81
82
83
84
85
{
"name": "@link-assistant/react-chat-ui",
"version": "0.13.0",
"description": "React chat UI comparison demos with live package previews, source cost, metrics, and Doublets-backed fixture data.",
"type": "module",
"main": "src/index.js",
"types": "src/index.d.ts",
"exports": {
".": {
"types": "./src/index.d.ts",
"import": "./src/index.js"
}
},
"scripts": {
"test": "node --test --test-timeout=30000 tests/*.test.js",
"test:e2e": "npm run demo:generate && node --test --test-timeout=60000 tests/e2e/*.e2e.js",
"test:all": "npm test && npm run test:e2e",
"demo:generate": "node docs/chat-demos/scripts/generate-profile-pages.mjs",
"demo:dev": "npm run demo:generate && vite --config docs/chat-demos/vite.config.js",
"demo:build": "npm run demo:generate && vite build --config docs/chat-demos/vite.config.js",
"demo:preview": "vite preview --config docs/chat-demos/vite.config.js",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"format": "prettier --write .",
"format:check": "prettier --check .",
"check:duplication": "jscpd .",
"check": "npm run lint && npm run format:check && npm run check:duplication",
"prepare": "husky || true",
"changeset": "changeset",
"changeset:version": "node scripts/changeset-version.mjs",
"changeset:publish": "changeset publish",
"changeset:status": "changeset status --since=origin/main"
},
"keywords": [
"react",
"chat",
"chat-ui",
"doublets",
"demo"
],
"author": "",
"license": "Unlicense",
"repository": {
"type": "git",
"url": "https://github.com/link-assistant/react-chat-ui"
},
"engines": {
"node": ">=20.0.0"
},
"devDependencies": {
"@changesets/cli": "^2.29.7",
"@vitejs/plugin-react": "^6.0.1",
"browser-commander": "^0.8.0",
"eslint": "^9.38.0",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-prettier": "^5.5.4",
"husky": "^9.1.7",
"jscpd": "^4.0.5",
"lint-staged": "^16.2.6",
"playwright": "^1.59.1",
"prettier": "^3.6.2",
"test-anywhere": "^0.8.48",
"vite": "^8.0.11"
},
"lint-staged": {
"*.{js,mjs,cjs}": [
"eslint --fix --max-warnings 0 --no-warn-ignored",
"prettier --write",
"prettier --check"
],
"*.md": [
"prettier --write",
"prettier --check"
]
},
"dependencies": {
"@chatscope/chat-ui-kit-react": "^2.1.1",
"deep-chat-react": "^2.4.2",
"doublets-web": "^0.1.2",
"react": "^18.2.0",
"react-chat-elements": "^12.0.18",
"react-dom": "^18.2.0",
"react-markdown": "^10.1.0"
}
}