@thi.ng/pixel-dither 1.1.154 → 1.1.156
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/atkinson.d.ts +1 -0
- package/burkes.d.ts +2 -2
- package/floyd-steinberg.d.ts +1 -0
- package/jarvis.d.ts +1 -0
- package/ordered.d.ts +1 -1
- package/package.json +7 -8
- package/sierra2.d.ts +2 -2
- package/stucki.d.ts +2 -2
package/CHANGELOG.md
CHANGED
package/README.md
CHANGED
|
@@ -7,7 +7,7 @@
|
|
|
7
7
|
[](https://mastodon.thi.ng/@toxi)
|
|
8
8
|
|
|
9
9
|
> [!NOTE]
|
|
10
|
-
> This is one of
|
|
10
|
+
> This is one of 201 standalone projects, maintained as part
|
|
11
11
|
> of the [@thi.ng/umbrella](https://github.com/thi-ng/umbrella/) monorepo
|
|
12
12
|
> and anti-framework.
|
|
13
13
|
>
|
package/atkinson.d.ts
CHANGED
package/burkes.d.ts
CHANGED
|
@@ -3,8 +3,8 @@ import type { DitherKernel } from "./api.js";
|
|
|
3
3
|
* Burkes dither kernel (similar/improved version of {@link STUCKI}).
|
|
4
4
|
*
|
|
5
5
|
* @remarks
|
|
6
|
-
*
|
|
7
|
-
*
|
|
6
|
+
* Reference:
|
|
7
|
+
* https://tannerhelland.com/2012/12/28/dithering-eleven-algorithms-source-code.html
|
|
8
8
|
*/
|
|
9
9
|
export declare const BURKES: DitherKernel;
|
|
10
10
|
//# sourceMappingURL=burkes.d.ts.map
|
package/floyd-steinberg.d.ts
CHANGED
package/jarvis.d.ts
CHANGED
package/ordered.d.ts
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@thi.ng/pixel-dither",
|
|
3
|
-
"version": "1.1.
|
|
3
|
+
"version": "1.1.156",
|
|
4
4
|
"description": "Extensible image dithering w/ various algorithm presets",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"module": "./index.js",
|
|
@@ -33,20 +33,19 @@
|
|
|
33
33
|
"build:esbuild": "esbuild --format=esm --platform=neutral --target=es2022 --tsconfig=tsconfig.json --outdir=. src/**/*.ts",
|
|
34
34
|
"clean": "bun ../../tools/src/clean-package.ts",
|
|
35
35
|
"doc": "typedoc --options ../../typedoc.json --out doc src/index.ts",
|
|
36
|
-
"doc:ae": "mkdir -p .ae/doc .ae/temp && api-extractor run --local --verbose",
|
|
37
36
|
"doc:readme": "bun ../../tools/src/module-stats.ts && bun ../../tools/src/readme.ts",
|
|
38
37
|
"pub": "yarn npm publish --access public",
|
|
39
38
|
"test": "bun test",
|
|
40
39
|
"tool:tangle": "../../node_modules/.bin/tangle src/**/*.ts"
|
|
41
40
|
},
|
|
42
41
|
"dependencies": {
|
|
43
|
-
"@thi.ng/checks": "^3.6.
|
|
44
|
-
"@thi.ng/math": "^5.11.
|
|
45
|
-
"@thi.ng/pixel": "^7.3.
|
|
42
|
+
"@thi.ng/checks": "^3.6.23",
|
|
43
|
+
"@thi.ng/math": "^5.11.20",
|
|
44
|
+
"@thi.ng/pixel": "^7.3.16"
|
|
46
45
|
},
|
|
47
46
|
"devDependencies": {
|
|
48
|
-
"esbuild": "^0.
|
|
49
|
-
"typedoc": "^0.27.
|
|
47
|
+
"esbuild": "^0.25.0",
|
|
48
|
+
"typedoc": "^0.27.7",
|
|
50
49
|
"typescript": "^5.7.3"
|
|
51
50
|
},
|
|
52
51
|
"keywords": [
|
|
@@ -115,5 +114,5 @@
|
|
|
115
114
|
"parent": "@thi.ng/pixel",
|
|
116
115
|
"year": 2021
|
|
117
116
|
},
|
|
118
|
-
"gitHead": "
|
|
117
|
+
"gitHead": "9a0b33253fef092aaf301decf6ecd54317874d4c\n"
|
|
119
118
|
}
|
package/sierra2.d.ts
CHANGED
|
@@ -3,8 +3,8 @@ import type { DitherKernel } from "./api.js";
|
|
|
3
3
|
* (Frankie) Sierra's 2-row dither kernel.
|
|
4
4
|
*
|
|
5
5
|
* @remarks
|
|
6
|
-
*
|
|
7
|
-
*
|
|
6
|
+
* Reference:
|
|
7
|
+
* https://tannerhelland.com/2012/12/28/dithering-eleven-algorithms-source-code.html
|
|
8
8
|
*/
|
|
9
9
|
export declare const SIERRA2: DitherKernel;
|
|
10
10
|
//# sourceMappingURL=sierra2.d.ts.map
|
package/stucki.d.ts
CHANGED
|
@@ -3,8 +3,8 @@ import type { DitherKernel } from "./api.js";
|
|
|
3
3
|
* Stucki dither kernel (similar/improved version of {@link JARVIS_JUDICE_NINKE}).
|
|
4
4
|
*
|
|
5
5
|
* @remarks
|
|
6
|
-
*
|
|
7
|
-
*
|
|
6
|
+
* Reference:
|
|
7
|
+
* https://tannerhelland.com/2012/12/28/dithering-eleven-algorithms-source-code.html
|
|
8
8
|
*/
|
|
9
9
|
export declare const STUCKI: DitherKernel;
|
|
10
10
|
//# sourceMappingURL=stucki.d.ts.map
|