uti 8.0.0 → 8.2.0
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/package.json +6 -6
- package/src/well-known-utis.mjs +18 -0
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "uti",
|
|
3
|
-
"version": "8.
|
|
3
|
+
"version": "8.2.0",
|
|
4
4
|
"publishConfig": {
|
|
5
5
|
"access": "public"
|
|
6
6
|
},
|
|
@@ -22,9 +22,9 @@
|
|
|
22
22
|
"license": "BSD-2-Clause",
|
|
23
23
|
"scripts": {
|
|
24
24
|
"test": "npm run test:browser-ava && npm run test:ava",
|
|
25
|
-
"test:ava": "ava --timeout 2m tests/*-ava.mjs tests/*-ava-node.mjs",
|
|
25
|
+
"test:ava": "ava --timeout 4m tests/*-ava.mjs tests/*-ava-node.mjs && ava --timeout 2m tests/*-ava.mjs tests/*-ava-node.mjs",
|
|
26
26
|
"test:browser-ava": "browser-ava --headless --no-keep-open tests/*-ava.mjs tests/*-ava-browser.mjs",
|
|
27
|
-
"cover": "c8 -x 'tests/**/*' --temp-directory build/tmp ava --timeout
|
|
27
|
+
"cover": "c8 -x 'tests/**/*' --temp-directory build/tmp ava --timeout 4m tests/*-ava.mjs tests/*-ava-node.mjs && c8 report -r lcov -o build/coverage --temp-directory build/tmp",
|
|
28
28
|
"docs": "documentation readme --section=API ./src/**/*.mjs",
|
|
29
29
|
"lint": "npm run lint:tsc && npm run lint:docs",
|
|
30
30
|
"lint:docs": "documentation lint ./src/**/*.mjs",
|
|
@@ -32,14 +32,14 @@
|
|
|
32
32
|
},
|
|
33
33
|
"devDependencies": {
|
|
34
34
|
"ava": "^5.3.1",
|
|
35
|
-
"browser-ava": "^1.3.
|
|
35
|
+
"browser-ava": "^1.3.58",
|
|
36
36
|
"c8": "^8.0.1",
|
|
37
37
|
"documentation": "^14.0.2",
|
|
38
|
-
"semantic-release": "^
|
|
38
|
+
"semantic-release": "^22.0.0",
|
|
39
39
|
"typescript": "^5.2.2"
|
|
40
40
|
},
|
|
41
41
|
"engines": {
|
|
42
|
-
"node": ">=18.
|
|
42
|
+
"node": ">=18.18.0"
|
|
43
43
|
},
|
|
44
44
|
"repository": {
|
|
45
45
|
"type": "git",
|
package/src/well-known-utis.mjs
CHANGED
|
@@ -516,6 +516,24 @@ export default [
|
|
|
516
516
|
mimeType: "image/webp",
|
|
517
517
|
fileNameExtension: ".webp"
|
|
518
518
|
},
|
|
519
|
+
{
|
|
520
|
+
name: "public.heic",
|
|
521
|
+
conformsTo: "public.image",
|
|
522
|
+
mimeType: "image/heic",
|
|
523
|
+
fileNameExtension: ".heic"
|
|
524
|
+
},
|
|
525
|
+
{
|
|
526
|
+
name: "public.avif",
|
|
527
|
+
conformsTo: "public.image",
|
|
528
|
+
mimeType: "image/avif",
|
|
529
|
+
fileNameExtension: ".avif"
|
|
530
|
+
},
|
|
531
|
+
{
|
|
532
|
+
name: "public.jxl",
|
|
533
|
+
conformsTo: "public.image",
|
|
534
|
+
mimeType: "image/jxl",
|
|
535
|
+
fileNameExtension: ".jxl"
|
|
536
|
+
},
|
|
519
537
|
{
|
|
520
538
|
name: "com.adobe.postscript",
|
|
521
539
|
conformsTo: "public.image",
|