@thi.ng/rasterize 1.0.108 → 1.0.110

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 +20 -15
package/CHANGELOG.md CHANGED
@@ -1,6 +1,6 @@
1
1
  # Change Log
2
2
 
3
- - **Last updated**: 2024-07-22T13:15:57Z
3
+ - **Last updated**: 2024-08-10T15:03:07Z
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
@@ -32,7 +32,7 @@
32
32
 
33
33
  ## About
34
34
 
35
- 2D shape drawing & rasterization.
35
+ Headless 2D shape drawing, filling & rasterization for arbitrary targets/purposes (no canvas required).
36
36
 
37
37
  The functions in this package can be used with any
38
38
  [`IGrid2D`](https://docs.thi.ng/umbrella/api/interfaces/IGrid2D.html) compatible
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@thi.ng/rasterize",
3
- "version": "1.0.108",
4
- "description": "2D shape drawing & rasterization",
3
+ "version": "1.0.110",
4
+ "description": "Headless 2D shape drawing, filling & rasterization for arbitrary targets/purposes (no canvas required)",
5
5
  "type": "module",
6
6
  "module": "./index.js",
7
7
  "typings": "./index.d.ts",
@@ -36,32 +36,37 @@
36
36
  "tool:tangle": "../../node_modules/.bin/tangle src/**/*.ts"
37
37
  },
38
38
  "dependencies": {
39
- "@thi.ng/api": "^8.11.7",
40
- "@thi.ng/checks": "^3.6.9",
41
- "@thi.ng/equiv": "^2.1.63",
42
- "@thi.ng/grid-iterators": "^4.0.80",
43
- "@thi.ng/porter-duff": "^2.1.85",
44
- "@thi.ng/random": "^4.0.0",
45
- "@thi.ng/transducers": "^9.0.11"
39
+ "@thi.ng/api": "^8.11.8",
40
+ "@thi.ng/checks": "^3.6.10",
41
+ "@thi.ng/equiv": "^2.1.64",
42
+ "@thi.ng/grid-iterators": "^4.0.82",
43
+ "@thi.ng/porter-duff": "^2.1.86",
44
+ "@thi.ng/random": "^4.0.2",
45
+ "@thi.ng/transducers": "^9.0.13"
46
46
  },
47
47
  "devDependencies": {
48
- "@microsoft/api-extractor": "^7.47.0",
48
+ "@microsoft/api-extractor": "^7.47.5",
49
49
  "esbuild": "^0.23.0",
50
- "typedoc": "^0.26.3",
51
- "typescript": "^5.5.3"
50
+ "typedoc": "^0.26.5",
51
+ "typescript": "^5.5.4"
52
52
  },
53
53
  "keywords": [
54
54
  "2d",
55
55
  "bitmap",
56
56
  "circle",
57
57
  "clipping",
58
- "draw",
58
+ "drawing",
59
59
  "floodfill",
60
60
  "grid",
61
+ "iterator",
61
62
  "line",
62
63
  "pattern",
63
- "shape",
64
+ "pixel",
65
+ "polygon",
66
+ "polyline",
64
67
  "rect",
68
+ "shader",
69
+ "shape",
65
70
  "typescript"
66
71
  ],
67
72
  "publishConfig": {
@@ -119,5 +124,5 @@
119
124
  "status": "alpha",
120
125
  "year": 2021
121
126
  },
122
- "gitHead": "324d6b7dbf31558329e9fb6452e29b2f7db9c61a\n"
127
+ "gitHead": "ec78f98d015e4d214a0b840e72e497407807daf3\n"
123
128
  }