-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 879 Bytes
/
package.json
File metadata and controls
41 lines (41 loc) · 879 Bytes
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
{
"name": "hello3dllm",
"version": "0.0.0",
"description": "3D interactive app extended with Model Context Protocol (MCP) server capabilities",
"type": "module",
"private": true,
"engines": {
"node": ">=18.0.0"
},
"scripts": {
"dev": "vite",
"build": "vite build",
"preview": "vite preview",
"mcp:server": "node server.js",
"start": "node server.js"
},
"keywords": [
"threejs",
"3d",
"mcp",
"model-context-protocol",
"websocket",
"visualization"
],
"author": "Douglass Turner",
"license": "MIT",
"dependencies": {
"@modelcontextprotocol/sdk": "^1.22.0",
"bootstrap": "^5.3.8",
"cors": "^2.8.5",
"dotenv": "^17.2.3",
"express": "^5.1.0",
"three": "^0.181.1",
"ws": "^8.18.0",
"zod": "^3.25.76"
},
"devDependencies": {
"sass": "^1.94.1",
"vite": "^7.2.2"
}
}