@thi.ng/rasterize 1.0.109 → 1.0.111
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.
- package/CHANGELOG.md +1 -1
- package/README.md +1 -1
- package/package.json +20 -15
package/CHANGELOG.md
CHANGED
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.
|
|
4
|
-
"description": "2D shape drawing & rasterization",
|
|
3
|
+
"version": "1.0.111",
|
|
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.
|
|
40
|
-
"@thi.ng/checks": "^3.6.
|
|
41
|
-
"@thi.ng/equiv": "^2.1.
|
|
42
|
-
"@thi.ng/grid-iterators": "^4.0.
|
|
43
|
-
"@thi.ng/porter-duff": "^2.1.
|
|
44
|
-
"@thi.ng/random": "^4.0.
|
|
45
|
-
"@thi.ng/transducers": "^9.0
|
|
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.83",
|
|
43
|
+
"@thi.ng/porter-duff": "^2.1.86",
|
|
44
|
+
"@thi.ng/random": "^4.0.2",
|
|
45
|
+
"@thi.ng/transducers": "^9.1.0"
|
|
46
46
|
},
|
|
47
47
|
"devDependencies": {
|
|
48
|
-
"@microsoft/api-extractor": "^7.47.
|
|
48
|
+
"@microsoft/api-extractor": "^7.47.5",
|
|
49
49
|
"esbuild": "^0.23.0",
|
|
50
|
-
"typedoc": "^0.26.
|
|
51
|
-
"typescript": "^5.5.
|
|
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
|
-
"
|
|
58
|
+
"drawing",
|
|
59
59
|
"floodfill",
|
|
60
60
|
"grid",
|
|
61
|
+
"iterator",
|
|
61
62
|
"line",
|
|
62
63
|
"pattern",
|
|
63
|
-
"
|
|
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": "
|
|
127
|
+
"gitHead": "e914ebbd81c56783c39cf746548c547cbacadc96\n"
|
|
123
128
|
}
|