@arach/arc 0.4.2 → 0.4.4
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/README.md +82 -10
- package/lib/arc.es.js +38 -32804
- package/lib/arc.umd.js +276 -145
- package/lib/index.d.ts +713 -111
- package/package.json +8 -3
package/package.json
CHANGED
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@arach/arc",
|
|
3
|
-
"version": "0.4.
|
|
3
|
+
"version": "0.4.4",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"packageManager": "bun@1.3.11",
|
|
6
6
|
"workspaces": [
|
|
7
7
|
"packages/*"
|
|
8
8
|
],
|
|
9
|
-
"description": "
|
|
9
|
+
"description": "Diagrams as code for React — design, render, and export typed architecture diagrams",
|
|
10
10
|
"author": "Arach Tchoupani",
|
|
11
11
|
"license": "MIT",
|
|
12
12
|
"repository": {
|
|
@@ -17,6 +17,7 @@
|
|
|
17
17
|
"diagram",
|
|
18
18
|
"editor",
|
|
19
19
|
"architecture",
|
|
20
|
+
"diagrams-as-code",
|
|
20
21
|
"visualization",
|
|
21
22
|
"react",
|
|
22
23
|
"isometric"
|
|
@@ -50,7 +51,8 @@
|
|
|
50
51
|
"typecheck": "tsc --noEmit",
|
|
51
52
|
"preview": "vite preview",
|
|
52
53
|
"generate-og": "node scripts/generate-og.js",
|
|
53
|
-
"
|
|
54
|
+
"check:dist": "attw --pack . --ignore-rules cjs-resolves-to-esm unexpected-module-syntax && publint",
|
|
55
|
+
"prepublishOnly": "bun run build:lib && bun run check:dist"
|
|
54
56
|
},
|
|
55
57
|
"peerDependencies": {
|
|
56
58
|
"react": "^18.0.0 || ^19.0.0",
|
|
@@ -60,12 +62,14 @@
|
|
|
60
62
|
"dependencies": {
|
|
61
63
|
"@arach/dewey": "^0.2.0",
|
|
62
64
|
"@base-ui/react": "^1.0.0",
|
|
65
|
+
"hudsonkit": "^0.3.3",
|
|
63
66
|
"js-yaml": "^4.1.1",
|
|
64
67
|
"react": "^19.2.0",
|
|
65
68
|
"react-dom": "^19.2.0",
|
|
66
69
|
"react-router-dom": "^7.12.0"
|
|
67
70
|
},
|
|
68
71
|
"devDependencies": {
|
|
72
|
+
"@arethetypeswrong/cli": "^0.18.4",
|
|
69
73
|
"@eslint/js": "^9.39.1",
|
|
70
74
|
"@tailwindcss/vite": "^4.1.18",
|
|
71
75
|
"@types/js-yaml": "^4.0.9",
|
|
@@ -78,6 +82,7 @@
|
|
|
78
82
|
"eslint-plugin-react-refresh": "^0.4.24",
|
|
79
83
|
"globals": "^16.5.0",
|
|
80
84
|
"lucide-react": "^0.562.0",
|
|
85
|
+
"publint": "^0.3.21",
|
|
81
86
|
"puppeteer": "^24.34.0",
|
|
82
87
|
"rollup-plugin-visualizer": "^6.0.5",
|
|
83
88
|
"satori": "^0.18.3",
|