-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
50 lines (50 loc) · 1.18 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
{
"name": "chattgator-chat-kit",
"repository": {
"type": "git",
"url": "https://github.com/vatsal0601/chattgator-chat-kit.git"
},
"version": "0.0.16",
"description": "A chat ui component library with integrated backend by team ChattGator",
"main": "dist/cjs/index.js",
"module": "dist/esm/index.js",
"files": [
"dist"
],
"scripts": {
"build": "rm -rf dist/ && npm run build:esm && npm run build:cjs",
"build:esm": "tsc",
"build:cjs": "tsc --module CommonJS --outDir dist/cjs"
},
"keywords": [
"chat",
"chattgator",
"chat ui kit",
"react"
],
"author": "Vatsal Sakariya",
"license": "MIT",
"devDependencies": {
"@headlessui/react": "^1.6.6",
"@heroicons/react": "^2.0.7",
"@types/node": "^18.7.13",
"@types/react": "^18.0.17",
"@types/react-dom": "^18.0.6",
"autoprefixer": "^10.4.8",
"axios": "^0.27.2",
"postcss": "^8.4.16",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"socket.io-client": "^4.5.1",
"tailwindcss": "^3.1.8",
"typescript": "^4.8.2"
},
"peerDependencies": {
"@headlessui/react": "^1.6.6",
"@heroicons/react": "^2.0.7",
"axios": "^0.27.2",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"socket.io-client": "^4.5.1"
}
}