-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
117 lines (117 loc) · 2.44 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
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
{
"name": "@mishusoft/google-font-lists",
"version": "1.1.0",
"description": "Generate a list from google fonts according to your configuration.",
"exports": {
".": {
"require": "./dist/index.cjs.js"
}
},
"main": "dist/index.cjs.js",
"types": "dist/index.d.ts",
"files": [
"dist",
"data"
],
"keywords": [
"npm",
"package",
"mishusoft",
"google-font-lists"
],
"repository": {
"type": "git",
"url": "https://github.com/mralaminahamed/google-font-lists.git"
},
"author": {
"name": "Mishusoft",
"email": "[email protected]"
},
"contributors": [
{
"name": "Al Amin Ahamed",
"email": "[email protected]"
}
],
"license": "MIT",
"scripts": {
"build": "vite build",
"lint": "eslint . --ext .ts",
"lint-and-fix": "eslint . --ext .ts --fix",
"test": "node tests/list.js"
},
"devDependencies": {
"@rollup/plugin-typescript": "^8.2.1",
"@types/node": "^18.15.11",
"@typescript-eslint/eslint-plugin": "^5.57.0",
"@typescript-eslint/parser": "^5.57.0",
"eslint": "^8.37.0",
"rollup-plugin-typescript-paths": "^1.3.0",
"tslib": "^2.4.0",
"typescript": "^4.7.2",
"vite": "^2.9.9"
},
"volta": {
"node": "19.8.1",
"npm": "9.6.3",
"yarn": "4.0.0-rc.42"
},
"config": {
"google-font-lists": {
"defaults": {
"label": "Default",
"value": "Default",
"variant": [
"Default",
"100",
"100 Italic",
"200",
"200 Italic",
"300",
"300 Italic",
"400",
"400 Italic",
"500",
"500 Italic",
"600",
"600 Italic",
"700",
"700 Italic",
"800",
"800 Italic",
"900",
"900 Italic"
]
},
"format": [
{
"label": "label",
"data": "family"
},
{
"label": "category",
"data": "category"
},
{
"label": "value",
"data": "family"
},
{
"label": "variant",
"data": "variants"
}
],
"include": {
"display_font": "yes",
"handwritting_font": "yes",
"monospace_font": "yes",
"variant": "all"
},
"transform": {
"regular": "400",
"italic": "Italic",
"regularItalic": "400 Italic"
}
}
}
}