@thi.ng/geom-voronoi 2.3.136 → 2.3.141

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 (2) hide show
  1. package/package.json +97 -97
  2. package/CHANGELOG.md +0 -48
package/package.json CHANGED
@@ -1,98 +1,98 @@
1
1
  {
2
- "name": "@thi.ng/geom-voronoi",
3
- "version": "2.3.136",
4
- "description": "Fast, incremental 2D Delaunay & Voronoi mesh implementation",
5
- "type": "module",
6
- "module": "./index.js",
7
- "typings": "./index.d.ts",
8
- "sideEffects": false,
9
- "repository": {
10
- "type": "git",
11
- "url": "https://github.com/thi-ng/umbrella.git"
12
- },
13
- "homepage": "https://thi.ng/geom-voronoi",
14
- "funding": [
15
- {
16
- "type": "github",
17
- "url": "https://github.com/sponsors/postspectacular"
18
- },
19
- {
20
- "type": "patreon",
21
- "url": "https://patreon.com/thing_umbrella"
22
- },
23
- {
24
- "type": "liberapay",
25
- "url": "https://liberapay.com/thi.ng"
26
- }
27
- ],
28
- "author": "Karsten Schmidt (https://thi.ng)",
29
- "license": "Apache-2.0",
30
- "scripts": {
31
- "build": "yarn build:esbuild && yarn build:decl",
32
- "build:decl": "tsc --declaration --emitDeclarationOnly",
33
- "build:esbuild": "esbuild --format=esm --platform=neutral --target=es2022 --tsconfig=tsconfig.json --outdir=. src/**/*.ts",
34
- "clean": "bun ../../tools/src/clean-package.ts",
35
- "doc": "typedoc --options ../../typedoc.json --out doc src/index.ts",
36
- "doc:readme": "bun ../../tools/src/module-stats.ts && bun ../../tools/src/readme.ts",
37
- "pub": "yarn npm publish --access public",
38
- "test": "bun test",
39
- "tool:tangle": "../../node_modules/.bin/tangle src/**/*.ts"
40
- },
41
- "dependencies": {
42
- "@thi.ng/api": "^8.12.1",
43
- "@thi.ng/bitfield": "^2.4.12",
44
- "@thi.ng/checks": "^3.7.17",
45
- "@thi.ng/geom-clip-line": "^2.3.151",
46
- "@thi.ng/geom-clip-poly": "^2.1.193",
47
- "@thi.ng/geom-isec": "^4.0.61",
48
- "@thi.ng/geom-poly-utils": "^3.0.61",
49
- "@thi.ng/math": "^5.11.35",
50
- "@thi.ng/quad-edge": "^3.1.99",
51
- "@thi.ng/vectors": "^8.6.5"
52
- },
53
- "devDependencies": {
54
- "esbuild": "^0.25.8",
55
- "typedoc": "^0.28.9",
56
- "typescript": "^5.9.2"
57
- },
58
- "keywords": [
59
- "2d",
60
- "bbox",
61
- "clipping",
62
- "datastructure",
63
- "delaunay",
64
- "dual",
65
- "edges",
66
- "geometry",
67
- "graph",
68
- "incremental",
69
- "mesh",
70
- "quadedge",
71
- "typescript",
72
- "voronoi"
73
- ],
74
- "publishConfig": {
75
- "access": "public"
76
- },
77
- "engines": {
78
- "node": ">=18"
79
- },
80
- "files": [
81
- "./*.js",
82
- "./*.d.ts"
83
- ],
84
- "exports": {
85
- ".": {
86
- "default": "./index.js"
87
- }
88
- },
89
- "thi.ng": {
90
- "parent": "@thi.ng/geom",
91
- "related": [
92
- "quad-edge"
93
- ],
94
- "tag": "voronoi",
95
- "year": 2016
96
- },
97
- "gitHead": "f6ebc1302dc9211d588293aa0897173c6e54f4e5\n"
98
- }
2
+ "name": "@thi.ng/geom-voronoi",
3
+ "version": "2.3.141",
4
+ "description": "Fast, incremental 2D Delaunay & Voronoi mesh implementation",
5
+ "type": "module",
6
+ "module": "./index.js",
7
+ "typings": "./index.d.ts",
8
+ "sideEffects": false,
9
+ "repository": {
10
+ "type": "git",
11
+ "url": "https://github.com/thi-ng/umbrella.git"
12
+ },
13
+ "homepage": "https://thi.ng/geom-voronoi",
14
+ "funding": [
15
+ {
16
+ "type": "github",
17
+ "url": "https://github.com/sponsors/postspectacular"
18
+ },
19
+ {
20
+ "type": "patreon",
21
+ "url": "https://patreon.com/thing_umbrella"
22
+ },
23
+ {
24
+ "type": "liberapay",
25
+ "url": "https://liberapay.com/thi.ng"
26
+ }
27
+ ],
28
+ "author": "Karsten Schmidt (https://thi.ng)",
29
+ "license": "Apache-2.0",
30
+ "scripts": {
31
+ "build": "yarn build:esbuild && yarn build:decl",
32
+ "build:decl": "tsc --declaration --emitDeclarationOnly",
33
+ "build:esbuild": "esbuild --format=esm --platform=neutral --target=es2022 --tsconfig=tsconfig.json --outdir=. src/**/*.ts",
34
+ "clean": "bun ../../tools/src/clean-package.ts",
35
+ "doc": "typedoc --options ../../typedoc.json --out doc src/index.ts",
36
+ "doc:readme": "bun ../../tools/src/module-stats.ts && bun ../../tools/src/readme.ts",
37
+ "pub": "npm publish --access public",
38
+ "test": "bun test",
39
+ "tool:tangle": "../../node_modules/.bin/tangle src/**/*.ts"
40
+ },
41
+ "dependencies": {
42
+ "@thi.ng/api": "^8.12.6",
43
+ "@thi.ng/bitfield": "^2.4.17",
44
+ "@thi.ng/checks": "^3.7.22",
45
+ "@thi.ng/geom-clip-line": "^2.3.156",
46
+ "@thi.ng/geom-clip-poly": "^2.1.198",
47
+ "@thi.ng/geom-isec": "^4.0.66",
48
+ "@thi.ng/geom-poly-utils": "^3.1.3",
49
+ "@thi.ng/math": "^5.13.3",
50
+ "@thi.ng/quad-edge": "^3.1.104",
51
+ "@thi.ng/vectors": "^8.6.10"
52
+ },
53
+ "devDependencies": {
54
+ "esbuild": "^0.25.11",
55
+ "typedoc": "^0.28.14",
56
+ "typescript": "^5.9.3"
57
+ },
58
+ "keywords": [
59
+ "2d",
60
+ "bbox",
61
+ "clipping",
62
+ "datastructure",
63
+ "delaunay",
64
+ "dual",
65
+ "edges",
66
+ "geometry",
67
+ "graph",
68
+ "incremental",
69
+ "mesh",
70
+ "quadedge",
71
+ "typescript",
72
+ "voronoi"
73
+ ],
74
+ "publishConfig": {
75
+ "access": "public"
76
+ },
77
+ "engines": {
78
+ "node": ">=18"
79
+ },
80
+ "files": [
81
+ "./*.js",
82
+ "./*.d.ts"
83
+ ],
84
+ "exports": {
85
+ ".": {
86
+ "default": "./index.js"
87
+ }
88
+ },
89
+ "thi.ng": {
90
+ "parent": "@thi.ng/geom",
91
+ "related": [
92
+ "quad-edge"
93
+ ],
94
+ "tag": "voronoi",
95
+ "year": 2016
96
+ },
97
+ "gitHead": "136a5e5ef0b69e82329db00d806c3c4e8f1aa063\n"
98
+ }
package/CHANGELOG.md DELETED
@@ -1,48 +0,0 @@
1
- # Change Log
2
-
3
- - **Last updated**: 2025-08-04T09:13:01Z
4
- - **Generator**: [thi.ng/monopub](https://thi.ng/monopub)
5
-
6
- All notable changes to this project will be documented in this file.
7
- Only versions published since **2022-01-01** are listed here.
8
- Please consult the Git history for older version information.
9
- See [Conventional Commits](https://conventionalcommits.org/) for commit guidelines.
10
-
11
- **Note:** Unlisted _patch_ versions only involve non-code or otherwise excluded changes
12
- and/or version bumps of transitive dependencies.
13
-
14
- ### [2.3.101](https://github.com/thi-ng/umbrella/tree/@thi.ng/geom-voronoi@2.3.101) (2025-01-14)
15
-
16
- #### ♻️ Refactoring
17
-
18
- - use optional chaining & nullish coalescing ([c5a0a13](https://github.com/thi-ng/umbrella/commit/c5a0a13))
19
-
20
- ### [2.3.75](https://github.com/thi-ng/umbrella/tree/@thi.ng/geom-voronoi@2.3.75) (2024-06-21)
21
-
22
- #### ♻️ Refactoring
23
-
24
- - enforce uniform naming convention of internal functions ([56992b2](https://github.com/thi-ng/umbrella/commit/56992b2))
25
-
26
- ### [2.3.64](https://github.com/thi-ng/umbrella/tree/@thi.ng/geom-voronoi@2.3.64) (2024-03-21)
27
-
28
- #### ♻️ Refactoring
29
-
30
- - minor internal update ([4ee398b](https://github.com/thi-ng/umbrella/commit/4ee398b))
31
-
32
- ### [2.3.29](https://github.com/thi-ng/umbrella/tree/@thi.ng/geom-voronoi@2.3.29) (2023-11-09)
33
-
34
- #### ♻️ Refactoring
35
-
36
- - update all tests (packages A-S) ([e3085e4](https://github.com/thi-ng/umbrella/commit/e3085e4))
37
-
38
- ## [2.3.0](https://github.com/thi-ng/umbrella/tree/@thi.ng/geom-voronoi@2.3.0) (2023-04-25)
39
-
40
- #### 🚀 Features
41
-
42
- - add delaunayQE/voronoiQE() methods ([c709053](https://github.com/thi-ng/umbrella/commit/c709053))
43
-
44
- ### [2.2.55](https://github.com/thi-ng/umbrella/tree/@thi.ng/geom-voronoi@2.2.55) (2023-03-27)
45
-
46
- #### ♻️ Refactoring
47
-
48
- - update imports (TS5.0) ([aa5da46](https://github.com/thi-ng/umbrella/commit/aa5da46))