@kitschpatrol/tldraw-cli 5.0.14 → 5.0.15
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/dist/.DS_Store +0 -0
- package/dist/bin/cli.js +1 -1
- package/dist/lib/index.js +1 -1
- package/dist/tldraw/assets/index-C5IC0Ic5.js +501 -0
- package/dist/tldraw/index.html +1 -1
- package/package.json +11 -11
- package/readme.md +1 -1
- package/dist/tldraw/assets/index-DV6RkLqi.js +0 -501
package/dist/tldraw/index.html
CHANGED
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
<meta charset="UTF-8" />
|
|
5
5
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
6
6
|
<title>tldraw via tldraw-cli</title>
|
|
7
|
-
<script type="module" crossorigin src="/assets/index-
|
|
7
|
+
<script type="module" crossorigin src="/assets/index-C5IC0Ic5.js"></script>
|
|
8
8
|
<link rel="stylesheet" crossorigin href="/assets/index-DWlTSBfy.css">
|
|
9
9
|
</head>
|
|
10
10
|
<body>
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@kitschpatrol/tldraw-cli",
|
|
3
|
-
"version": "5.0.
|
|
3
|
+
"version": "5.0.15",
|
|
4
4
|
"description": "A CLI tool and TypeScript library for exporting tldraw sketches to PNG or SVG images.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"tldraw",
|
|
@@ -43,12 +43,12 @@
|
|
|
43
43
|
"dist/*"
|
|
44
44
|
],
|
|
45
45
|
"dependencies": {
|
|
46
|
-
"@hono/node-server": "^1.19.
|
|
46
|
+
"@hono/node-server": "^1.19.13",
|
|
47
47
|
"@sindresorhus/slugify": "^3.0.0",
|
|
48
|
-
"@types/node": "^
|
|
48
|
+
"@types/node": "^25.5.2",
|
|
49
49
|
"cheerio": "^1.2.0",
|
|
50
50
|
"get-port": "^7.2.0",
|
|
51
|
-
"hono": "^4.12.
|
|
51
|
+
"hono": "^4.12.12",
|
|
52
52
|
"nanoid": "^5.1.7",
|
|
53
53
|
"natural-orderby": "^5.0.0",
|
|
54
54
|
"open": "^11.0.0",
|
|
@@ -65,15 +65,15 @@
|
|
|
65
65
|
"@arethetypeswrong/core": "^0.18.2",
|
|
66
66
|
"@blazediff/vitest": "^1.1.12",
|
|
67
67
|
"@fontsource/inter": "^5.2.8",
|
|
68
|
-
"@kitschpatrol/shared-config": "^7.
|
|
69
|
-
"@tldraw/assets": "^4.5.
|
|
68
|
+
"@kitschpatrol/shared-config": "^7.1.0",
|
|
69
|
+
"@tldraw/assets": "^4.5.8",
|
|
70
70
|
"@types/react": "^19.2.14",
|
|
71
71
|
"@types/react-dom": "^19.2.3",
|
|
72
72
|
"@types/yargs": "^17.0.35",
|
|
73
73
|
"@vitejs/plugin-react": "^6.0.1",
|
|
74
74
|
"bumpp": "^11.0.1",
|
|
75
|
-
"esbuild": "^0.
|
|
76
|
-
"mdat-plugin-cli-help": "^2.
|
|
75
|
+
"esbuild": "^0.28.0",
|
|
76
|
+
"mdat-plugin-cli-help": "^2.1.1",
|
|
77
77
|
"node-addon-api": "^8.7.0",
|
|
78
78
|
"node-gyp": "^12.2.0",
|
|
79
79
|
"publint": "^0.3.18",
|
|
@@ -82,12 +82,12 @@
|
|
|
82
82
|
"rolldown": "1.0.0-rc.10",
|
|
83
83
|
"safe-stable-stringify": "^2.5.0",
|
|
84
84
|
"strip-ansi": "^7.2.0",
|
|
85
|
-
"tldraw": "^4.5.
|
|
85
|
+
"tldraw": "^4.5.8",
|
|
86
86
|
"tsdown": "^0.21.7",
|
|
87
87
|
"tsx": "^4.21.0",
|
|
88
88
|
"typescript": "~5.9.3",
|
|
89
|
-
"vite": "^8.0.
|
|
90
|
-
"vitest": "^4.1.
|
|
89
|
+
"vite": "^8.0.7",
|
|
90
|
+
"vitest": "^4.1.3"
|
|
91
91
|
},
|
|
92
92
|
"engines": {
|
|
93
93
|
"node": ">=20.19.0"
|
package/readme.md
CHANGED
|
@@ -18,7 +18,7 @@
|
|
|
18
18
|
>
|
|
19
19
|
> The tldraw project and website are rapidly evolving, and time is not always available to keep `tldraw-cli`'s abstractions up to date, particularly for commands that interface directly with sketch URLs. Working with local `.tldr` files should be relatively stable, but caveat emptor.
|
|
20
20
|
|
|
21
|
-
<!-- table-of-contents
|
|
21
|
+
<!-- table-of-contents({ maxDepth: 2 }) -->
|
|
22
22
|
|
|
23
23
|
## Table of contents
|
|
24
24
|
|