-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
70 lines (70 loc) · 1.54 KB
/
Copy pathpackage.json
File metadata and controls
70 lines (70 loc) · 1.54 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": "chisel-mcp",
"version": "0.1.0",
"description": "Chisel — an MCP server that lets AI agents build, edit, render, and export real 3D models from primitives and boolean CSG. Headless, GPU-free.",
"keywords": [
"mcp",
"model-context-protocol",
"3d",
"csg",
"modeling",
"gltf",
"obj",
"three.js",
"agent",
"ai"
],
"license": "MIT",
"author": "Emir Yaman Sivrikaya",
"homepage": "https://github.com/EYamanS/chisel#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/EYamanS/chisel.git"
},
"bugs": {
"url": "https://github.com/EYamanS/chisel/issues"
},
"type": "commonjs",
"bin": {
"chisel-mcp": "dist/server.js"
},
"files": [
"dist",
"README.md",
"LICENSE"
],
"engines": {
"node": ">=18"
},
"scripts": {
"mcp": "tsx src/mcp/server.ts",
"build:mcp": "tsup",
"prepare": "tsup",
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "eslint"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.29.0"
},
"devDependencies": {
"@tailwindcss/postcss": "^4",
"@types/node": "^20",
"@types/react": "^19",
"@types/react-dom": "^19",
"@types/three": "^0.184.1",
"eslint": "^9",
"eslint-config-next": "16.2.9",
"next": "16.2.9",
"openai": "^6.44.0",
"react": "19.2.4",
"react-dom": "19.2.4",
"tailwindcss": "^4",
"three": "^0.184.0",
"three-bvh-csg": "^0.0.18",
"tsup": "^8.5.0",
"tsx": "^4.22.4",
"typescript": "^5"
}
}