pantograph2d 0.7.0 → 0.8.1
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 +4 -658
- package/dist/QuadraticBezier-BAVasVfu.cjs +9 -0
- package/dist/QuadraticBezier-BAVasVfu.cjs.map +1 -0
- package/dist/QuadraticBezier-BzVqiExF.js +4736 -0
- package/dist/QuadraticBezier-BzVqiExF.js.map +1 -0
- package/dist/draw-DqsKIWJD.js +337 -0
- package/dist/draw-DqsKIWJD.js.map +1 -0
- package/dist/draw-NcYfDZjT.cjs +2 -0
- package/dist/draw-NcYfDZjT.cjs.map +1 -0
- package/dist/models-Dxwusy3i.cjs +4 -0
- package/dist/models-Dxwusy3i.cjs.map +1 -0
- package/dist/models-WQ-B7GSL.js +1749 -0
- package/dist/models-WQ-B7GSL.js.map +1 -0
- package/dist/pantograph/drawShape.cjs +1 -1
- package/dist/pantograph/drawShape.cjs.map +1 -1
- package/dist/pantograph/drawShape.js +12 -13
- package/dist/pantograph/drawShape.js.map +1 -1
- package/dist/pantograph/models.cjs +1 -1
- package/dist/pantograph/models.js +15 -12
- package/dist/pantograph/models.js.map +1 -1
- package/dist/pantograph/svg.cjs +2 -0
- package/dist/pantograph/svg.cjs.map +1 -0
- package/dist/pantograph/svg.js +10 -0
- package/dist/pantograph/svg.js.map +1 -0
- package/dist/pantograph.cjs +2 -8
- package/dist/pantograph.cjs.map +1 -1
- package/dist/pantograph.js +406 -452
- package/dist/pantograph.js.map +1 -1
- package/dist/svg-BylQQgsL.js +62 -0
- package/dist/svg-BylQQgsL.js.map +1 -0
- package/dist/svg-D0nYyMk7.cjs +8 -0
- package/dist/svg-D0nYyMk7.cjs.map +1 -0
- package/dist/types/examples/importSVG.d.ts +4 -0
- package/dist/types/{algorithms → src/algorithms}/boolean/figureBooleans.d.ts +1 -1
- package/dist/types/{algorithms → src/algorithms}/boolean/loopBooleans.d.ts +1 -1
- package/dist/types/{algorithms → src/algorithms}/boolean/strandBoolean.d.ts +4 -4
- package/dist/types/{algorithms → src/algorithms}/boolean/strandsBetweenIntersections.d.ts +3 -3
- package/dist/types/{algorithms → src/algorithms}/distances/arcArcDistance.d.ts +1 -1
- package/dist/types/{algorithms → src/algorithms}/distances/genericDistance.d.ts +1 -1
- package/dist/types/{algorithms → src/algorithms}/distances/index.d.ts +1 -1
- package/dist/types/src/algorithms/distances/lineArcDistance.d.ts +3 -0
- package/dist/types/{algorithms → src/algorithms}/distances/lineLineDistance.d.ts +1 -1
- package/dist/types/{algorithms → src/algorithms}/filletSegments.d.ts +1 -1
- package/dist/types/{algorithms → src/algorithms}/intersections/arcArcIntersection.d.ts +2 -2
- package/dist/types/src/algorithms/intersections/arcEllipseArcIntersection.d.ts +3 -0
- package/dist/types/src/algorithms/intersections/arcsCubicBezierIntersection.d.ts +5 -0
- package/dist/types/src/algorithms/intersections/arcsQuadraticBezierIntersection.d.ts +5 -0
- package/dist/types/{algorithms → src/algorithms}/intersections/bezierClip.d.ts +3 -3
- package/dist/types/{algorithms → src/algorithms}/intersections/cubicBezierCubicBezierIntersection.d.ts +2 -2
- package/dist/types/{algorithms → src/algorithms}/intersections/ellipseArcEllipseArcIntersection.d.ts +2 -2
- package/dist/types/src/algorithms/intersections/ellipseEllipseIntersection.d.ts +4 -0
- package/dist/types/{algorithms → src/algorithms}/intersections/index.d.ts +2 -2
- package/dist/types/src/algorithms/intersections/lineArcIntersection.d.ts +4 -0
- package/dist/types/src/algorithms/intersections/lineBezierIntersection.d.ts +5 -0
- package/dist/types/src/algorithms/intersections/lineEllipseArcIntersection.d.ts +4 -0
- package/dist/types/{algorithms → src/algorithms}/intersections/lineLineIntersection.d.ts +4 -4
- package/dist/types/{algorithms → src/algorithms}/intersections/quadraticBezierQuadraticBezierIntersection.d.ts +2 -2
- package/dist/types/src/algorithms/intersections/rayIntersections.d.ts +3 -0
- package/dist/types/{algorithms → src/algorithms}/offsets/offsetFigure.d.ts +2 -2
- package/dist/types/{algorithms → src/algorithms}/offsets/offsetSegment.d.ts +4 -4
- package/dist/types/{algorithms → src/algorithms}/offsets/offsetStroke.d.ts +5 -5
- package/dist/types/{algorithms → src/algorithms}/organiseLoops.d.ts +2 -2
- package/dist/types/src/algorithms/simplify.d.ts +3 -0
- package/dist/types/src/algorithms/solvers/findZeroViaNewton.d.ts +1 -0
- package/dist/types/src/algorithms/solvers/zeroViaNewton.d.ts +1 -0
- package/dist/types/{algorithms → src/algorithms}/stitchSegments.d.ts +1 -1
- package/dist/types/src/api/drawShape.d.ts +2 -0
- package/dist/types/src/api/models.d.ts +1 -0
- package/dist/types/src/api/svg.d.ts +1 -0
- package/dist/types/{booleanOperations.d.ts → src/booleanOperations.d.ts} +5 -5
- package/dist/types/{draw.d.ts → src/draw.d.ts} +4 -4
- package/dist/types/{drawShape → src/drawShape}/drawCircle.d.ts +1 -1
- package/dist/types/src/drawShape/drawEllipse.d.ts +2 -0
- package/dist/types/{drawShape → src/drawShape}/drawRect.d.ts +1 -1
- package/dist/types/src/drawShape/drawSVGPath.d.ts +2 -0
- package/dist/types/src/drawShape/index.d.ts +4 -0
- package/dist/types/{export → src/export}/json/exportJSON.d.ts +94 -94
- package/dist/types/{export → src/export}/json/jsonDiagram.d.ts +31 -31
- package/dist/types/{export → src/export}/json/jsonFigure.d.ts +31 -31
- package/dist/types/{export → src/export}/json/jsonLoop.d.ts +16 -16
- package/dist/types/{export → src/export}/json/jsonSegment.d.ts +16 -16
- package/dist/types/src/export/svg/api.d.ts +6 -0
- package/dist/types/{export → src/export}/svg/exportSVG.d.ts +6 -6
- package/dist/types/{export → src/export}/svg/svgDiagram.d.ts +1 -1
- package/dist/types/{export → src/export}/svg/svgFigure.d.ts +1 -1
- package/dist/types/{export → src/export}/svg/svgLoop.d.ts +1 -1
- package/dist/types/{export → src/export}/svg/svgSegment.d.ts +1 -1
- package/dist/types/{export → src/export}/svg/svgStrand.d.ts +1 -1
- package/dist/types/{export → src/export}/svg/wrapSVG.d.ts +2 -2
- package/dist/types/src/import/json/importJSON.d.ts +9 -0
- package/dist/types/{main.d.ts → src/main.d.ts} +7 -7
- package/dist/types/{models → src/models}/BoundingBox.d.ts +1 -1
- package/dist/types/{models → src/models}/Diagram.d.ts +7 -7
- package/dist/types/{models → src/models}/Figure.d.ts +7 -7
- package/dist/types/{models → src/models}/Loop.d.ts +4 -4
- package/dist/types/{models → src/models}/Strand.d.ts +2 -2
- package/dist/types/{models → src/models}/Stroke.d.ts +5 -5
- package/dist/types/{models → src/models}/TransformationMatrix.d.ts +1 -1
- package/dist/types/src/models/exports.d.ts +15 -0
- package/dist/types/src/models/segments/AbstractSegment.d.ts +25 -0
- package/dist/types/{models → src/models}/segments/Arc.d.ts +4 -4
- package/dist/types/{models → src/models}/segments/CubicBezier.d.ts +4 -4
- package/dist/types/{models → src/models}/segments/EllipseArc.d.ts +5 -5
- package/dist/types/{models → src/models}/segments/Line.d.ts +4 -4
- package/dist/types/{models → src/models}/segments/QuadraticBezier.d.ts +4 -4
- package/dist/types/{models → src/models}/segments/Segment.d.ts +4 -4
- package/dist/types/{models → src/models}/segments/utils/deCasteljau.d.ts +1 -1
- package/dist/types/src/models/segments/utils/isSegment.d.ts +8 -0
- package/dist/types/{models → src/models}/utils/Transformable.d.ts +2 -2
- package/dist/types/{offsetOperations.d.ts → src/offsetOperations.d.ts} +4 -4
- package/dist/types/src/operations.d.ts +2 -0
- package/dist/types/src/utils/applyMixins.d.ts +1 -0
- package/dist/types/src/utils/listOfFigures.d.ts +4 -0
- package/dist/types/src/utils/projectPointOnLine.d.ts +3 -0
- package/dist/types/{utils → src/utils}/removeDuplicatePoints.d.ts +1 -1
- package/dist/types/{vectorOperations.d.ts → src/vectorOperations.d.ts} +1 -1
- package/package.json +33 -25
- package/dist/Diagram-8c3c5e1b.js +0 -5301
- package/dist/Diagram-8c3c5e1b.js.map +0 -1
- package/dist/Diagram-d8288579.cjs +0 -11
- package/dist/Diagram-d8288579.cjs.map +0 -1
- package/dist/draw-3ee546c3.cjs +0 -2
- package/dist/draw-3ee546c3.cjs.map +0 -1
- package/dist/draw-825692f1.js +0 -336
- package/dist/draw-825692f1.js.map +0 -1
- package/dist/types/algorithms/distances/lineArcDistance.d.ts +0 -3
- package/dist/types/algorithms/intersections/arcEllipseArcIntersection.d.ts +0 -3
- package/dist/types/algorithms/intersections/arcsCubicBezierIntersection.d.ts +0 -5
- package/dist/types/algorithms/intersections/arcsQuadraticBezierIntersection.d.ts +0 -5
- package/dist/types/algorithms/intersections/ellipseEllipseIntersection.d.ts +0 -4
- package/dist/types/algorithms/intersections/lineArcIntersection.d.ts +0 -4
- package/dist/types/algorithms/intersections/lineBezierIntersection.d.ts +0 -5
- package/dist/types/algorithms/intersections/lineEllipseArcIntersection.d.ts +0 -4
- package/dist/types/algorithms/intersections/rayIntersections.d.ts +0 -3
- package/dist/types/algorithms/simplify.d.ts +0 -3
- package/dist/types/api/drawShape.d.ts +0 -2
- package/dist/types/api/models.d.ts +0 -1
- package/dist/types/import/json/importJSON.d.ts +0 -9
- package/dist/types/models/exports.d.ts +0 -13
- package/dist/types/models/segments/utils/isSegment.d.ts +0 -8
- package/dist/types/operations.d.ts +0 -2
- package/dist/types/utils/listOfFigures.d.ts +0 -4
- package/dist/types/utils/projectPointOnLine.d.ts +0 -3
- /package/dist/types/{algorithms → src/algorithms}/optimisation/Brent.d.ts +0 -0
- /package/dist/types/{algorithms → src/algorithms}/optimisation/DiRect.d.ts +0 -0
- /package/dist/types/{algorithms → src/algorithms}/solvers/solvePolynomials.d.ts +0 -0
- /package/dist/types/{definitions.d.ts → src/definitions.d.ts} +0 -0
- /package/dist/types/{utils → src/utils}/allCombinations.d.ts +0 -0
- /package/dist/types/{utils → src/utils}/allPairs.d.ts +0 -0
- /package/dist/types/{utils → src/utils}/angularDistance.d.ts +0 -0
- /package/dist/types/{utils → src/utils}/range.d.ts +0 -0
- /package/dist/types/{utils → src/utils}/removeDuplicateValues.d.ts +0 -0
- /package/dist/types/{utils → src/utils}/unitAngle.d.ts +0 -0
- /package/dist/types/{utils → src/utils}/zip.d.ts +0 -0
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
import { Vector } from '../../definitions';
|
|
2
|
+
import { BoundingBox } from '../BoundingBox';
|
|
3
|
+
import { TransformationMatrix } from '../TransformationMatrix';
|
|
4
|
+
import { Transformable } from '../utils/Transformable';
|
|
5
|
+
export declare abstract class AbstractSegment<T extends AbstractSegment<T>> extends Transformable<T> {
|
|
6
|
+
firstPoint: Vector;
|
|
7
|
+
lastPoint: Vector;
|
|
8
|
+
constructor(firstPoint: Vector, lastPoint: Vector);
|
|
9
|
+
readonly precision: number;
|
|
10
|
+
abstract segmentType: string;
|
|
11
|
+
get repr(): string;
|
|
12
|
+
get info(): string;
|
|
13
|
+
abstract get midPoint(): Vector;
|
|
14
|
+
abstract get boundingBox(): BoundingBox;
|
|
15
|
+
abstract clone(): T;
|
|
16
|
+
abstract reverse(): T;
|
|
17
|
+
abstract isSame(other: AbstractSegment<any>): boolean;
|
|
18
|
+
abstract distanceFrom(element: Vector): number;
|
|
19
|
+
abstract isOnSegment(point: Vector): boolean;
|
|
20
|
+
abstract tangentAt(point: Vector): Vector;
|
|
21
|
+
abstract get tangentAtFirstPoint(): Vector;
|
|
22
|
+
abstract get tangentAtLastPoint(): Vector;
|
|
23
|
+
abstract splitAt(points: Vector[] | number[]): T[];
|
|
24
|
+
abstract transform(matrix: TransformationMatrix): T;
|
|
25
|
+
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
|
-
import { BoundingBox } from
|
|
2
|
-
import { Vector } from
|
|
3
|
-
import { TransformationMatrix } from
|
|
4
|
-
import { Segment, AbstractSegment } from
|
|
1
|
+
import { BoundingBox } from '../BoundingBox.js';
|
|
2
|
+
import { Vector } from '../../definitions.js';
|
|
3
|
+
import { TransformationMatrix } from '../TransformationMatrix.js';
|
|
4
|
+
import { Segment, AbstractSegment } from './Segment.js';
|
|
5
5
|
export declare class Arc extends AbstractSegment<Arc> {
|
|
6
6
|
segmentType: string;
|
|
7
7
|
readonly center: Vector;
|
|
@@ -1,7 +1,7 @@
|
|
|
1
|
-
import { Vector } from
|
|
2
|
-
import { BoundingBox } from
|
|
3
|
-
import { TransformationMatrix } from
|
|
4
|
-
import { AbstractSegment } from
|
|
1
|
+
import { Vector } from '../../definitions.js';
|
|
2
|
+
import { BoundingBox } from '../BoundingBox.js';
|
|
3
|
+
import { TransformationMatrix } from '../TransformationMatrix.js';
|
|
4
|
+
import { AbstractSegment } from './Segment.js';
|
|
5
5
|
export declare class CubicBezier extends AbstractSegment<CubicBezier> {
|
|
6
6
|
segmentType: string;
|
|
7
7
|
readonly firstControlPoint: Vector;
|
|
@@ -1,8 +1,8 @@
|
|
|
1
|
-
import { BoundingBox } from
|
|
2
|
-
import { Vector } from
|
|
3
|
-
import { TransformationMatrix } from
|
|
4
|
-
import { AbstractSegment } from
|
|
5
|
-
import { Arc } from
|
|
1
|
+
import { BoundingBox } from '../BoundingBox.js';
|
|
2
|
+
import { Vector } from '../../definitions.js';
|
|
3
|
+
import { TransformationMatrix } from '../TransformationMatrix.js';
|
|
4
|
+
import { AbstractSegment } from './Segment.js';
|
|
5
|
+
import { Arc } from './Arc.js';
|
|
6
6
|
export declare class EllipseArc extends AbstractSegment<EllipseArc> {
|
|
7
7
|
segmentType: string;
|
|
8
8
|
precision: number;
|
|
@@ -1,7 +1,7 @@
|
|
|
1
|
-
import { BoundingBox } from
|
|
2
|
-
import { Vector } from
|
|
3
|
-
import { TransformationMatrix } from
|
|
4
|
-
import { Segment, AbstractSegment } from
|
|
1
|
+
import { BoundingBox } from '../BoundingBox.js';
|
|
2
|
+
import { Vector } from '../../definitions.js';
|
|
3
|
+
import { TransformationMatrix } from '../TransformationMatrix.js';
|
|
4
|
+
import { Segment, AbstractSegment } from './Segment.js';
|
|
5
5
|
export declare class Line extends AbstractSegment<Line> {
|
|
6
6
|
segmentType: string;
|
|
7
7
|
isValidParameter(t: number): boolean;
|
|
@@ -1,7 +1,7 @@
|
|
|
1
|
-
import { Vector } from
|
|
2
|
-
import { BoundingBox } from
|
|
3
|
-
import { TransformationMatrix } from
|
|
4
|
-
import { AbstractSegment } from
|
|
1
|
+
import { Vector } from '../../definitions.js';
|
|
2
|
+
import { BoundingBox } from '../BoundingBox.js';
|
|
3
|
+
import { TransformationMatrix } from '../TransformationMatrix.js';
|
|
4
|
+
import { AbstractSegment } from './Segment.js';
|
|
5
5
|
export declare class QuadraticBezier extends AbstractSegment<QuadraticBezier> {
|
|
6
6
|
segmentType: string;
|
|
7
7
|
readonly controlPoint: Vector;
|
|
@@ -1,7 +1,7 @@
|
|
|
1
|
-
import
|
|
2
|
-
import { BoundingBox } from
|
|
3
|
-
import
|
|
4
|
-
import { Transformable } from
|
|
1
|
+
import { Vector } from '../../definitions.js';
|
|
2
|
+
import { BoundingBox } from '../BoundingBox.js';
|
|
3
|
+
import { TransformationMatrix } from '../TransformationMatrix.js';
|
|
4
|
+
import { Transformable } from '../utils/Transformable.js';
|
|
5
5
|
export type Segment = AbstractSegment<any>;
|
|
6
6
|
export declare abstract class AbstractSegment<T extends AbstractSegment<T>> extends Transformable<T> {
|
|
7
7
|
firstPoint: Vector;
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import { Arc } from '../Arc.js';
|
|
2
|
+
import { CubicBezier } from '../CubicBezier.js';
|
|
3
|
+
import { EllipseArc } from '../EllipseArc.js';
|
|
4
|
+
import { Line } from '../Line.js';
|
|
5
|
+
import { QuadraticBezier } from '../QuadraticBezier.js';
|
|
6
|
+
import { Segment } from '../Segment.js';
|
|
7
|
+
export declare const ALL_SEGMENT_CLASSES: (typeof Line | typeof Arc | typeof EllipseArc | typeof CubicBezier | typeof QuadraticBezier)[];
|
|
8
|
+
export declare function isSegment(s: unknown): s is Segment;
|
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import { Vector } from
|
|
2
|
-
import { TransformationMatrix } from
|
|
1
|
+
import { Vector } from '../../definitions.js';
|
|
2
|
+
import { TransformationMatrix } from '../TransformationMatrix.js';
|
|
3
3
|
export declare abstract class Transformable<T> {
|
|
4
4
|
abstract transform(matrix: TransformationMatrix): T;
|
|
5
5
|
translateX(x: number): T;
|
|
@@ -1,7 +1,7 @@
|
|
|
1
|
-
import { Strand } from
|
|
2
|
-
import { Diagram } from
|
|
3
|
-
import { Figure } from
|
|
4
|
-
import { Loop } from
|
|
1
|
+
import { Strand } from './models/Strand.js';
|
|
2
|
+
import { Diagram } from './models/Diagram.js';
|
|
3
|
+
import { Figure } from './models/Figure.js';
|
|
4
|
+
import { Loop } from './models/Loop.js';
|
|
5
5
|
export declare function offset(shape: Diagram | Figure | Loop, offsetDistance: number): Diagram;
|
|
6
6
|
export declare function outlineStroke(shape: Diagram | Figure | Loop | Strand, outlineDistance: number, { endCap }?: {
|
|
7
7
|
endCap?: "butt" | "round";
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export declare function applyMixins(derivedCtor: any, constructors: any[]): void;
|
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
import
|
|
1
|
+
import { Vector } from '../definitions.js';
|
|
2
2
|
export default function removeDuplicatePoints(points: Vector[], precision?: number): Vector[];
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "pantograph2d",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.8.1",
|
|
4
4
|
"description": "Pantograph, the pure JS 2D CAD library",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "./dist/pantograph.cjs",
|
|
@@ -8,36 +8,45 @@
|
|
|
8
8
|
"files": [
|
|
9
9
|
"dist"
|
|
10
10
|
],
|
|
11
|
-
"types": "./dist/types/main.d.ts",
|
|
11
|
+
"types": "./dist/types/src/main.d.ts",
|
|
12
12
|
"exports": {
|
|
13
13
|
".": {
|
|
14
14
|
"import": {
|
|
15
15
|
"default": "./dist/pantograph.js",
|
|
16
|
-
"types": "./dist/types/main.d.ts"
|
|
16
|
+
"types": "./dist/types/src/main.d.ts"
|
|
17
17
|
},
|
|
18
18
|
"require": {
|
|
19
19
|
"default": "./dist/pantograph.cjs",
|
|
20
|
-
"types": "./dist/types/main.d.ts"
|
|
20
|
+
"types": "./dist/types/src/main.d.ts"
|
|
21
21
|
}
|
|
22
22
|
},
|
|
23
23
|
"./models": {
|
|
24
24
|
"import": {
|
|
25
25
|
"default": "./dist/pantograph/models.js",
|
|
26
|
-
"types": "./dist/types/api/models.d.ts"
|
|
26
|
+
"types": "./dist/types/src/api/models.d.ts"
|
|
27
27
|
},
|
|
28
28
|
"require": {
|
|
29
29
|
"default": "./dist/pantograph/models.cjs",
|
|
30
|
-
"types": "./dist/types/api/drawShape.d.ts"
|
|
30
|
+
"types": "./dist/types/src/api/drawShape.d.ts"
|
|
31
31
|
}
|
|
32
32
|
},
|
|
33
33
|
"./drawShape": {
|
|
34
34
|
"import": {
|
|
35
35
|
"default": "./dist/pantograph/drawShape.js",
|
|
36
|
-
"types": "./dist/types/api/drawShape.d.ts"
|
|
36
|
+
"types": "./dist/types/src/api/drawShape.d.ts"
|
|
37
37
|
},
|
|
38
38
|
"require": {
|
|
39
39
|
"default": "./dist/pantograph/drawShape.cjs"
|
|
40
40
|
}
|
|
41
|
+
},
|
|
42
|
+
"./svg": {
|
|
43
|
+
"import": {
|
|
44
|
+
"default": "./dist/pantograph/svg.js",
|
|
45
|
+
"types": "./dist/types/src/api/svg.d.ts"
|
|
46
|
+
},
|
|
47
|
+
"require": {
|
|
48
|
+
"default": "./dist/pantograph/svg.cjs"
|
|
49
|
+
}
|
|
41
50
|
}
|
|
42
51
|
},
|
|
43
52
|
"scripts": {
|
|
@@ -52,28 +61,27 @@
|
|
|
52
61
|
"svg"
|
|
53
62
|
],
|
|
54
63
|
"author": "Steve Genoud",
|
|
55
|
-
"license": "
|
|
64
|
+
"license": "MIT",
|
|
56
65
|
"devDependencies": {
|
|
57
|
-
"@microsoft/api-extractor": "^7.
|
|
58
|
-
"@types/node": "^
|
|
59
|
-
"@types/xmldom": "^0.1.
|
|
60
|
-
"@typescript-eslint/eslint-plugin": "^
|
|
61
|
-
"@typescript-eslint/parser": "^
|
|
62
|
-
"eslint": "^
|
|
63
|
-
"prettier": "^
|
|
64
|
-
"terminal-image": "^
|
|
65
|
-
"typescript": "^5.
|
|
66
|
-
"vite": "^4.
|
|
67
|
-
"vite-plugin-dts": "^
|
|
68
|
-
"vitest": "^
|
|
66
|
+
"@microsoft/api-extractor": "^7.47.11",
|
|
67
|
+
"@types/node": "^22.7.9",
|
|
68
|
+
"@types/xmldom": "^0.1.34",
|
|
69
|
+
"@typescript-eslint/eslint-plugin": "^8.11.0",
|
|
70
|
+
"@typescript-eslint/parser": "^8.11.0",
|
|
71
|
+
"eslint": "^9.13.0",
|
|
72
|
+
"prettier": "^3.3.3",
|
|
73
|
+
"terminal-image": "^3.0.0",
|
|
74
|
+
"typescript": "^5.6.3",
|
|
75
|
+
"vite": "^5.4.10",
|
|
76
|
+
"vite-plugin-dts": "^4.3.0",
|
|
77
|
+
"vitest": "^2.1.3",
|
|
69
78
|
"xmldom": "^0.6.0"
|
|
70
79
|
},
|
|
71
|
-
"gitHead": "
|
|
80
|
+
"gitHead": "ef212f7755ea43c8e6faaa861e661e85a31b7917",
|
|
72
81
|
"dependencies": {
|
|
73
|
-
"
|
|
74
|
-
"
|
|
75
|
-
"
|
|
76
|
-
"ml-matrix": "^6.10.4",
|
|
82
|
+
"@types/flatbush": "^4.2.2",
|
|
83
|
+
"flatbush": "^4.4.0",
|
|
84
|
+
"ml-matrix": "^6.12.0",
|
|
77
85
|
"path-data-parser": "^0.1.0"
|
|
78
86
|
}
|
|
79
87
|
}
|