@thi.ng/geom-hull 2.1.7 → 2.1.10

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.
Files changed (3) hide show
  1. package/CHANGELOG.md +1 -1
  2. package/README.md +1 -1
  3. package/package.json +10 -10
package/CHANGELOG.md CHANGED
@@ -1,6 +1,6 @@
1
1
  # Change Log
2
2
 
3
- - **Last updated**: 2021-12-13T10:26:00Z
3
+ - **Last updated**: 2022-04-07T14:17:30Z
4
4
  - **Generator**: [thi.ng/monopub](https://thi.ng/monopub)
5
5
 
6
6
  All notable changes to this project will be documented in this file.
package/README.md CHANGED
@@ -101,4 +101,4 @@ If this project contributes to an academic publication, please cite it as:
101
101
 
102
102
  ## License
103
103
 
104
- © 2013 - 2021 Karsten Schmidt // Apache Software License 2.0
104
+ © 2013 - 2022 Karsten Schmidt // Apache Software License 2.0
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@thi.ng/geom-hull",
3
- "version": "2.1.7",
3
+ "version": "2.1.10",
4
4
  "description": "Fast 2D convex hull (Graham Scan)",
5
5
  "type": "module",
6
6
  "module": "./index.js",
@@ -34,16 +34,16 @@
34
34
  "test": "testament test"
35
35
  },
36
36
  "dependencies": {
37
- "@thi.ng/math": "^5.2.0",
38
- "@thi.ng/vectors": "^7.4.3"
37
+ "@thi.ng/math": "^5.3.1",
38
+ "@thi.ng/vectors": "^7.5.2"
39
39
  },
40
40
  "devDependencies": {
41
- "@microsoft/api-extractor": "^7.19.2",
42
- "@thi.ng/testament": "^0.2.3",
41
+ "@microsoft/api-extractor": "^7.19.4",
42
+ "@thi.ng/testament": "^0.2.5",
43
43
  "rimraf": "^3.0.2",
44
44
  "tools": "^0.0.1",
45
- "typedoc": "^0.22.10",
46
- "typescript": "^4.5.3"
45
+ "typedoc": "^0.22.13",
46
+ "typescript": "^4.6.2"
47
47
  },
48
48
  "keywords": [
49
49
  "2d",
@@ -66,15 +66,15 @@
66
66
  ],
67
67
  "exports": {
68
68
  ".": {
69
- "import": "./index.js"
69
+ "default": "./index.js"
70
70
  },
71
71
  "./graham-scan": {
72
- "import": "./graham-scan.js"
72
+ "default": "./graham-scan.js"
73
73
  }
74
74
  },
75
75
  "thi.ng": {
76
76
  "parent": "@thi.ng/geom",
77
77
  "year": 2013
78
78
  },
79
- "gitHead": "1ba92c6b9509e74e509b4c0b875fc380a97bbbc1\n"
79
+ "gitHead": "542bf14bd0c7a56b4e6297718189eea772a824b7\n"
80
80
  }