-
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.95 KB
/
package.json
File metadata and controls
70 lines (70 loc) · 1.95 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": "jsom",
"version": "1.5.0",
"description": "jsOM - The definitive designer platform, LLM friendly. Draw UI, export JSON specs for AI agents.",
"type": "module",
"main": "dist/mcp-server/index.js",
"scripts": {
"dev": "concurrently \"npm run dev:canvas\" \"npm run dev:mcp\"",
"dev:canvas": "vite",
"dev:mcp": "tsx watch src/mcp-server/index.ts",
"build": "npm run build:canvas && npm run build:mcp",
"build:canvas": "vite build",
"build:mcp": "tsc -p tsconfig.mcp.json",
"preview": "vite preview",
"mcp": "node dist/mcp-server/index.js",
"test": "vitest",
"test:run": "vitest run",
"test:coverage": "vitest run --coverage"
},
"keywords": [
"ui-builder",
"canvas",
"mcp",
"model-context-protocol",
"react",
"konva",
"drag-drop",
"code-generator"
],
"author": "Alessio",
"license": "SEE LICENSE IN LICENSE",
"dependencies": {
"@langchain/core": "^1.1.15",
"@langchain/langgraph": "^1.1.0",
"@modelcontextprotocol/sdk": "^1.0.0",
"dompurify": "^3.3.1",
"konva": "^9.3.0",
"lucide-react": "^0.300.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-konva": "^18.2.10",
"react-window": "^1.8.11",
"surrealdb.js": "^1.0.0",
"twitter-api-v2": "^1.29.0",
"uuid": "^9.0.0",
"zod": "^3.22.0",
"zod-to-json-schema": "^3.25.1",
"zustand": "^4.4.0"
},
"devDependencies": {
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^14.3.1",
"@types/dompurify": "^3.0.5",
"@types/node": "^20.10.0",
"@types/react": "^18.2.0",
"@types/react-dom": "^18.2.0",
"@types/react-window": "^1.8.8",
"@types/uuid": "^9.0.0",
"@vitejs/plugin-react": "^4.2.0",
"autoprefixer": "^10.4.16",
"concurrently": "^8.2.0",
"jsdom": "^23.2.0",
"postcss": "^8.4.32",
"tailwindcss": "^3.4.0",
"tsx": "^4.6.0",
"typescript": "^5.3.0",
"vite": "^5.0.0",
"vitest": "^1.6.1"
}
}