@thi.ng/blurhash 1.0.23 → 1.0.28

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 -42
package/package.json CHANGED
@@ -1,98 +1,98 @@
1
1
  {
2
- "name": "@thi.ng/blurhash",
3
- "version": "1.0.23",
4
- "description": "Fast, optimized TS implementation of the Wolt Blurhash algorithm",
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/blurhash",
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.2",
43
- "@thi.ng/base-n": "^2.7.48",
44
- "@thi.ng/canvas": "^1.0.23",
45
- "@thi.ng/errors": "^2.5.42",
46
- "@thi.ng/math": "^5.12.0"
47
- },
48
- "devDependencies": {
49
- "esbuild": "^0.25.9",
50
- "tools": "^0.0.1",
51
- "typedoc": "^0.28.12",
52
- "typescript": "^5.9.2"
53
- },
54
- "keywords": [
55
- "blur",
56
- "blurhash",
57
- "canvas",
58
- "color",
59
- "decode",
60
- "encode",
61
- "image",
62
- "pixel",
63
- "typescript"
64
- ],
65
- "publishConfig": {
66
- "access": "public"
67
- },
68
- "browser": {
69
- "process": false,
70
- "setTimeout": false
71
- },
72
- "engines": {
73
- "node": ">=18"
74
- },
75
- "files": [
76
- "./*.js",
77
- "./*.d.ts",
78
- "internal"
79
- ],
80
- "exports": {
81
- ".": {
82
- "default": "./index.js"
83
- },
84
- "./decode": {
85
- "default": "./decode.js"
86
- },
87
- "./encode": {
88
- "default": "./encode.js"
89
- }
90
- },
91
- "thi.ng": {
92
- "alias": "bhash",
93
- "status": "alpha",
94
- "year": 2023,
95
- "screenshot": "blurhash/thumb.png"
96
- },
97
- "gitHead": "e215a3e8de3809736ba0042c93bd8703a5a1a337\n"
98
- }
2
+ "name": "@thi.ng/blurhash",
3
+ "version": "1.0.28",
4
+ "description": "Fast, optimized TS implementation of the Wolt Blurhash algorithm",
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/blurhash",
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.7",
43
+ "@thi.ng/base-n": "^2.7.53",
44
+ "@thi.ng/canvas": "^1.0.28",
45
+ "@thi.ng/errors": "^2.5.47",
46
+ "@thi.ng/math": "^5.13.4"
47
+ },
48
+ "devDependencies": {
49
+ "esbuild": "^0.25.11",
50
+ "tools": "workspace:^",
51
+ "typedoc": "^0.28.14",
52
+ "typescript": "^5.9.3"
53
+ },
54
+ "keywords": [
55
+ "blur",
56
+ "blurhash",
57
+ "canvas",
58
+ "color",
59
+ "decode",
60
+ "encode",
61
+ "image",
62
+ "pixel",
63
+ "typescript"
64
+ ],
65
+ "publishConfig": {
66
+ "access": "public"
67
+ },
68
+ "browser": {
69
+ "process": false,
70
+ "setTimeout": false
71
+ },
72
+ "engines": {
73
+ "node": ">=18"
74
+ },
75
+ "files": [
76
+ "./*.js",
77
+ "./*.d.ts",
78
+ "internal"
79
+ ],
80
+ "exports": {
81
+ ".": {
82
+ "default": "./index.js"
83
+ },
84
+ "./decode": {
85
+ "default": "./decode.js"
86
+ },
87
+ "./encode": {
88
+ "default": "./encode.js"
89
+ }
90
+ },
91
+ "thi.ng": {
92
+ "alias": "bhash",
93
+ "status": "alpha",
94
+ "year": 2023,
95
+ "screenshot": "blurhash/thumb.png"
96
+ },
97
+ "gitHead": "d977f819bcafdcb2b24c45f8d01a167fe29fc85a\n"
98
+ }
package/CHANGELOG.md DELETED
@@ -1,42 +0,0 @@
1
- # Change Log
2
-
3
- - **Last updated**: 2025-09-01T16:38:35Z
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
- ### [0.2.8](https://github.com/thi-ng/umbrella/tree/@thi.ng/blurhash@0.2.8) (2024-10-05)
15
-
16
- #### ♻️ Refactoring
17
-
18
- - add explicit type casts (TS5.6.2) ([dcbdd60](https://github.com/thi-ng/umbrella/commit/dcbdd60))
19
-
20
- ## [0.2.0](https://github.com/thi-ng/umbrella/tree/@thi.ng/blurhash@0.2.0) (2024-08-01)
21
-
22
- #### 🚀 Features
23
-
24
- - support OffscreenCanvas in encodeFromCanvas function to enhance compatibility with different rendering contexts ([294b650](https://github.com/thi-ng/umbrella/commit/294b650))
25
-
26
- ### [0.1.11](https://github.com/thi-ng/umbrella/tree/@thi.ng/blurhash@0.1.11) (2024-02-27)
27
-
28
- #### 🩹 Bug fixes
29
-
30
- - fix imports ([2306883](https://github.com/thi-ng/umbrella/commit/2306883))
31
-
32
- ### [0.1.5](https://github.com/thi-ng/umbrella/tree/@thi.ng/blurhash@0.1.5) (2024-02-06)
33
-
34
- #### ♻️ Refactoring
35
-
36
- - update base83 handling ([f7fd4c9](https://github.com/thi-ng/umbrella/commit/f7fd4c9))
37
-
38
- ## [0.1.0](https://github.com/thi-ng/umbrella/tree/@thi.ng/blurhash@0.1.0) (2024-01-26)
39
-
40
- #### 🚀 Features
41
-
42
- - import as new pkg ([5d39cda](https://github.com/thi-ng/umbrella/commit/5d39cda))