-
Notifications
You must be signed in to change notification settings - Fork 32
/
package.json
49 lines (49 loc) · 1.14 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
{
"name": "postcss-font-magician",
"version": "4.0.0",
"description": "PostCSS plugin that magically generates all the @font-face rules",
"author": "Jonathan Neal <jonathantneal@hotmail.com>",
"contributors": [
"Jonathan Neal <jonathantneal@hotmail.com>",
"Ruslan Abdullaev <skarlatin@mail.ru>"
],
"license": "CC0-1.0",
"repository": {
"type": "git",
"url": "git+https://github.com/csstools/postcss-font-magician.git"
},
"homepage": "https://github.com/csstools/postcss-font-magician#readme",
"bugs": "https://github.com/csstools/postcss-font-magician/issues",
"main": "index.js",
"scripts": {
"test": "node --test ./test/_tape.cjs",
"test:rewrite-expects": "REWRITE_EXPECTS=true node --test ./test/_tape.cjs"
},
"engines": {
"node": ">=18"
},
"dependencies": {
"directory-fonts-complete": "^1.2.0",
"google-fonts-complete": "^2.1.1"
},
"devDependencies": {
"@csstools/postcss-tape": "^4.1.2"
},
"peerDependencies": {
"postcss": "^8.0.0"
},
"keywords": [
"postcss",
"css",
"postcss-plugin",
"fonts",
"faces",
"generate",
"generation",
"weights",
"styles",
"variants",
"typography",
"type"
]
}