@remotion/fonts 4.0.176 → 4.0.178
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 +18 -0
- package/package.json +7 -13
package/README.md
ADDED
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
# @remotion/fonts
|
|
2
|
+
|
|
3
|
+
Helpers for loading local fonts into Remotion
|
|
4
|
+
|
|
5
|
+
[](https://npmcharts.com/compare/@remotion/fonts?minimal=true)
|
|
6
|
+
|
|
7
|
+
## Installation
|
|
8
|
+
|
|
9
|
+
```bash
|
|
10
|
+
npm install @remotion/fonts --save-exact
|
|
11
|
+
```
|
|
12
|
+
|
|
13
|
+
When installing a Remotion package, make sure to align the version of all `remotion` and `@remotion/*` packages to the same version.
|
|
14
|
+
Remove the `^` character from the version number to use the exact version.
|
|
15
|
+
|
|
16
|
+
## Usage
|
|
17
|
+
|
|
18
|
+
See the [documentation](https://www.remotion.dev/docs/fonts-api) for more information.
|
package/package.json
CHANGED
|
@@ -1,7 +1,10 @@
|
|
|
1
1
|
{
|
|
2
|
+
"repository": {
|
|
3
|
+
"url": "https://github.com/remotion-dev/remotion/tree/main/packages/fonts"
|
|
4
|
+
},
|
|
2
5
|
"name": "@remotion/fonts",
|
|
3
|
-
"version": "4.0.
|
|
4
|
-
"description": "
|
|
6
|
+
"version": "4.0.178",
|
|
7
|
+
"description": "Helpers for loading local fonts into Remotion",
|
|
5
8
|
"main": "dist/cjs/index.js",
|
|
6
9
|
"types": "dist/cjs/index.d.ts",
|
|
7
10
|
"module": "dist/esm/index.mjs",
|
|
@@ -12,25 +15,16 @@
|
|
|
12
15
|
],
|
|
13
16
|
"author": "Lucas Benya <bitup.games@gmail.com>",
|
|
14
17
|
"license": "MIT",
|
|
15
|
-
"repository": {
|
|
16
|
-
"url": "https://github.com/remotion-dev/remotion"
|
|
17
|
-
},
|
|
18
18
|
"bugs": {
|
|
19
19
|
"url": "https://github.com/remotion-dev/remotion/issues"
|
|
20
20
|
},
|
|
21
21
|
"dependencies": {
|
|
22
|
-
"remotion": "4.0.
|
|
23
|
-
},
|
|
24
|
-
"devDependencies": {
|
|
25
|
-
"@jonny/eslint-config": "3.0.281",
|
|
26
|
-
"@types/node": "18.14.6",
|
|
27
|
-
"eslint": "8.56.0",
|
|
28
|
-
"prettier": "3.2.5",
|
|
29
|
-
"prettier-plugin-organize-imports": "3.2.4"
|
|
22
|
+
"remotion": "4.0.178"
|
|
30
23
|
},
|
|
31
24
|
"publishConfig": {
|
|
32
25
|
"access": "public"
|
|
33
26
|
},
|
|
27
|
+
"homepage": "https://www.remotion.dev/docs/fonts-api",
|
|
34
28
|
"scripts": {
|
|
35
29
|
"formatting": "prettier src --check",
|
|
36
30
|
"lint": "eslint src --ext ts,tsx",
|