-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
70 lines (70 loc) · 1.45 KB
/
package.json
File metadata and controls
70 lines (70 loc) · 1.45 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
{
"name": "@goclaw/webchat",
"version": "0.1.0",
"description": "Embeddable chat widget for GoClaw AI agent gateway",
"type": "module",
"main": "dist/goclaw-webchat.umd.js",
"module": "dist/goclaw-webchat.es.js",
"types": "dist/types/index.d.ts",
"exports": {
".": {
"types": "./dist/goclaw-webchat.d.ts",
"import": "./dist/goclaw-webchat.es.js",
"require": "./dist/goclaw-webchat.umd.js"
},
"./react": {
"import": "./dist/react/index.js",
"types": "./dist/react/index.d.ts"
},
"./vue": {
"import": "./dist/vue/index.js",
"types": "./dist/vue/index.d.ts"
}
},
"files": [
"dist"
],
"scripts": {
"dev": "vite",
"build": "tsc --noEmit && vite build",
"preview": "vite preview",
"lint": "tsc --noEmit",
"clean": "rm -rf dist"
},
"keywords": [
"goclaw",
"chat",
"widget",
"ai",
"agent",
"websocket",
"embeddable"
],
"license": "MIT",
"devDependencies": {
"@types/react": "^19.2.14",
"@types/react-dom": "^19.2.3",
"typescript": "^5.7.0",
"vite": "^6.0.0",
"vite-plugin-dts": "^4.3.0"
},
"peerDependencies": {
"react": ">=17.0.0",
"react-dom": ">=17.0.0",
"vue": ">=3.0.0"
},
"peerDependenciesMeta": {
"react": {
"optional": true
},
"react-dom": {
"optional": true
},
"vue": {
"optional": true
}
},
"dependencies": {
"dompurify": "^3.3.3"
}
}