uti 7.4.0 → 7.5.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 +3 -3
- package/src/well-known-utis.mjs +15 -9
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "uti",
|
|
3
|
-
"version": "7.
|
|
3
|
+
"version": "7.5.0",
|
|
4
4
|
"publishConfig": {
|
|
5
5
|
"access": "public"
|
|
6
6
|
},
|
|
@@ -32,8 +32,8 @@
|
|
|
32
32
|
},
|
|
33
33
|
"devDependencies": {
|
|
34
34
|
"ava": "^5.3.1",
|
|
35
|
-
"browser-ava": "^1.3.
|
|
36
|
-
"c8": "^8.0.
|
|
35
|
+
"browser-ava": "^1.3.55",
|
|
36
|
+
"c8": "^8.0.1",
|
|
37
37
|
"documentation": "^14.0.2",
|
|
38
38
|
"semantic-release": "^21.0.7",
|
|
39
39
|
"typescript": "^5.1.6"
|
package/src/well-known-utis.mjs
CHANGED
|
@@ -92,12 +92,12 @@ export default [
|
|
|
92
92
|
},
|
|
93
93
|
{
|
|
94
94
|
name: "com.sun.java-web-archive",
|
|
95
|
-
conformsTo: ["
|
|
95
|
+
conformsTo: ["com.sun.java-archive"],
|
|
96
96
|
fileNameExtension: ".war"
|
|
97
97
|
},
|
|
98
98
|
{
|
|
99
99
|
name: "com.sun.java-enterprise-archive",
|
|
100
|
-
conformsTo: ["
|
|
100
|
+
conformsTo: ["com.sun.java-archive"],
|
|
101
101
|
fileNameExtension: ".ear"
|
|
102
102
|
},
|
|
103
103
|
{
|
|
@@ -214,12 +214,12 @@ export default [
|
|
|
214
214
|
{
|
|
215
215
|
name: "public.bash-script",
|
|
216
216
|
conformsTo: "public.shell-script",
|
|
217
|
-
fileNameExtension:
|
|
217
|
+
fileNameExtension: ".bash"
|
|
218
218
|
},
|
|
219
219
|
{
|
|
220
220
|
name: "public.ksh-script",
|
|
221
221
|
conformsTo: "public.shell-script",
|
|
222
|
-
fileNameExtension:
|
|
222
|
+
fileNameExtension: ".ksh",
|
|
223
223
|
mimeType: ["text/x-script.ksh", "application/x-ksh"]
|
|
224
224
|
},
|
|
225
225
|
{
|
|
@@ -444,12 +444,18 @@ export default [
|
|
|
444
444
|
name: "public.jpeg2000",
|
|
445
445
|
conformsTo: "public.image",
|
|
446
446
|
mimeType: ["image/jp2", "image/jpx", "image/jpm"],
|
|
447
|
-
fileNameExtension:
|
|
447
|
+
fileNameExtension: ".jk2"
|
|
448
|
+
},
|
|
449
|
+
{
|
|
450
|
+
name: "public.webp",
|
|
451
|
+
conformsTo: "public.image",
|
|
452
|
+
mimeType: "image/webp",
|
|
453
|
+
fileNameExtension: ".webp"
|
|
448
454
|
},
|
|
449
455
|
{
|
|
450
456
|
name: "com.adobe.postscript",
|
|
451
457
|
conformsTo: "public.image",
|
|
452
|
-
fileNameExtension:
|
|
458
|
+
fileNameExtension: ".ps",
|
|
453
459
|
mimeType: "application/postscript"
|
|
454
460
|
},
|
|
455
461
|
{
|
|
@@ -468,19 +474,19 @@ export default [
|
|
|
468
474
|
{
|
|
469
475
|
name: "public.oci.image.layer.v1.tar",
|
|
470
476
|
conformsTo: ["public.oci.image.layer.v1"],
|
|
471
|
-
filNameExtension:
|
|
477
|
+
filNameExtension: ".tar",
|
|
472
478
|
mimeType: "application/vnd.oci.image.layer.v1.tar"
|
|
473
479
|
},
|
|
474
480
|
{
|
|
475
481
|
name: "public.oci.image.layer.v1.tar.gzip",
|
|
476
482
|
conformsTo: ["public.oci.image.layer.v1"],
|
|
477
|
-
filNameExtension:
|
|
483
|
+
filNameExtension: ".tar.gz",
|
|
478
484
|
mimeType: "application/vnd.oci.image.layer.v1.tar+gzip"
|
|
479
485
|
},
|
|
480
486
|
{
|
|
481
487
|
name: "public.oci.image.layer.v1.tar.zstd",
|
|
482
488
|
conformsTo: ["public.oci.image.layer.v1"],
|
|
483
|
-
filNameExtension:
|
|
489
|
+
filNameExtension: ".tar.zstd",
|
|
484
490
|
mimeType: "application/vnd.oci.image.layer.v1.tar+zstd"
|
|
485
491
|
},
|
|
486
492
|
{
|