uti 8.2.1 → 8.2.3
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/LICENSE +1 -1
- package/package.json +14 -13
- package/src/well-known-utis.mjs +2 -2
package/LICENSE
CHANGED
package/package.json
CHANGED
|
@@ -1,8 +1,9 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "uti",
|
|
3
|
-
"version": "8.2.
|
|
3
|
+
"version": "8.2.3",
|
|
4
4
|
"publishConfig": {
|
|
5
|
-
"access": "public"
|
|
5
|
+
"access": "public",
|
|
6
|
+
"provenance": true
|
|
6
7
|
},
|
|
7
8
|
"exports": {
|
|
8
9
|
".": "./src/uti.mjs"
|
|
@@ -22,29 +23,29 @@
|
|
|
22
23
|
"license": "BSD-2-Clause",
|
|
23
24
|
"scripts": {
|
|
24
25
|
"test": "npm run test:browser-ava && npm run test:ava",
|
|
25
|
-
"test:ava": "ava --timeout 4m tests/*-ava.mjs tests/*-ava-node.mjs
|
|
26
|
+
"test:ava": "ava --timeout 4m tests/*-ava.mjs tests/*-ava-node.mjs",
|
|
26
27
|
"test:browser-ava": "browser-ava --headless --no-keep-open tests/*-ava.mjs tests/*-ava-browser.mjs",
|
|
27
28
|
"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
29
|
"docs": "documentation readme --section=API ./src/**/*.mjs",
|
|
29
|
-
"lint": "npm run lint:
|
|
30
|
+
"lint": "npm run lint:docs && npm run lint:tsc",
|
|
30
31
|
"lint:docs": "documentation lint ./src/**/*.mjs",
|
|
31
|
-
"lint:tsc": "tsc --allowJs --checkJs --noEmit -t esnext -m esnext --moduleResolution nodenext ./src
|
|
32
|
+
"lint:tsc": "tsc --allowJs --checkJs --noEmit -t esnext -m esnext --module nodenext --moduleResolution nodenext ./src**/*.mjs"
|
|
32
33
|
},
|
|
33
34
|
"devDependencies": {
|
|
34
|
-
"ava": "^
|
|
35
|
-
"browser-ava": "^1.
|
|
36
|
-
"c8": "^
|
|
37
|
-
"documentation": "^14.0.
|
|
38
|
-
"semantic-release": "^
|
|
39
|
-
"typescript": "^5.
|
|
35
|
+
"ava": "^6.1.1",
|
|
36
|
+
"browser-ava": "^2.1.10",
|
|
37
|
+
"c8": "^9.1.0",
|
|
38
|
+
"documentation": "^14.0.3",
|
|
39
|
+
"semantic-release": "^23.0.0",
|
|
40
|
+
"typescript": "^5.3.3"
|
|
40
41
|
},
|
|
41
42
|
"engines": {
|
|
42
|
-
"node": ">=18.18.
|
|
43
|
+
"node": ">=18.18.2",
|
|
43
44
|
"bun": ">=1.0.0"
|
|
44
45
|
},
|
|
45
46
|
"repository": {
|
|
46
47
|
"type": "git",
|
|
47
|
-
"url": "https://github.com/arlac77/uti"
|
|
48
|
+
"url": "git+https://github.com/arlac77/uti.git"
|
|
48
49
|
},
|
|
49
50
|
"bugs": {
|
|
50
51
|
"url": "https://github.com/arlac77/uti/issues"
|
package/src/well-known-utis.mjs
CHANGED
|
@@ -493,10 +493,10 @@ export default [
|
|
|
493
493
|
conformsTo: ["public.data", "public.composite-content"]
|
|
494
494
|
},
|
|
495
495
|
{
|
|
496
|
-
name: "public.svg",
|
|
496
|
+
name: "public.svg-image",
|
|
497
497
|
conformsTo: ["public.image", "public.xml"],
|
|
498
498
|
mimeType: "image/svg+xml",
|
|
499
|
-
fileNameExtension: ".svg"
|
|
499
|
+
fileNameExtension: [".svg", ".svgz"]
|
|
500
500
|
},
|
|
501
501
|
{
|
|
502
502
|
name: "public.jpeg",
|