-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
65 lines (65 loc) · 1.43 KB
/
package.json
File metadata and controls
65 lines (65 loc) · 1.43 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
{
"name": "@extrachill/chat",
"version": "0.12.4",
"description": "Chat UI components with built-in REST API client. Speaks the standard chat message format natively.",
"type": "module",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
"./package.json": "./package.json",
".": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
},
"./css": "./css/chat.css",
"./src": {
"types": "./src/index.ts",
"default": "./src/index.ts"
},
"./src/*": {
"types": "./src/*.tsx",
"default": "./src/*.tsx"
}
},
"files": [
"src",
"dist",
"css",
"README.md",
"CHANGELOG.md"
],
"scripts": {
"build": "tsc",
"prepare": "npm run build",
"prepublishOnly": "npm run build"
},
"keywords": [
"chat",
"react",
"wordpress",
"gutenberg",
"ai",
"components"
],
"repository": {
"type": "git",
"url": "git+https://github.com/Extra-Chill/chat.git"
},
"homepage": "https://github.com/Extra-Chill/chat",
"bugs": "https://github.com/Extra-Chill/chat/issues",
"license": "GPL-2.0-or-later",
"peerDependencies": {
"react": ">=18.0.0",
"react-dom": ">=18.0.0"
},
"devDependencies": {
"@types/react": "^18.0.0",
"@types/react-dom": "^18.0.0",
"react": "^18.0.0",
"react-dom": "^18.0.0",
"typescript": "^5.7.0"
},
"dependencies": {
"react-markdown": "^10.1.0"
}
}