@michelabboud/visual-forge-fonts-code 1.0.0 → 1.0.1
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/fonts/IBMPlexMono-Bold.ttf +0 -0
- package/fonts/IBMPlexMono-BoldItalic.ttf +0 -0
- package/fonts/IBMPlexMono-Italic.ttf +0 -0
- package/fonts/IBMPlexMono-Medium.ttf +0 -0
- package/fonts/IBMPlexMono-MediumItalic.ttf +0 -0
- package/fonts/IBMPlexMono-Regular.ttf +0 -0
- package/fonts/IBMPlexMono-SemiBold.ttf +0 -0
- package/fonts/IBMPlexMono-SemiBoldItalic.ttf +0 -0
- package/fonts/VictorMono-Bold.ttf +0 -0
- package/fonts/VictorMono-BoldItalic.ttf +0 -0
- package/fonts/VictorMono-BoldOblique.ttf +0 -0
- package/fonts/VictorMono-ExtraLight.ttf +0 -0
- package/fonts/VictorMono-ExtraLightItalic.ttf +0 -0
- package/fonts/VictorMono-ExtraLightOblique.ttf +0 -0
- package/fonts/VictorMono-Italic.ttf +0 -0
- package/fonts/VictorMono-Light.ttf +0 -0
- package/fonts/VictorMono-LightItalic.ttf +0 -0
- package/fonts/VictorMono-LightOblique.ttf +0 -0
- package/fonts/VictorMono-Medium.ttf +0 -0
- package/fonts/VictorMono-MediumItalic.ttf +0 -0
- package/fonts/VictorMono-MediumOblique.ttf +0 -0
- package/fonts/VictorMono-Oblique.ttf +0 -0
- package/fonts/VictorMono-Regular.ttf +0 -0
- package/fonts/VictorMono-SemiBold.ttf +0 -0
- package/fonts/VictorMono-SemiBoldItalic.ttf +0 -0
- package/fonts/VictorMono-SemiBoldOblique.ttf +0 -0
- package/fonts/VictorMono-Thin.ttf +0 -0
- package/fonts/VictorMono-ThinItalic.ttf +0 -0
- package/fonts/VictorMono-ThinOblique.ttf +0 -0
- package/licenses/IBMPlexMono/LICENSE +1 -1
- package/package.json +22 -5
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
@@ -1 +1 @@
|
|
|
1
|
-
|
|
1
|
+
SIL Open Font License 1.1
|
package/package.json
CHANGED
|
@@ -1,8 +1,15 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@michelabboud/visual-forge-fonts-code",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.1",
|
|
4
4
|
"description": "Monospace/coding fonts for Visual Forge MCP - 12 programming fonts (standalone)",
|
|
5
|
-
"keywords": [
|
|
5
|
+
"keywords": [
|
|
6
|
+
"fonts",
|
|
7
|
+
"monospace",
|
|
8
|
+
"coding",
|
|
9
|
+
"programming",
|
|
10
|
+
"typst",
|
|
11
|
+
"visual-forge"
|
|
12
|
+
],
|
|
6
13
|
"author": "Michel Abboud",
|
|
7
14
|
"license": "SEE LICENSE IN LICENSE",
|
|
8
15
|
"repository": {
|
|
@@ -12,7 +19,17 @@
|
|
|
12
19
|
},
|
|
13
20
|
"main": "index.js",
|
|
14
21
|
"types": "index.d.ts",
|
|
15
|
-
"files": [
|
|
16
|
-
|
|
17
|
-
|
|
22
|
+
"files": [
|
|
23
|
+
"fonts",
|
|
24
|
+
"licenses",
|
|
25
|
+
"index.js",
|
|
26
|
+
"index.d.ts",
|
|
27
|
+
"DISCLAIMER.md"
|
|
28
|
+
],
|
|
29
|
+
"scripts": {
|
|
30
|
+
"postinstall": "node postinstall.js || true"
|
|
31
|
+
},
|
|
32
|
+
"engines": {
|
|
33
|
+
"node": ">=24.0.0"
|
|
34
|
+
}
|
|
18
35
|
}
|