designix 0.5.16 → 0.5.18
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 +13 -0
- package/package.json +11 -11
package/README.md
CHANGED
|
@@ -25,3 +25,16 @@ Dependencies
|
|
|
25
25
|
|
|
26
26
|
*Designix* runtime depends only on *Geometrix*. Use *Paramui* WebUI or *Paramec* CLI to visualize and export the designs in different formats like dxf, svg and others.
|
|
27
27
|
|
|
28
|
+
|
|
29
|
+
Node package
|
|
30
|
+
------------
|
|
31
|
+
|
|
32
|
+
The node-package *designix* contains a serie of designs and the associated svg-files, stored in the directory *dist/pgdsvg*.
|
|
33
|
+
|
|
34
|
+
- gear designs
|
|
35
|
+
- heliostat designs
|
|
36
|
+
- spring designs
|
|
37
|
+
- verification desgins
|
|
38
|
+
- some junk designs
|
|
39
|
+
|
|
40
|
+
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "designix",
|
|
3
|
-
"version": "0.5.
|
|
3
|
+
"version": "0.5.18",
|
|
4
4
|
"description": "The first designs made with parametrix",
|
|
5
5
|
"private": false,
|
|
6
6
|
"repository": {
|
|
@@ -38,22 +38,22 @@
|
|
|
38
38
|
"test:unit": "vitest",
|
|
39
39
|
"test:unit:once": "vitest --run",
|
|
40
40
|
"ci": "run-s check build pretty lint test:unit:once svgo",
|
|
41
|
-
"svgo1": "svgo --config
|
|
42
|
-
"svgo2": "svgo --config
|
|
43
|
-
"svgo3": "svgo --config
|
|
44
|
-
"svgo4": "svgo --config
|
|
45
|
-
"svgo5": "svgo --config
|
|
41
|
+
"svgo1": "svgo --config ./svgo.config.cjs -f src/svg -o dist/pgdsvg",
|
|
42
|
+
"svgo2": "svgo --config ./svgo.config.cjs -f src/dummy/svg -o dist/pgdsvg",
|
|
43
|
+
"svgo3": "svgo --config ./svgo.config.cjs -f src/gears/svg -o dist/pgdsvg",
|
|
44
|
+
"svgo4": "svgo --config ./svgo.config.cjs -f src/geometrix_verification/svg -o dist/pgdsvg",
|
|
45
|
+
"svgo5": "svgo --config ./svgo.config.cjs -f src/heliostat/svg -o dist/pgdsvg",
|
|
46
46
|
"svgo": "run-s svgo1 svgo2 svgo3 svgo4 svgo5",
|
|
47
47
|
"browserBundleGearWheel": "esbuild src/gears/gear_wheel_wheel.ts --bundle --format=esm --outfile=dist2/gear_wheel_wheel.js",
|
|
48
48
|
"browserBundleAll": "esbuild dist/index.js --bundle --format=esm --outfile=dist2/designix.js",
|
|
49
49
|
"clean": "shx rm -fr dist dist2 node_modules"
|
|
50
50
|
},
|
|
51
51
|
"dependencies": {
|
|
52
|
-
"geometrix": "^0.5.
|
|
52
|
+
"geometrix": "^0.5.16"
|
|
53
53
|
},
|
|
54
54
|
"devDependencies": {
|
|
55
|
-
"@typescript-eslint/eslint-plugin": "^
|
|
56
|
-
"@typescript-eslint/parser": "^
|
|
55
|
+
"@typescript-eslint/eslint-plugin": "^7.0.1",
|
|
56
|
+
"@typescript-eslint/parser": "^7.0.1",
|
|
57
57
|
"esbuild": "^0.20.0",
|
|
58
58
|
"eslint": "^8.56.0",
|
|
59
59
|
"eslint-config-prettier": "^9.1.0",
|
|
@@ -61,9 +61,9 @@
|
|
|
61
61
|
"prettier": "^3.2.5",
|
|
62
62
|
"shx": "^0.3.4",
|
|
63
63
|
"svgo": "^3.2.0",
|
|
64
|
-
"tsup": "^8.0.
|
|
64
|
+
"tsup": "^8.0.2",
|
|
65
65
|
"typescript": "^5.3.3",
|
|
66
|
-
"vitest": "^1.
|
|
66
|
+
"vitest": "^1.3.0"
|
|
67
67
|
},
|
|
68
68
|
"exports": {
|
|
69
69
|
".": {
|