-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
85 lines (85 loc) · 2.34 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
{
"bin": {
"google-font-downloader": "bin/google-font-downloader.js"
},
"name": "google-font-downloader",
"description": "Download Google fonts by providing the url",
"keywords": [
"google",
"font",
"downloader",
"download",
"fonts",
"by",
"providing",
"the",
"url"
],
"license": "MIT",
"version": "1.0.6",
"main": "lib/index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
},
"author": "Bloggify <support@bloggify.org> (https://bloggify.org)",
"homepage": "https://github.com/Bloggify/google-font-downloader#readme",
"files": [
"bin/",
"app/",
"lib/",
"dist/",
"src/",
"scripts/",
"resources/",
"menu/",
"cli.js",
"index.js",
"bloggify.js",
"bloggify.json"
],
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/Bloggify/google-font-downloader.git"
},
"bugs": {
"url": "https://github.com/Bloggify/google-font-downloader/issues"
},
"dependencies": {
"match-all": "^1.2.4",
"streamp": "^2.2.8",
"tilda": "^4.4.13",
"tinyreq": "^3.4.0"
},
"blah": {
"h_img": "https://i.imgur.com/arpGZH6.png",
"description": [
{
"h4": "Usage"
},
{
"p": "You can use this tool to download Google Fonts for offline use, just by providing the Google APIs url."
},
{
"p": ":bulb: **Note**: It's not clear yet if Google Fonts are EU GDPR compliant (see [this issue](https://github.com/google/fonts/issues/1495)). This may be a good reason to download the Google Fonts you use on your server."
},
{
"h4": "How it works"
},
{
"p": "You need to provide the url to the Google APIs endpoint (e.g. `https://fonts.googleapis.com/css?family=Open+Sans:400,400i,700,700i`) and you will get the following files/directories in the current working directory:"
},
{
"ul": [
"A file named `google-fonts-<timestamp>.css`—this will contain the CSS snippets that you need to copy in your app. You may need to update the paths to the font files.",
"A directory structure looking like this: `fonts/<font-name>/<version>/<font-file>`"
]
},
{
"img": {
"title": "Example",
"source": "https://i.imgur.com/yGcOPKg.gif"
}
}
]
}
}