forked from ianmackenzie/elm-geometry
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathelm.json
64 lines (64 loc) · 1.75 KB
/
elm.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
55
56
57
58
59
60
61
62
63
64
{
"type": "package",
"name": "ianmackenzie/elm-geometry",
"summary": "2D/3D geometric data types and operations",
"license": "MPL-2.0",
"version": "3.3.0",
"exposed-modules": [
"Arc2d",
"Arc3d",
"ArcLengthParameterization",
"Axis2d",
"Axis3d",
"Block3d",
"BoundingBox2d",
"BoundingBox3d",
"Circle2d",
"Circle3d",
"CubicSpline2d",
"CubicSpline3d",
"Cylinder3d",
"DelaunayTriangulation2d",
"Direction2d",
"Direction3d",
"Ellipse2d",
"EllipticalArc2d",
"Frame2d",
"Frame3d",
"LineSegment2d",
"LineSegment3d",
"Plane3d",
"Point2d",
"Point3d",
"Polygon2d",
"Polyline2d",
"Polyline3d",
"QuadraticSpline2d",
"QuadraticSpline3d",
"Rectangle2d",
"Rectangle3d",
"SketchPlane3d",
"Sphere3d",
"SweptAngle",
"Triangle2d",
"Triangle3d",
"Vector2d",
"Vector3d",
"VoronoiDiagram2d"
],
"elm-version": "0.19.0 <= v < 0.20.0",
"dependencies": {
"elm/core": "1.0.0 <= v < 2.0.0",
"ianmackenzie/elm-1d-parameter": "1.0.1 <= v < 2.0.0",
"ianmackenzie/elm-float-extra": "1.1.0 <= v < 2.0.0",
"ianmackenzie/elm-interval": "2.0.0 <= v < 3.0.0",
"ianmackenzie/elm-triangular-mesh": "1.0.2 <= v < 2.0.0",
"ianmackenzie/elm-units": "2.2.0 <= v < 3.0.0",
"ianmackenzie/elm-units-interval": "1.0.0 <= v < 2.0.0"
},
"test-dependencies": {
"elm/random": "1.0.0 <= v < 2.0.0",
"elm-community/list-extra": "8.0.0 <= v < 9.0.0",
"elm-explorations/test": "1.1.0 <= v < 2.0.0"
}
}