morffy 0.1.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/LICENSE +21 -0
- package/README.md +62 -0
- package/bin/morffy.js +272 -0
- package/dist/assets/elk-worker.min--dAJroGl.js +6401 -0
- package/dist/assets/index-CLYmC0Jb.css +1 -0
- package/dist/assets/index-YkGpd5zb.js +7951 -0
- package/dist/index.html +20 -0
- package/dist/morffy.svg +8 -0
- package/package.json +108 -0
package/dist/index.html
ADDED
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
<!doctype html>
|
|
2
|
+
<html lang="en">
|
|
3
|
+
<head>
|
|
4
|
+
<meta charset="UTF-8" />
|
|
5
|
+
<link rel="icon" type="image/svg+xml" href="./morffy.svg" />
|
|
6
|
+
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
7
|
+
<title>Morffy — Architecture Evolution Visualizer</title>
|
|
8
|
+
<link rel="preconnect" href="https://fonts.googleapis.com" />
|
|
9
|
+
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
|
|
10
|
+
<link
|
|
11
|
+
href="https://fonts.googleapis.com/css2?family=Open+Sans:wght@400;500;600;700&display=swap"
|
|
12
|
+
rel="stylesheet"
|
|
13
|
+
/>
|
|
14
|
+
<script type="module" crossorigin src="./assets/index-YkGpd5zb.js"></script>
|
|
15
|
+
<link rel="stylesheet" crossorigin href="./assets/index-CLYmC0Jb.css">
|
|
16
|
+
</head>
|
|
17
|
+
<body>
|
|
18
|
+
<div id="root"></div>
|
|
19
|
+
</body>
|
|
20
|
+
</html>
|
package/dist/morffy.svg
ADDED
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 32 32" fill="none">
|
|
2
|
+
<rect width="32" height="32" rx="7" fill="#1aa0b0" />
|
|
3
|
+
<rect x="6" y="7" width="8" height="6" rx="1.5" fill="#fff" />
|
|
4
|
+
<rect x="18" y="19" width="8" height="6" rx="1.5" fill="#fff" />
|
|
5
|
+
<path d="M14 10h4a3 3 0 0 1 3 3v6" stroke="#fff" stroke-width="1.6" stroke-linecap="round" fill="none" />
|
|
6
|
+
<circle cx="16" cy="22" r="1.5" fill="#7fd4de" />
|
|
7
|
+
<circle cx="16" cy="10" r="1.5" fill="#7fd4de" />
|
|
8
|
+
</svg>
|
package/package.json
ADDED
|
@@ -0,0 +1,108 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "morffy",
|
|
3
|
+
"version": "0.1.0",
|
|
4
|
+
"description": "A read-only architecture diagram visualizer that shows how a system evolves across a timeline. Combines a Visio-style graph canvas with a Gantt-style timeline view.",
|
|
5
|
+
"type": "module",
|
|
6
|
+
"license": "MIT",
|
|
7
|
+
"author": "Tally Barak",
|
|
8
|
+
"keywords": [
|
|
9
|
+
"architecture",
|
|
10
|
+
"diagram",
|
|
11
|
+
"visualization",
|
|
12
|
+
"timeline",
|
|
13
|
+
"evolution",
|
|
14
|
+
"gantt",
|
|
15
|
+
"system-design",
|
|
16
|
+
"react-flow",
|
|
17
|
+
"cli",
|
|
18
|
+
"ai"
|
|
19
|
+
],
|
|
20
|
+
"homepage": "https://github.com/Tallyb/morffy#readme",
|
|
21
|
+
"repository": {
|
|
22
|
+
"type": "git",
|
|
23
|
+
"url": "git+https://github.com/Tallyb/morffy.git"
|
|
24
|
+
},
|
|
25
|
+
"bugs": {
|
|
26
|
+
"url": "https://github.com/Tallyb/morffy/issues"
|
|
27
|
+
},
|
|
28
|
+
"bin": {
|
|
29
|
+
"morffy": "./bin/morffy.js"
|
|
30
|
+
},
|
|
31
|
+
"files": [
|
|
32
|
+
"bin/morffy.js",
|
|
33
|
+
"dist"
|
|
34
|
+
],
|
|
35
|
+
"publishConfig": {
|
|
36
|
+
"access": "public"
|
|
37
|
+
},
|
|
38
|
+
"scripts": {
|
|
39
|
+
"dev": "vite",
|
|
40
|
+
"build": "tsc -b && vite build",
|
|
41
|
+
"preview": "vite preview",
|
|
42
|
+
"serve": "npm run build && node bin/morffy.js",
|
|
43
|
+
"serve:built": "node bin/morffy.js",
|
|
44
|
+
"site:build": "npm run build && node site/build.mjs",
|
|
45
|
+
"site:preview": "npm run site:build && npx --yes serve site",
|
|
46
|
+
"lint": "eslint .",
|
|
47
|
+
"typecheck": "tsc -b --noEmit",
|
|
48
|
+
"test": "vitest run",
|
|
49
|
+
"test:watch": "vitest",
|
|
50
|
+
"test:ui": "vitest --ui",
|
|
51
|
+
"test:e2e": "playwright test",
|
|
52
|
+
"test:e2e:ui": "playwright test --ui",
|
|
53
|
+
"format": "prettier --write .",
|
|
54
|
+
"format:check": "prettier --check .",
|
|
55
|
+
"release": "commit-and-tag-version",
|
|
56
|
+
"release:dry": "commit-and-tag-version --dry-run",
|
|
57
|
+
"prepublishOnly": "npm run typecheck && npm run lint && npm test && npm run build",
|
|
58
|
+
"prepare": "husky || true"
|
|
59
|
+
},
|
|
60
|
+
"dependencies": {
|
|
61
|
+
"chokidar": "^3.6.0"
|
|
62
|
+
},
|
|
63
|
+
"devDependencies": {
|
|
64
|
+
"@xyflow/react": "^12.4.4",
|
|
65
|
+
"class-variance-authority": "^0.7.1",
|
|
66
|
+
"clsx": "^2.1.1",
|
|
67
|
+
"elkjs": "^0.9.3",
|
|
68
|
+
"lucide-react": "^0.469.0",
|
|
69
|
+
"react": "^19.0.0",
|
|
70
|
+
"react-dom": "^19.0.0",
|
|
71
|
+
"tailwind-merge": "^2.6.0",
|
|
72
|
+
"yaml": "^2.7.0",
|
|
73
|
+
"zod": "^3.24.1",
|
|
74
|
+
"zustand": "^5.0.3",
|
|
75
|
+
"@commitlint/cli": "^19.6.1",
|
|
76
|
+
"@commitlint/config-conventional": "^19.6.0",
|
|
77
|
+
"@playwright/test": "^1.49.1",
|
|
78
|
+
"@testing-library/jest-dom": "^6.6.3",
|
|
79
|
+
"@testing-library/react": "^16.1.0",
|
|
80
|
+
"@testing-library/user-event": "^14.5.2",
|
|
81
|
+
"@types/node": "^22.10.5",
|
|
82
|
+
"@types/react": "^19.0.2",
|
|
83
|
+
"@types/react-dom": "^19.0.2",
|
|
84
|
+
"@vitejs/plugin-react": "^4.3.4",
|
|
85
|
+
"@vitest/ui": "^3.2.4",
|
|
86
|
+
"autoprefixer": "^10.4.20",
|
|
87
|
+
"commit-and-tag-version": "^12.5.0",
|
|
88
|
+
"eslint": "^9.17.0",
|
|
89
|
+
"eslint-plugin-react-hooks": "^5.1.0",
|
|
90
|
+
"eslint-plugin-react-refresh": "^0.4.16",
|
|
91
|
+
"husky": "^9.1.7",
|
|
92
|
+
"jsdom": "^25.0.1",
|
|
93
|
+
"lint-staged": "^15.3.0",
|
|
94
|
+
"postcss": "^8.4.49",
|
|
95
|
+
"prettier": "^3.4.2",
|
|
96
|
+
"tailwindcss": "^3.4.17",
|
|
97
|
+
"typescript": "^5.7.2",
|
|
98
|
+
"typescript-eslint": "^8.19.1",
|
|
99
|
+
"vite": "^6.0.7",
|
|
100
|
+
"vitest": "^3.2.4"
|
|
101
|
+
},
|
|
102
|
+
"lint-staged": {
|
|
103
|
+
"*.{ts,tsx,js,jsx,json,css,md}": "prettier --write"
|
|
104
|
+
},
|
|
105
|
+
"engines": {
|
|
106
|
+
"node": ">=20"
|
|
107
|
+
}
|
|
108
|
+
}
|