webfont 12.2.0 → 12.4.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/README.md +94 -4
- package/dist/cli.mjs +267 -256
- package/dist/index.js +1 -1
- package/dist/index.mjs +142 -132
- package/dist/src/index.d.mts +2 -0
- package/dist/src/index.d.ts +2 -0
- package/dist/src/lib/ttfEncode.d.mts +3 -0
- package/dist/src/lib/ttfEncode.d.ts +3 -0
- package/dist/src/standalone/inputMode.d.mts +1 -1
- package/dist/src/standalone/inputMode.d.ts +1 -1
- package/dist/src/types/TranscodedFont.d.mts +1 -0
- package/dist/src/types/TranscodedFont.d.ts +1 -0
- package/package.json +3 -2
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "webfont",
|
|
3
|
-
"version": "12.
|
|
3
|
+
"version": "12.4.0",
|
|
4
4
|
"description": "Generator of fonts from SVG icons; decompress WOFF/WOFF2 to embedded TTF/OTF (not TTF↔OTF transcoding)",
|
|
5
5
|
"directories": {
|
|
6
6
|
"lib": "dist",
|
|
@@ -58,7 +58,7 @@
|
|
|
58
58
|
"prebuild": "npm run clean && npm run lint",
|
|
59
59
|
"prepare": "lefthook install",
|
|
60
60
|
"predemo": "npm run build",
|
|
61
|
-
"prepublishOnly": "npm run build && npm run test:package",
|
|
61
|
+
"prepublishOnly": "npm whoami && npm run build && npm run test:package",
|
|
62
62
|
"pretest": "npm run build",
|
|
63
63
|
"prettify": "biome check --write .",
|
|
64
64
|
"test": "vitest run src",
|
|
@@ -74,6 +74,7 @@
|
|
|
74
74
|
"dependencies": {
|
|
75
75
|
"cosmiconfig": "9.0.2",
|
|
76
76
|
"deepmerge": "^4.2.2",
|
|
77
|
+
"fonteditor-core": "2.6.3",
|
|
77
78
|
"fontverter": "2.0.0",
|
|
78
79
|
"globby": "16.2.0",
|
|
79
80
|
"meow": "14.1.0",
|