@thi.ng/pixel-convolve 1.1.10 → 1.1.14

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 +106 -106
  2. package/CHANGELOG.md +0 -31
package/package.json CHANGED
@@ -1,107 +1,107 @@
1
1
  {
2
- "name": "@thi.ng/pixel-convolve",
3
- "version": "1.1.10",
4
- "description": "Extensible bitmap image convolution, kernel presets, normal map & image pyramid generation",
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/pixel-convolve",
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/checks": "^3.7.18",
44
- "@thi.ng/errors": "^2.5.42",
45
- "@thi.ng/math": "^5.12.0",
46
- "@thi.ng/pixel": "^7.5.10"
47
- },
48
- "devDependencies": {
49
- "esbuild": "^0.25.9",
50
- "typedoc": "^0.28.12",
51
- "typescript": "^5.9.2"
52
- },
53
- "keywords": [
54
- "blur",
55
- "channel",
56
- "convolution",
57
- "edge",
58
- "float",
59
- "gaussian",
60
- "kernel",
61
- "mean",
62
- "normal",
63
- "pixel",
64
- "pool",
65
- "pyramid",
66
- "resize",
67
- "sample",
68
- "sharpen",
69
- "typescript"
70
- ],
71
- "publishConfig": {
72
- "access": "public"
73
- },
74
- "browser": {
75
- "process": false,
76
- "setTimeout": false
77
- },
78
- "engines": {
79
- "node": ">=18"
80
- },
81
- "files": [
82
- "./*.js",
83
- "./*.d.ts"
84
- ],
85
- "exports": {
86
- ".": {
87
- "default": "./index.js"
88
- },
89
- "./api": {
90
- "default": "./api.js"
91
- },
92
- "./convolve": {
93
- "default": "./convolve.js"
94
- },
95
- "./normal-map": {
96
- "default": "./normal-map.js"
97
- },
98
- "./pyramid": {
99
- "default": "./pyramid.js"
100
- }
101
- },
102
- "thi.ng": {
103
- "parent": "@thi.ng/pixel",
104
- "year": 2021
105
- },
106
- "gitHead": "e215a3e8de3809736ba0042c93bd8703a5a1a337\n"
107
- }
2
+ "name": "@thi.ng/pixel-convolve",
3
+ "version": "1.1.14",
4
+ "description": "Extensible bitmap image convolution, kernel presets, normal map & image pyramid generation",
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/pixel-convolve",
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/checks": "^3.7.22",
44
+ "@thi.ng/errors": "^2.5.46",
45
+ "@thi.ng/math": "^5.13.3",
46
+ "@thi.ng/pixel": "^7.5.14"
47
+ },
48
+ "devDependencies": {
49
+ "esbuild": "^0.25.11",
50
+ "typedoc": "^0.28.14",
51
+ "typescript": "^5.9.3"
52
+ },
53
+ "keywords": [
54
+ "blur",
55
+ "channel",
56
+ "convolution",
57
+ "edge",
58
+ "float",
59
+ "gaussian",
60
+ "kernel",
61
+ "mean",
62
+ "normal",
63
+ "pixel",
64
+ "pool",
65
+ "pyramid",
66
+ "resize",
67
+ "sample",
68
+ "sharpen",
69
+ "typescript"
70
+ ],
71
+ "publishConfig": {
72
+ "access": "public"
73
+ },
74
+ "browser": {
75
+ "process": false,
76
+ "setTimeout": false
77
+ },
78
+ "engines": {
79
+ "node": ">=18"
80
+ },
81
+ "files": [
82
+ "./*.js",
83
+ "./*.d.ts"
84
+ ],
85
+ "exports": {
86
+ ".": {
87
+ "default": "./index.js"
88
+ },
89
+ "./api": {
90
+ "default": "./api.js"
91
+ },
92
+ "./convolve": {
93
+ "default": "./convolve.js"
94
+ },
95
+ "./normal-map": {
96
+ "default": "./normal-map.js"
97
+ },
98
+ "./pyramid": {
99
+ "default": "./pyramid.js"
100
+ }
101
+ },
102
+ "thi.ng": {
103
+ "parent": "@thi.ng/pixel",
104
+ "year": 2021
105
+ },
106
+ "gitHead": "136a5e5ef0b69e82329db00d806c3c4e8f1aa063\n"
107
+ }
package/CHANGELOG.md DELETED
@@ -1,31 +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
- ## [1.1.0](https://github.com/thi-ng/umbrella/tree/@thi.ng/pixel-convolve@1.1.0) (2025-05-28)
15
-
16
- #### 🚀 Features
17
-
18
- - add/update kernels ([24051c3](https://github.com/thi-ng/umbrella/commit/24051c3))
19
- - add `EDGE3`, `EDGE5`
20
-
21
- #### 🩹 Bug fixes
22
-
23
- - swap `SOBEL_X`/`SOBEL_Y` to correct axis ([7bef58a](https://github.com/thi-ng/umbrella/commit/7bef58a))
24
-
25
- ## [0.1.0](https://github.com/thi-ng/umbrella/tree/@thi.ng/pixel-convolve@0.1.0) (2024-07-22)
26
-
27
- #### 🚀 Features
28
-
29
- - import as new pkg ([#486](https://github.com/thi-ng/umbrella/issues/486)) ([5c3f4be](https://github.com/thi-ng/umbrella/commit/5c3f4be))
30
- - migrate convolve, normalMap and imagePyramid functions
31
- from [@thi.ng/pixel](https://github.com/thi-ng/umbrella/tree/main/packages/pixel) pkg