-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
85 lines (85 loc) · 2.2 KB
/
Copy pathpackage.json
File metadata and controls
85 lines (85 loc) · 2.2 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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
{
"name": "@aquaveo/chatbox-core",
"version": "0.16.1-beta.0",
"description": "Generic chatbox engine, UI components, and helpers. Self-contained build — consumers only need react + styled-components.",
"license": "MIT",
"author": "Aquaveo LLC",
"homepage": "https://github.com/Aquaveo/chatbox-core#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/Aquaveo/chatbox-core.git"
},
"bugs": {
"url": "https://github.com/Aquaveo/chatbox-core/issues"
},
"keywords": [
"mcp",
"chatbox",
"react",
"llm",
"tools",
"model-context-protocol"
],
"engines": {
"node": ">=18"
},
"type": "module",
"main": "dist/index.js",
"module": "dist/index.js",
"exports": {
".": "./dist/index.js",
"./engine": "./dist/engine/index.js",
"./engine/embeddings": "./dist/engine/embeddings.js",
"./conversation": "./dist/conversation/index.js",
"./helpers": "./dist/helpers/index.js",
"./config": "./dist/config/index.js",
"./messages": "./dist/messages/index.js",
"./storage": "./dist/storage/mcpStorage.js",
"./components": "./dist/components/index.js",
"./theme": "./dist/theme/index.js"
},
"files": [
"dist",
"README.md",
"LICENSE",
"CHANGELOG.md"
],
"publishConfig": {
"access": "public"
},
"scripts": {
"build": "vite build",
"dev": "vite build --watch",
"test": "vitest run",
"test:watch": "vitest",
"prepublishOnly": "npm test && npm run build"
},
"peerDependencies": {
"react": ">=17.0.0",
"react-dom": ">=17.0.0",
"styled-components": ">=5.0.0"
},
"optionalDependencies": {
"@huggingface/transformers": "^3.8.1"
},
"dependencies": {
"@anthropic-ai/sdk": "^0.30.0",
"@google/genai": "^2.6.0",
"@modelcontextprotocol/sdk": "^1.27.0",
"openai": "^4.0.0",
"react-markdown": "^9.0.0",
"react-syntax-highlighter": "^15.0.0",
"remark-breaks": "^4.0.0",
"remark-gfm": "^4.0.0"
},
"devDependencies": {
"@vitejs/plugin-react": "^4.0.0",
"fake-indexeddb": "^6.2.5",
"jsdom": "^25.0.1",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"styled-components": "^6.4.1",
"vite": "^6.0.0",
"vitest": "^3.2.4"
}
}