forked from basta/frameground
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (64 loc) · 1.7 KB
/
Copy pathpackage.json
File metadata and controls
64 lines (64 loc) · 1.7 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
{
"name": "opendesign",
"version": "0.1.0",
"description": "A Figma-like canvas for HTML. Each frame is a self-contained HTML file that syncs two-way between canvas and disk. Designed to be driven by AI coding agents.",
"type": "module",
"license": "MIT",
"author": "basta <jsembasta@gmail.com>",
"homepage": "https://github.com/basta/OpenDesign#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/basta/OpenDesign.git"
},
"bugs": {
"url": "https://github.com/basta/OpenDesign/issues"
},
"keywords": [
"design-tool",
"canvas",
"html",
"figma",
"react-flow",
"xyflow",
"ai-agents",
"claude-code"
],
"engines": {
"node": ">=20.19.0"
},
"scripts": {
"dev": "vite",
"build": "tsc -b && vite build",
"lint": "eslint .",
"preview": "vite preview",
"test": "vitest run",
"test:watch": "vitest",
"prepare": "git config core.hooksPath .githooks || true"
},
"dependencies": {
"@agentclientprotocol/claude-agent-acp": "^0.31.1",
"@agentclientprotocol/sdk": "^0.20.0",
"@xyflow/react": "^12.10.2",
"chokidar": "^5.0.0",
"react": "^19.2.4",
"react-dom": "^19.2.4",
"react-router-dom": "^7.14.1",
"yaml": "^2.8.3"
},
"devDependencies": {
"@eslint/js": "^9.39.4",
"@google/design.md": "^0.1.1",
"@types/node": "^24.12.2",
"@types/react": "^19.2.14",
"@types/react-dom": "^19.2.3",
"@vitejs/plugin-react": "^6.0.1",
"eslint": "^9.39.4",
"eslint-plugin-react-hooks": "^7.0.1",
"eslint-plugin-react-refresh": "^0.5.2",
"globals": "^17.4.0",
"typescript": "~6.0.2",
"typescript-eslint": "^8.58.0",
"vite": "^8.0.4",
"vitest": "^4.1.4"
}
}