-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
106 lines (106 loc) · 3.37 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
{
"name": "@yext/chat-ui-react",
"version": "0.12.0",
"description": "A library of React Components for powering Yext Chat integrations.",
"author": "[email protected]",
"main": "./lib/commonjs/src/index.js",
"module": "./lib/esm/src/index.mjs",
"sideEffects": false,
"exports": {
".": {
"import": {
"types": "./lib/esm/index.d.ts",
"default": "./lib/esm/src/index.mjs"
},
"require": {
"types": "./lib/commonjs/src/index.d.ts",
"default": "./lib/commonjs/src/index.js"
}
},
"./bundle.css": "./lib/bundle.css"
},
"license": "BSD-3-Clause",
"files": [
"lib",
"src",
"THIRD-PARTY-NOTICES",
"LICENSE"
],
"keywords": [
"chat",
"ai",
"yext",
"react",
"components",
"tailwindcss"
],
"scripts": {
"lint": "prettier --write . && eslint --fix --max-warnings=0 .",
"test": "jest --config=jest.config.json",
"storybook": "storybook dev -p 6006",
"dev": "rollup --watch --config rollup.config.mjs",
"generate-docs": "api-extractor run --local --verbose && api-documenter markdown --input-folder temp --output-folder docs && rm -rf temp",
"generate-notices": "generate-license-file --input package.json --output ./THIRD-PARTY-NOTICES --overwrite",
"postcss": "postcss",
"tailwindcss": "tailwindcss",
"build:css": "./scoped-bundle.sh",
"build:js": "rollup --config rollup.config.mjs",
"build": "rm -rf lib/** && npm run build:js && npm run build:css && npm run generate-docs && npm run generate-notices",
"build-storybook": "storybook build"
},
"devDependencies": {
"@babel/core": "^7.21.8",
"@babel/preset-env": "^7.21.5",
"@babel/preset-react": "^7.18.6",
"@babel/preset-typescript": "^7.21.5",
"@microsoft/api-documenter": "^7.22.8",
"@microsoft/api-extractor": "^7.35.1",
"@rollup/plugin-json": "^6.0.0",
"@storybook/addon-essentials": "^7.5.2",
"@storybook/addon-interactions": "^7.5.2",
"@storybook/addon-links": "^7.5.2",
"@storybook/react": "^7.5.2",
"@storybook/react-vite": "^7.5.2",
"@storybook/testing-library": "^0.1.0",
"@tailwindcss/container-queries": "^0.1.1",
"@tailwindcss/typography": "^0.5.9",
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/react": "^14.0.0",
"@testing-library/user-event": "^14.4.3",
"@types/jest": "^29.5.1",
"@types/react": "^18.2.7",
"@yext/chat-headless-react": "^0.9.1",
"@yext/eslint-config": "^1.0.2",
"babel-jest": "^29.5.0",
"eslint": "^8.39.0",
"eslint-plugin-storybook": "^0.6.12",
"generate-license-file": "^1.0.0",
"jest": "^29.5.0",
"jest-environment-jsdom": "^29.5.0",
"msw": "^1.2.1",
"msw-storybook-addon": "^1.8.0",
"postcss-cli": "^10.1.0",
"postcss-nested": "^6.0.1",
"prettier": "^2.8.8",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"rollup": "^3.29.5",
"rollup-plugin-typescript2": "^0.35.0",
"storybook": "^7.5.2",
"tailwindcss": "^3.3.2",
"typescript": "^5.0.4"
},
"peerDependencies": {
"@yext/chat-headless-react": "^0.9.1",
"react": "^16.14 || ^17 || ^18",
"react-dom": "^16.14 || ^17 || || ^18"
},
"dependencies": {
"react-markdown": "^6.0.3",
"react-textarea-autosize": "^8.5.3",
"rehype-raw": "^5.0.0",
"rehype-sanitize": "^4.0.0",
"remark-gfm": "^1.0.0",
"tailwind-merge": "^1.12.0"
}
}