@remotion/google-fonts 3.2.39
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 +24 -0
- package/tsconfig.json +13 -0
package/package.json
ADDED
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@remotion/google-fonts",
|
|
3
|
+
"version": "3.2.39",
|
|
4
|
+
"description": "Load Google Fonts in Remotion",
|
|
5
|
+
"scripts": {
|
|
6
|
+
"build": "node scripts/generate.mjs && tsc -d",
|
|
7
|
+
"watch": "tsc -w",
|
|
8
|
+
"generate": "node scripts/generate.mjs",
|
|
9
|
+
"prepublish": "ts-node src/admin/bundle-lambda.ts && node ensure-generation.js"
|
|
10
|
+
},
|
|
11
|
+
"license": "SEE LICENSE IN LICENSE.md",
|
|
12
|
+
"dependencies": {
|
|
13
|
+
"remotion": "3.2.39"
|
|
14
|
+
},
|
|
15
|
+
"devDependencies": {
|
|
16
|
+
"@types/css-font-loading-module": "^0.0.7",
|
|
17
|
+
"@types/node": "^18.0.3",
|
|
18
|
+
"axios": "^1.1.3",
|
|
19
|
+
"p-queue": "^7.3.0",
|
|
20
|
+
"postcss": "^8.4.18",
|
|
21
|
+
"prettier": "^2.7.1",
|
|
22
|
+
"typescript": "^4.7.0"
|
|
23
|
+
}
|
|
24
|
+
}
|