uti 8.7.4 → 8.9.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 +4 -4
- package/src/well-known-utis.mjs +11 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "uti",
|
|
3
|
-
"version": "8.
|
|
3
|
+
"version": "8.9.0",
|
|
4
4
|
"publishConfig": {
|
|
5
5
|
"access": "public",
|
|
6
6
|
"provenance": true
|
|
@@ -39,14 +39,14 @@
|
|
|
39
39
|
},
|
|
40
40
|
"devDependencies": {
|
|
41
41
|
"ava": "^6.3.0",
|
|
42
|
-
"browser-ava": "^2.3.
|
|
42
|
+
"browser-ava": "^2.3.31",
|
|
43
43
|
"c8": "^10.1.3",
|
|
44
44
|
"documentation": "^14.0.3",
|
|
45
|
-
"semantic-release": "^24.2.
|
|
45
|
+
"semantic-release": "^24.2.4",
|
|
46
46
|
"typescript": "^5.8.3"
|
|
47
47
|
},
|
|
48
48
|
"engines": {
|
|
49
|
-
"node": ">=22.15.
|
|
49
|
+
"node": ">=22.15.1",
|
|
50
50
|
"bun": ">=1.2.12"
|
|
51
51
|
},
|
|
52
52
|
"repository": {
|
package/src/well-known-utis.mjs
CHANGED
|
@@ -58,6 +58,11 @@ export default [
|
|
|
58
58
|
name: "public.unix-executable",
|
|
59
59
|
conformsTo: ["public.executable", "public.data"]
|
|
60
60
|
},
|
|
61
|
+
{
|
|
62
|
+
name: "public.node-dynamic-link-library",
|
|
63
|
+
conformsTo: ["public.executable", "public.data"],
|
|
64
|
+
fileNameExtension: ".node"
|
|
65
|
+
},
|
|
61
66
|
{
|
|
62
67
|
name: "com.sun.java-class",
|
|
63
68
|
conformsTo: ["public.executable", "public.data"],
|
|
@@ -439,6 +444,11 @@ export default [
|
|
|
439
444
|
mimeType: "application/wasm",
|
|
440
445
|
fileNameExtension: ".wasm"
|
|
441
446
|
},
|
|
447
|
+
{
|
|
448
|
+
name: "public.wasm-text",
|
|
449
|
+
conformsTo: ["public.text"],
|
|
450
|
+
fileNameExtension: ".wat"
|
|
451
|
+
},
|
|
442
452
|
{
|
|
443
453
|
name: "com.apple.application-bundle",
|
|
444
454
|
conformsTo: "com.apple.application",
|
|
@@ -565,7 +575,7 @@ export default [
|
|
|
565
575
|
},
|
|
566
576
|
{
|
|
567
577
|
name: "public.mdx",
|
|
568
|
-
conformsTo: ["net.daringfireball.markdown","public.jsx"],
|
|
578
|
+
conformsTo: ["net.daringfireball.markdown", "public.jsx"],
|
|
569
579
|
fileNameExtension: [".mdx"],
|
|
570
580
|
mimeType: "text/mdx"
|
|
571
581
|
},
|