-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
84 lines (84 loc) · 2.79 KB
/
package.json
File metadata and controls
84 lines (84 loc) · 2.79 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
{
"name": "@cognigy/chat-components",
"version": "0.69.0",
"type": "module",
"main": "./dist/chat-components.js",
"repository": {
"url": "https://github.com/Cognigy/chat-components"
},
"exports": {
"import": "./dist/chat-components.js",
"require": "./dist/chat-components.js"
},
"module": "./dist/chat-components.js",
"types": "./dist/index.d.ts",
"files": [
"dist/**",
"src/**"
],
"scripts": {
"dev": "vite --host",
"build": "tsc && vite build && node scripts/postbuild-secure-patch.mjs",
"lint": "eslint . --ext ts,tsx --report-unused-disable-directives",
"preview": "vite preview",
"prepack": "npm run build",
"test": "vitest run",
"test:web-ui": "vitest --ui",
"test:watch": "vitest",
"codeql:scan": "rimraf node_modules && npm ci --omit=dev && codeql database create --overwrite codeql-db --language=typescript-javascript --source-root=. --codescanning-config=codeql-config.yml && codeql database analyze codeql-db codeql/javascript-queries --format=sarifv2.1.0 --output=codeql-results.sarif --threads=0",
"codeql:scan:dist": "npm ci && npm run build && rimraf node_modules && codeql database create --overwrite codeql-db --language=javascript --source-root=dist && codeql database analyze codeql-db codeql/javascript-queries --format=sarifv2.1.0 --output=codeql-results-dist.sarif --threads=0"
},
"devDependencies": {
"@cognigy/socket-client": "5.0.0-beta.20",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.0",
"@types/react-transition-group": "^4.4.12",
"@types/remarkable": "^2.0.8",
"@typescript-eslint/eslint-plugin": "^8.46.2",
"@typescript-eslint/parser": "^8.46.2",
"@vitejs/plugin-react-swc": "^4.1.0",
"@vitest/browser": "^3.2.4",
"@vitest/ui": "^3.2.4",
"eslint": "^9.38.0",
"eslint-plugin-jsx-a11y": "^6.7.1",
"eslint-plugin-react-hooks": "^7.0.0",
"eslint-plugin-react-refresh": "^0.4.3",
"jsdom": "^27.0.1",
"prettier": "3.6.2",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"rimraf": "^6.1.2",
"typescript": "^5.9.3",
"vite": "^7.1.11",
"vite-plugin-css-injected-by-js": "^3.3.0",
"vite-plugin-dts": "^4.2.2",
"vite-plugin-svgr": "^4.1.0",
"vitest": "^3.2.4",
"vitest-github-actions-reporter": "^0.11.1",
"webdriverio": "^9.1.1"
},
"dependencies": {
"@braintree/sanitize-url": "^7.1.1",
"@fontsource/figtree": "5.2.10",
"adaptivecards": "2.11.1",
"classnames": "^2.3.2",
"dompurify": "^3.0.11",
"moment": "^2.30.1",
"react-flatpickr": "^4.0.11",
"react-markdown": "9.0.3",
"react-player": "2.16.0",
"react-tooltip": "5.30.0",
"react-transition-group": "4.4.5",
"rehype-raw": "7.0.0",
"remark-gfm": "4.0.1",
"remarkable": "^2.0.1",
"swiper": "^12.1.2"
},
"peerDependencies": {
"react": "^19.x || ^18.3.0",
"react-dom": "^19.x || ^18.3.0"
},
"engines": {
"node": ">=22.1.0"
}
}