forked from ianmackenzie/elm-geometry
-
Notifications
You must be signed in to change notification settings - Fork 0
/
elm-package.json
54 lines (54 loc) · 1.39 KB
/
elm-package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
{
"version": "3.0.1",
"summary": "2D/3D geometric data types and operations",
"repository": "https://github.com/opensolid/geometry.git",
"license": "MPL-2.0",
"source-directories": [
"src"
],
"exposed-modules": [
"Arc.SweptAngle",
"Arc2d",
"Arc3d",
"Axis2d",
"Axis3d",
"BoundingBox2d",
"BoundingBox3d",
"Circle2d",
"Circle3d",
"CubicSpline2d",
"CubicSpline3d",
"Curve.ArcLengthParameterization",
"Curve.ParameterValue",
"Direction2d",
"Direction3d",
"Ellipse2d",
"EllipticalArc2d",
"Frame2d",
"Frame3d",
"LineSegment2d",
"LineSegment3d",
"Plane3d",
"Point2d",
"Point3d",
"Polygon2d",
"Polyline2d",
"Polyline3d",
"QuadraticSpline2d",
"QuadraticSpline3d",
"SketchPlane3d",
"Sphere3d",
"Triangle2d",
"Triangle3d",
"Vector2d",
"Vector3d"
],
"dependencies": {
"Skinney/elm-array-exploration": "2.0.5 <= v < 3.0.0",
"elm-lang/core": "5.0.0 <= v < 6.0.0",
"ianmackenzie/elm-float-extra": "1.0.0 <= v < 2.0.0",
"ianmackenzie/elm-interval": "1.0.0 <= v < 2.0.0",
"ianmackenzie/elm-triangular-mesh": "1.0.0 <= v < 2.0.0"
},
"elm-version": "0.18.0 <= v < 0.19.0"
}