@twin.org/image 0.0.1-next.3 → 0.0.1-next.30

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/docs/changelog.md CHANGED
@@ -1,5 +1,5 @@
1
1
  # @twin.org/image - Changelog
2
2
 
3
- ## 0.0.1-next.3
3
+ ## 0.0.1-next.30
4
4
 
5
5
  - Initial Release
@@ -12,19 +12,27 @@ Create a new instance of color.
12
12
 
13
13
  #### Parameters
14
14
 
15
- **alpha**: `number`
15
+ ##### alpha
16
+
17
+ `number`
16
18
 
17
19
  The alpha element of the color.
18
20
 
19
- **red**: `number`
21
+ ##### red
22
+
23
+ `number`
20
24
 
21
25
  The red element of the color.
22
26
 
23
- **green**: `number`
27
+ ##### green
28
+
29
+ `number`
24
30
 
25
31
  The green element of the color.
26
32
 
27
- **blue**: `number`
33
+ ##### blue
34
+
35
+ `number`
28
36
 
29
37
  The blue element of the color.
30
38
 
@@ -42,7 +50,9 @@ Construct a color from a hex string.
42
50
 
43
51
  #### Parameters
44
52
 
45
- **hex**: `string`
53
+ ##### hex
54
+
55
+ `string`
46
56
 
47
57
  The hex string to parse.
48
58
 
@@ -66,7 +76,9 @@ Coerce an unknown type to a color.
66
76
 
67
77
  #### Parameters
68
78
 
69
- **value**: `unknown`
79
+ ##### value
80
+
81
+ `unknown`
70
82
 
71
83
  The value to try and convert.
72
84
 
@@ -25,19 +25,27 @@ Encode the image with the given quality.
25
25
 
26
26
  #### Parameters
27
27
 
28
- **width**: `number`
28
+ ##### width
29
+
30
+ `number`
29
31
 
30
32
  The width of the image to encode.
31
33
 
32
- **height**: `number`
34
+ ##### height
35
+
36
+ `number`
33
37
 
34
38
  The height of the image to encode.
35
39
 
36
- **imageData**: `Uint8Array`
40
+ ##### imageData
41
+
42
+ `Uint8Array`
37
43
 
38
44
  The data for the image.
39
45
 
40
- **quality**: `number`
46
+ ##### quality
47
+
48
+ `number`
41
49
 
42
50
  The quality to encode the image at.
43
51
 
@@ -23,15 +23,21 @@ Encode the image frames to png.
23
23
 
24
24
  #### Parameters
25
25
 
26
- **buffers**: `ArrayBuffer`[]
26
+ ##### buffers
27
+
28
+ `ArrayBuffer`[]
27
29
 
28
30
  The frame buffers to encode.
29
31
 
30
- **w**: `number`
32
+ ##### w
33
+
34
+ `number`
31
35
 
32
36
  The image width.
33
37
 
34
- **h**: `number`
38
+ ##### h
39
+
40
+ `number`
35
41
 
36
42
  The image height.
37
43
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@twin.org/image",
3
- "version": "0.0.1-next.3",
3
+ "version": "0.0.1-next.30",
4
4
  "description": "Classes for image manipulation",
5
5
  "repository": {
6
6
  "type": "git",
@@ -13,44 +13,18 @@
13
13
  "engines": {
14
14
  "node": ">=20.0.0"
15
15
  },
16
- "scripts": {
17
- "clean": "rimraf dist coverage",
18
- "build": "tspc",
19
- "test": "vitest --run --config ./vitest.config.ts --no-cache",
20
- "coverage": "vitest --run --coverage --config ./vitest.config.ts --no-cache",
21
- "bundle:esm": "rollup --config rollup.config.mjs --environment MODULE:esm",
22
- "bundle:cjs": "rollup --config rollup.config.mjs --environment MODULE:cjs",
23
- "bundle": "npm run bundle:esm && npm run bundle:cjs",
24
- "docs:clean": "rimraf docs/reference",
25
- "docs:generate": "typedoc",
26
- "docs": "npm run docs:clean && npm run docs:generate",
27
- "dist": "npm run clean && npm run build && npm run test && npm run bundle && npm run docs"
28
- },
29
16
  "dependencies": {
30
- "@twin.org/core": "0.0.1-next.3",
17
+ "@twin.org/core": "0.0.1-next.30",
31
18
  "@twin.org/nameof": "next"
32
19
  },
33
- "devDependencies": {
34
- "@twin.org/nameof-transformer": "next",
35
- "@vitest/coverage-v8": "2.1.1",
36
- "copyfiles": "2.4.1",
37
- "rimraf": "6.0.1",
38
- "rollup": "4.21.3",
39
- "rollup-plugin-typescript2": "0.36.0",
40
- "ts-patch": "3.2.1",
41
- "typedoc": "0.26.7",
42
- "typedoc-plugin-markdown": "4.2.7",
43
- "typescript": "5.6.2",
44
- "vitest": "2.1.1"
45
- },
46
20
  "main": "./dist/cjs/index.cjs",
47
21
  "module": "./dist/esm/index.mjs",
48
22
  "types": "./dist/types/index.d.ts",
49
23
  "exports": {
50
24
  ".": {
25
+ "types": "./dist/types/index.d.ts",
51
26
  "require": "./dist/cjs/index.cjs",
52
- "import": "./dist/esm/index.mjs",
53
- "types": "./dist/types/index.d.ts"
27
+ "import": "./dist/esm/index.mjs"
54
28
  }
55
29
  },
56
30
  "files": [