-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
80 lines (80 loc) · 1.89 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
{
"name": "google-font-metadata",
"description": "A metadata generator for Google Fonts.",
"version": "5.2.1",
"author": "Ayuhito <hello@ayuhito.com>",
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"exports": {
"types": "./dist/index.d.ts",
"require": "./dist/index.js",
"import": "./dist/index.mjs"
},
"bin": {
"gfm": "./dist/cli.mjs"
},
"license": "MIT",
"keywords": [
"fontsource",
"font",
"font family",
"google fonts",
"metadata",
"fonts api",
"unicode range"
],
"dependencies": {
"@octokit/core": "^5.0.0",
"@types/stylis": "^4.2.0",
"cac": "^6.7.14",
"consola": "^3.2.3",
"deepmerge": "^4.3.1",
"dotenv": "^16.3.1",
"execa": "^8.0.1",
"got": "^12.6.1",
"json-stringify-pretty-compact": "^4.0.0",
"linkedom": "^0.15.3",
"p-queue": "^7.4.1",
"pathe": "^1.1.1",
"picocolors": "^1.0.0",
"puppeteer": "^21.1.1",
"stylis": "^4.3.0",
"zod": "^3.22.2"
},
"devDependencies": {
"@ayuhito/eslint-config": "^0.4.1",
"@types/node": "^20.6.0",
"c8": "^8.0.1",
"eslint": "^8.49.0",
"magic-string": "^0.30.3",
"msw": "^1.3.0",
"pkgroll": "^1.11.0",
"prettier": "^3.0.3",
"tsx": "^3.12.8",
"typescript": "^5.2.2",
"vitest": "^0.34.4"
},
"scripts": {
"build": "pkgroll --target=node14",
"dev": "pkgroll --target=node14 --watch",
"cli": "tsx ./src/cli.ts",
"test": "vitest",
"test:generate-fixtures": "tsx ./tests/utils/generate-css-fixtures",
"coverage": "vitest --coverage",
"format": "prettier --write **/*.{ts,md}",
"lint": "eslint **/*.ts --fix",
"lint:src": "eslint ./src/*.ts --fix",
"prepublish": "npm run format && npm run build"
},
"files": [
"dist/*",
"data/*"
],
"homepage": "https://github.com/fontsource/google-font-metadata",
"repository": {
"type": "git",
"url": "git+https://github.com/fontsource/google-font-metadata"
},
"packageManager": "pnpm@8.3.1"
}