ducsvg 3.3.0 → 3.4.3
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 +3 -4
- package/package.json +4 -4
package/README.md
CHANGED
|
@@ -1,3 +1,5 @@
|
|
|
1
|
+
# ducsvg
|
|
2
|
+
|
|
1
3
|
<p align="center">
|
|
2
4
|
<br/>
|
|
3
5
|
<a href="https://duc.ducflair.com" target="_blank"><img width="256px" src="https://raw.githubusercontent.com/ducflair/assets/refs/heads/main/src/duc/duc-extended.png" /></a>
|
|
@@ -9,7 +11,6 @@
|
|
|
9
11
|
</p>
|
|
10
12
|
</p>
|
|
11
13
|
|
|
12
|
-
# ducsvg
|
|
13
14
|
|
|
14
15
|
`ducsvg` is a lightweight adapter for rendering `duc` CAD documents to SVG. It’s built on top of `ducjs` and focuses on accurate, standards-compliant SVG output you can embed in browsers or export from Node.js.
|
|
15
16
|
|
|
@@ -39,6 +40,4 @@ To ensure smooth releases with semantic-release, please follow [these guidelines
|
|
|
39
40
|
|
|
40
41
|
---
|
|
41
42
|
|
|
42
|
-
*The duc format and libraries are constantly evolving, aiming to set new standards in the 2D CAD industry. Be a part of this transformation and help shape the future of design technology!*
|
|
43
|
-
|
|
44
|
-
|
|
43
|
+
*The duc format and libraries are constantly evolving, aiming to set new standards in the 2D CAD industry. Be a part of this transformation and help shape the future of design technology!*
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "ducsvg",
|
|
3
|
-
"version": "3.3
|
|
3
|
+
"version": "3.4.3",
|
|
4
4
|
"description": "Adapter for converting duc CAD documents to SVG. Built on top of ducjs.",
|
|
5
5
|
"private": false,
|
|
6
6
|
"type": "module",
|
|
@@ -25,7 +25,7 @@
|
|
|
25
25
|
"build:ts": "vite build && pwd && tsc -p tsconfig.json",
|
|
26
26
|
"build:wasm": "cd src/pdf2svg && wasm-pack build --target web --out-dir ../../pkg --release",
|
|
27
27
|
"copy:wasm-to-dist": "mkdir -p dist && cp pkg/pdf2svg_bg.wasm dist/ && cp pkg/pdf2svg.js dist/pdf2svg-wasm.js && cp pkg/pdf2svg.d.ts dist/pdf2svg-wasm.d.ts && cp pkg/pdf2svg_bg.wasm.d.ts dist/",
|
|
28
|
-
"clean": "rm -rf dist pkg
|
|
28
|
+
"clean": "rm -rf dist pkg",
|
|
29
29
|
"check-types": "tsc --noEmit",
|
|
30
30
|
"test": "bun test",
|
|
31
31
|
"semantic-release": "semantic-release"
|
|
@@ -33,8 +33,8 @@
|
|
|
33
33
|
"author": "Ducflair",
|
|
34
34
|
"license": "MIT",
|
|
35
35
|
"dependencies": {
|
|
36
|
-
"ducjs": "^
|
|
37
|
-
"ducpdf": "^3.
|
|
36
|
+
"ducjs": "^3.0.3",
|
|
37
|
+
"ducpdf": "^3.5.3"
|
|
38
38
|
},
|
|
39
39
|
"devDependencies": {
|
|
40
40
|
"@xmldom/xmldom": "^0.8.11",
|