-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.06 KB
/
package.json
File metadata and controls
48 lines (48 loc) · 1.06 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
{
"name": "floating-chat-ui",
"version": "1.1.22",
"description": "A customizable floating chat component for React with inline style support.",
"main": "dist/index.cjs",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"exports": {
"import": "./dist/index.mjs",
"require": "./dist/index.cjs"
},
"files": [
"dist",
"README.md",
"LICENSE"
],
"repository": {
"type": "git",
"url": "https://github.com/Anadea/chatico"
},
"scripts": {
"build": "tsup",
"prepare": "npm run build",
"publish": "npm publish --access public",
"release": "standard-version"
},
"peerDependencies": {
"react": "^18.0.0 || ^19.0.0",
"react-dom": "^18.0.0 || ^19.0.0"
},
"devDependencies": {
"@types/react": "^18.3.22",
"@types/react-dom": "^18.3.7",
"react": "^19.1.0",
"react-dom": "^19.1.0",
"standard-version": "^9.5.0",
"tsup": "^8.5.0",
"typescript": "^5.8.3"
},
"author": "Stepan",
"license": "MIT",
"keywords": [
"react",
"chat",
"floating",
"component"
]
}